Enum of delegates used by HOTween. More...
Public Member Functions | |
delegate void | TweenCallbackWParms (TweenEvent p_callbackData) |
Delegate used to store OnEvent (OnStart, OnComplete, etc) functions that will accept a TweenEvent parameter. | |
delegate void | TweenCallback () |
Delegate used to store OnEvent (OnStart, OnComplete, etc) functions without parameters. | |
delegate float | EaseFunc (float elapsed, float startValue, float changeValue, float duration, float overshootOrAmplitude, float period) |
Delegate used internally for ease functions. | |
delegate T | HOFunc< out T > () |
Used in place of System.Func , which is not available in mscorlib. | |
delegate void | HOAction< in T > (T p_newValue) |
Used in place of System.Action . |
Enum of delegates used by HOTween.
delegate float EaseFunc | ( | float | elapsed, |
float | startValue, | ||
float | changeValue, | ||
float | duration, | ||
float | overshootOrAmplitude, | ||
float | period | ||
) |
Delegate used internally for ease functions.
delegate void HOAction< in T > | ( | T | p_newValue | ) |
Used in place of System.Action
.
delegate T HOFunc< out T > | ( | ) |
Used in place of System.Func
, which is not available in mscorlib.
delegate void TweenCallback | ( | ) |
Delegate used to store OnEvent (OnStart, OnComplete, etc) functions without parameters.
delegate void TweenCallbackWParms | ( | TweenEvent | p_callbackData | ) |
Delegate used to store OnEvent (OnStart, OnComplete, etc) functions that will accept a TweenEvent parameter.