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. The minimum value. |
System. The maximum value. |
Overrides
GetValue(Object)
Gets the value as long.
Declaration
protected override long GetValue(object value)
Parameters
System. The value from object. |
Returns
System. The value for editor. |
Overrides
SetValue(Int64)
Gets the value from long.
Declaration
protected override object SetValue(long value)
Parameters
System. The value from editor. |
Returns
System. The value to object. |