FloatVariable
Derives from RuntimeVariable<T>.
Description
Represents an observable float value that can be shared and modified throughout the application.
Public Methods
Add(int)- Adds a signedintvalue to the variable.Add(float)- Adds afloatvalue to the variable.Subtract(int)- Subtracts a signedintvalue from the variable.Subtract(float)- Subtracts afloatvalue from the variable.MultiplyBy(int)- Multiplies the variable by a signedintvalue.MultiplyBy(float)- Multiplies the variable by afloatvalue.DivideBy(int)- Divides the variable by a signedintvalue.DivideBy(float)- Divides the variable by afloatvalue.CopyFrom(IntVariable)- Copies the value of anotherIntVariableinto this variable.CopyFrom(FloatVariable)- Copies the value of anotherFloatVariableinto this variable.CopyTo(FloatVariable)- Copies the value from this variable into anotherFloatVariable.CopyTo(DoubleVariable)- Copies the value from this variable into anotherDoubleVariable.SetValue(int)- Sets the value of this variable to a signedintvalue.