mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
Add default constructor for PropertySpace attribute
This commit is contained in:
parent
a45fde19d4
commit
fb59bf9a77
@ -11,6 +11,11 @@ namespace TriInspector
|
||||
public float SpaceBefore { get; set; }
|
||||
public float SpaceAfter { get; set; }
|
||||
|
||||
public PropertySpaceAttribute()
|
||||
{
|
||||
SpaceBefore = 7;
|
||||
}
|
||||
|
||||
public PropertySpaceAttribute(float spaceBefore = 0, float spaceAfter = 0)
|
||||
{
|
||||
SpaceBefore = spaceBefore;
|
||||
|
Loading…
Reference in New Issue
Block a user