mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
15 lines
347 B
C#
15 lines
347 B
C#
using TriInspector;
|
|
using UnityEngine;
|
|
|
|
public class Styling_PropertySpaceSample : ScriptableObject
|
|
{
|
|
[Space, PropertyOrder(0)]
|
|
public Vector3 vecField;
|
|
|
|
[ShowInInspector, PropertyOrder(1)]
|
|
[PropertySpace(SpaceBefore = 10, SpaceAfter = 30)]
|
|
public Rect RectProperty { get; set; }
|
|
|
|
[PropertyOrder(2)]
|
|
public bool b;
|
|
} |