Class Inheritdoc.Issue8101
- Namespace
- BuildFromProject
- Assembly
- BuildFromProject.dll
public class Inheritdoc.Issue8101
- Inheritance
-
Inheritdoc.Issue8101
- Inherited Members
Methods
Tween(int, int, float, Action<int>)
Create a new tween.
public static object Tween(int from, int to, float duration, Action<int> onChange)
Parameters
fromintThe starting value.
tointThe end value.
durationfloatTotal tween duration in seconds.
onChangeAction<int>A callback that will be invoked every time the tween value changes.
Returns
- object
The newly created tween instance.
Tween(float, float, float, Action<float>)
Create a new tween.
public static object Tween(float from, float to, float duration, Action<float> onChange)
Parameters
fromfloatThe starting value.
tofloatThe end value.
durationfloatTotal tween duration in seconds.
onChangeAction<float>A callback that will be invoked every time the tween value changes.
Returns
- object
The newly created tween instance.