IAnimatable

public interface
loom2d.animation.IAnimatable

Description

The IAnimatable interface describes objects that are animated depending on the passed time. Any object that implements this interface can be added to a juggler.

When an object should no longer be animated, it has to be removed from the juggler. To do this, you can manually remove it via the method juggler.remove(object), or the object can request to be removed by dispatching a Starling event with the type Event.REMOVE_FROM_JUGGLER. The "Tween" class is an example of a class that dispatches such an event; you don't have to remove tweens manually from the juggler.

See also:
loom2d.animation.Juggler
loom2d.animation.Tween

API overview

Constructor

IAnimatable ()

Functions

Public functions

advanceTime ( time: Number ): Void

Advance the time by a number of seconds

Constructor

IAnimatable ()

Functions

advanceTime ( time: Number ): Void

Advance the time by a number of seconds.

Parameters

time: Number in seconds.


: