tracks

The animation and audio tracks of a mesh molecule.

Summary
tracksThe animation and audio tracks of a mesh molecule.
Preference DialogNone.
CommentsEach Mesh Molecule can have a set of morph, skeletal, path animation and audio tracks.
Functions
play
pause
resume
stop

Preference Dialog

None.

Comments

Each Mesh Molecule can have a set of morph, skeletal, path animation and audio tracks.  You can access these tracks from Mesh Molecule.tracks property.

var tracks = this.mesh.tracks;

You can then access each track by its unique name and invoke their playback functions (see below.)

tracks['fly'].play();
tracks['buzz'].play();

Functions

play

play();

Start this track.

Parameters

N/A

Returns

N/A

pause

pause();

Pause this track.

Parameters

N/A

Returns

N/A

resume

resume();

Resume this track.

Parameters

N/A

Returns

N/A

stop

stop();

Stop this track.

Parameters

N/A

Returns

N/A

object, ( r )
Close