CommandInputRangeAttribute
public CommandInputRangeAttribute(float min, float max)
Parameters
| Parameter | Description |
|---|---|
| min | Lower limit of input value. |
| max | Upper limit of input value. |
Descriptions
Specifies the input range for int and float properties.
If it is specified for a property of another type, it will be ignored and cannot be specified for a method.
#if NOA_DEBUGGER
using NoaDebugger;
public class DebugCommandSample : DebugCategoryBase
{
[CommandInputRange(-10, 100)]
public int ExampleProperty
{
get;
set;
}
}
#endif
