mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
21 lines
418 B
C#
21 lines
418 B
C#
using TriInspector;
|
|
using UnityEngine;
|
|
|
|
[DeclareHorizontalGroup("vars")]
|
|
[DeclareHorizontalGroup("buttons")]
|
|
public class Groups_HorizontalGroupSample : ScriptableObject
|
|
{
|
|
[Group("vars")] public int a;
|
|
[Group("vars")] public int b;
|
|
[Group("vars")] public int c;
|
|
|
|
[Button, Group("buttons")]
|
|
public void ButtonA()
|
|
{
|
|
}
|
|
|
|
[Button, Group("buttons")]
|
|
public void ButtonB()
|
|
{
|
|
}
|
|
} |