TweenSetter<T, U>
Delegate in Zigurous.Tweening
Declaration
public delegate void TweenSetter<T, U>(T target, U value);
Description
A function delegate that sets a new value of a parameter on an object.
Type Parameters
T | The type of object to set the parameter on. |
U | The type of the parameter. |
Parameters
target | The object to set the value on. |
value | The new value of the parameter. |