Closed DarkRewar closed 6 months ago
SuffixAttribute
This attribute can place a text as suffix in the input field in inspector.
using BaseTool; using UnityEngine; public class MyClass : MonoBehaviour { [Suffix("m/s")] public float Velocity = 10f; }
PrefixAttribute
This attribute can place a text as prefix before the input field in inspector.
using BaseTool; using UnityEngine; public class MyClass : MonoBehaviour { [Prefix("m/s")] public float Velocity = 10f; }
SuffixAttribute
This attribute can place a text as suffix in the input field in inspector.
PrefixAttribute
This attribute can place a text as prefix before the input field in inspector.