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
from
intThe starting value.
to
intThe end value.
duration
floatTotal tween duration in seconds.
onChange
Action<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
from
floatThe starting value.
to
floatThe end value.
duration
floatTotal tween duration in seconds.
onChange
Action<float>A callback that will be invoked every time the tween value changes.
Returns
- object
The newly created tween instance.