mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
10 lines
176 B
C#
10 lines
176 B
C#
|
using TriInspector;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class Misc_PropertyOrderSample : ScriptableObject
|
|||
|
{
|
|||
|
public float first;
|
|||
|
|
|||
|
[PropertyOrder(0)]
|
|||
|
public float second;
|
|||
|
}
|