 | FloatSmoothenerDoStep Method |
Does one step for the data value.
Namespace:
Slash.Unity.DataBind.Foundation.Providers.Smootheners
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxprotected override float DoStep(
float value,
float step,
bool reverse
)
Protected Overrides Function DoStep (
value As Single,
step As Single,
reverse As Boolean
) As Single
protected:
virtual float DoStep(
float value,
float step,
bool reverse
) override
abstract DoStep :
value : float32 *
step : float32 *
reverse : bool -> float32
override DoStep :
value : float32 *
step : float32 *
reverse : bool -> float32
Parameters
- value
- Type: SystemSingle
Current value. - step
- Type: SystemSingle
Step to take. - reverse
- Type: SystemBoolean
Indicates if the step should be forward or reverse.
Return Value
Type:
SingleNew value.
See Also