Table of Contents

Class EchoEvents

Provides events for echo.

public class EchoEvents : AbstractAnimationEvents
Inheritance
EchoEvents
Inherited Members
Extension Methods

Methods

OnCompleted(Action)

Adds an event called when the animation has completed.

public EchoEvents OnCompleted(Action callback)

Parameters

callback Action

The event.

Returns

EchoEvents

OnCompleting(Action)

Adds an event called when the animation is completing.

public EchoEvents OnCompleting(Action callback)

Parameters

callback Action

The event.

Returns

EchoEvents

OnLoopCompleted(Action<int?>)

Adds an event called when the animation loop has completed.

public EchoEvents OnLoopCompleted(Action<int?> callback)

Parameters

callback Action<int?>

The event. The parameter represents the number of loops left. If there are infinite loops it'll send a null param.

Returns

EchoEvents

OnLoopStarted(Action<int?>)

Adds an event called when the animation loop has started.

public EchoEvents OnLoopStarted(Action<int?> callback)

Parameters

callback Action<int?>

The event. The parameter represents the number of loops left. If there are infinite loops it'll send a null param.

Returns

EchoEvents

OnStarted(Action)

Adds an event called when the animation has started.

public EchoEvents OnStarted(Action callback)

Parameters

callback Action

The event.

Returns

EchoEvents

OnStarting(Action)

Adds an event called when the animation is starting.

public EchoEvents OnStarting(Action callback)

Parameters

callback Action

The event.

Returns

EchoEvents

OnUpdated(Action<float>)

Adds an event called when the animation has updated.

public EchoEvents OnUpdated(Action<float> callback)

Parameters

callback Action<float>

The event.

Returns

EchoEvents

OnUpdating(Action<float>)

Adds an event called when the animation is updating.

public EchoEvents OnUpdating(Action<float> callback)

Parameters

callback Action<float>

The event.

Returns

EchoEvents