Table of Contents

Class Inheritdoc.Issue8101

Namespace
BuildFromProject
Assembly
BuildFromProject.dll
public class Inheritdoc.Issue8101

Inheritance

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

from float

The starting value.

to float

The end value.

duration float

Total 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.

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 int

The starting value.

to int

The end value.

duration float

Total 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.