Class Inheritdoc.Issue8101
- Namespace
 - BuildFromProject
 
- Assembly
 - BuildFromProject.dll
 
public class Inheritdoc.Issue8101Inheritance
Inherited Members
Methods
Tween(float, float, float, Action<float>)
Create a new tween.
public static object Tween(float from, float to, float duration, Action<float> onChange)Parameters
fromfloat- 
The starting value.
 tofloat- 
The end value.
 durationfloat- 
Total 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.
 
Tween(int, int, float, Action<int>)
Create a new tween.
public static object Tween(int from, int to, float duration, Action<int> onChange)Parameters
fromint- 
The starting value.
 toint- 
The end value.
 durationfloat- 
Total 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.