mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
18 lines
327 B
C#
18 lines
327 B
C#
using System;
|
|
using TriInspector;
|
|
using UnityEngine;
|
|
|
|
public class Styling_InlinePropertySample : ScriptableObject
|
|
{
|
|
public MinMax rangeFoldout;
|
|
|
|
[InlineProperty(LabelWidth = 40)]
|
|
public MinMax rangeInline;
|
|
|
|
[Serializable]
|
|
public class MinMax
|
|
{
|
|
public int min;
|
|
public int max;
|
|
}
|
|
} |