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

TThe type of object to set the parameter on.
UThe type of the parameter.

Parameters

targetThe object to set the value on.
valueThe new value of the parameter.