mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
18 lines
264 B
C#
18 lines
264 B
C#
|
using TriInspector;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class Styling_IndentSample : ScriptableObject
|
|||
|
{
|
|||
|
[Title("Custom Indent")]
|
|||
|
[Indent]
|
|||
|
public int a;
|
|||
|
|
|||
|
[Indent(2)]
|
|||
|
public int b;
|
|||
|
|
|||
|
[Indent(3)]
|
|||
|
public int c;
|
|||
|
|
|||
|
[Indent(4)]
|
|||
|
public int d;
|
|||
|
}
|