|
| RaTweenLambdaVector4 (Vector4 start, Vector4 end, float duration, SetterHandler setter, IsValidHandler isValidHandler=null) |
|
RaTweenLambdaVector4 | SetExcludeAxis (Axis excludeAxes) |
| Makes it so the given axes are excluded from the tween. So they remain the value they have at the moments of evaluation More...
|
|
RaTweenLambdaVector4 | OnlyIncludeAxis (Axis inclAxes) |
| Makes it so the given axes which are not specified by the input are excluded. So they remain the value they have at the moments of evaluation More...
|
|
delegate void | SetterHandler (ValueT value, float normalizedValue) |
| The Delegate which passes a value and normalized value to determine the setter logics
Note: normalizedValue is a value where 0 == Start and 1 == End. This is passed for extra info.
More...
|
|
delegate bool | IsValidHandler () |
| The Delegate which returns true if the tween is valid, and false if the tween should be terminated (Think of null reference prevention)
|
|
| RaTweenLambdaBase (ValueT start, ValueT end, float duration, SetterHandler setter, IsValidHandler isValidHandler=null) |
|
RaTweenLambdaBase< ValueT > | SetStartValue (ValueT start) |
| This API call Sets the start value of the tween. More...
|
|
RaTweenLambdaBase< ValueT > | SetEndValue (ValueT end) |
| This API call Sets the end value of the tween. More...
|
|
RaTweenLambdaBase< ValueT > | SetEndIsDelta (bool enabled=true) |
| Makes it so the value set within the end value or reference is calculated as delta at runtime So an end value of 5 while the target is at value 20 would result in a final end value of 25. SetDynamicSetupStep(RaTweenDynamicSetupStep) to see when this value is calculated More...
|
|
RaTweenLambdaBase< ValueT > | SetStartDynamic (bool enabled=true) |
| Makes it so the value set within the start value or reference is ignored and rather the value at which the object is at calculation time has is used as start value. SetDynamicSetupStep(RaTweenDynamicSetupStep) to see when this value is calculated More...
|
|
RaTweenLambdaBase< ValueT > | SetDynamicSetupStep (RaTweenDynamicSetupStep step) |
| Determines when the SetStartDynamic(bool) and the SetEndIsDelta(bool) are calculated Read RaTweenDynamicSetupStep for the details on the calculation steps
Note: When set to RaTweenDynamicSetupStep.Start, it recalculates the values on each loop
More...
|
|
|
override RaTweenLambdaBase< Vector4 > | CloneLambdaTween () |
|
override void | LambdaEvaluation (float normalizedValue, Vector4 start, Vector4 end) |
|
override Vector4 | GetEndByDelta (Vector4 start, Vector4 delta) |
|
override void | OnSetup () |
|
override void | OnStart () |
|
override void | SetDefaultValues () |
|
override void | ApplyRewind (bool resumeAfterRewind) |
|
override void | Evaluate (float normalizedValue) |
|
override RaTween | RaTweenClone () |
|
override void | Dispose () |
|
void | WriteValue (ValueT value, float normalizedValue) |
|
abstract RaTweenLambdaBase< ValueT > | CloneLambdaTween () |
|
abstract ValueT | GetEndByDelta (ValueT start, ValueT delta) |
|
abstract void | LambdaEvaluation (float normalizedValue, ValueT start, ValueT end) |
|
A RaTweenLambdaBase<ValueT> tween handles the logics of tweening a Vector4
Note: RaTweenLambda for all methods