Class SByteEditor
Default implementation of the inspector used to edit sbyte value type properties.
Namespace: FlaxEditor.CustomEditors.Editors
Assembly: FlaxEngine.CSharp.dll
Syntax
[CustomEditor]
[DefaultEditor]
public sealed class SByteEditor : SignedIntegerValueEditor
Constructors
SByteEditor()
Declaration
public SByteEditor()
Methods
GetLimits(out Int64, out Int64)
Gets the value limits.
Declaration
protected override void GetLimits(out long min, out long max)
Parameters
System.Int64
min
The minimum value. |
System.Int64
max
The maximum value. |
Overrides
GetValue(Object)
Gets the value as long.
Declaration
protected override long GetValue(object value)
Parameters
System.Object
value
The value from object. |
Returns
System.Int64
The value for editor. |
Overrides
SetValue(Int64)
Gets the value from long.
Declaration
protected override object SetValue(long value)
Parameters
System.Int64
value
The value from editor. |
Returns
System.Object
The value to object. |