TweenGetter<T, U>
Delegate in Zigurous.Tweening
Declaration
public delegate U TweenGetter<T, U>(T target);
Description
A function delegate that gets the current value of a parameter from an object.
Type Parameters
T | The type of object to get the parameter from. |
U | The type of the parameter. |
Parameters
target | The object to get the value from. |
Returns
T | The current value of the parameter. |