Method | Description | |
---|---|---|
BoolVariable ( Bar bar, System.Boolean initialValue = false, String def = null ) : System |
Creates a new boolean variable in a given bar.
|
|
OnChanged ( |
Raises the Changed event.
|
|
ToString ( ) : String |
Method | Description | |
---|---|---|
GetCallback ( |
Called by AntTweakBar when AntTweakBar needs the variable's value.
|
|
InitBoolVariable ( |
Initialization delegate, which creates the boolean variable.
|
|
IsValid ( bool value ) : bool |
Checks if this variable can hold this value.
|
|
SetCallback ( |
Called by AntTweakBar when the user changes the variable's value.
|
|
ValidateAndSet ( bool value ) : void |
Tries to set this variable's value, validating it.
|
public BoolVariable ( Bar bar, System.Boolean initialValue = false, String def = null ) : System | ||
bar | Bar | The bar to create the boolean variable in. |
initialValue | System.Boolean | The initial value of the variable. |
def | String | An optional definition string for the new variable. |
return | System |