Property Space
[PropertySpace]
attribute add space after property.
Support Types
Any types.
Parameters
Name | Description |
---|---|
Space |
Space after field. |
Examples
[PropertySpace(10)]
public float floatValue;
[PropertySpace(5)]
public int intValue;
Note
Make sure that you have added ApexInspector namespace in your script, to get access to all attributes.
using ApexInspector;
Demo
using ApexInspector;
using UnityEngine;
public class ExampleComponent : MonoBehaviour
{
[PropertySpace(10)]
public float floatValue;
public int intValue;
}
Static demo