Render a frame of the image.
Clears all memory associated to this animation.
Retreives current value of a control. This value will not update for each frame of an animation. It will only update at the end of each play iteration of an animation.
name of the control to get value from
value of the control. Take into account that each control can have different value limits, depending on the amount of step a control has.
Manipulates a control. Will stop animations that are using this control as well.
name of the control to change
value to set for control. Take into account that each control can have different value limits, depending on the amount of step a control has.
Set the looping state of an animation track.
The default value is based on how the animation is build.
true for looping, false to stop looping.
the name of the animation track to adjust.
Update the panning of the animation.
value of horizontal panning. See AnimationOptions.panX
value of vertical panning. See AnimationOptions.panY
Update the zoom
Start an animation. Conflicting animations will be automatically stopped.
the name of the animation track to start. If the name is not valid, an exception will be thrown indicating what animation names are available.
Stop an animation.
the name of the animation track to start. If the name is not valid, an exception will be thrown indicating what animation names are available.
A player to add Gepetto animations to.
Destroys all animations added to this player.
Clears the canvas. Use this when you created the player with setupWebGL. If you want to control the rendering process (and the clearing of the canvas) yourself, skip the call to this method in your render cycle.
Add a Geppetto animation to the player.
an animation prepared with prepareAnimation.
a HTML Image element with loaded url to use as texture.
The texture unit to use you can use 0
for your first animation,
1
for your second, etc.
Playback speed.
Start animation at given ms.
Function to call for unsubscribing to an event listener
Initializes a player to display in an existing WebGL Environment. Use this function to create a player if you want to have full control over the rendering process (possibly to combine with other render code).
the Canvas DOM element containing a WebGL Context
Convert the JSON based input animation file into a preprocessed list of buffers to place into WebGL
PreparedAnimation
Initializes the WebGL Context of a provided context. Configures the context and returns a GeppettoPlayer bound to this element.
Use this method if you only render Geppetto Animations in your Canvas. Use createPlayer if you want your own control over the canvas configuration
the Canvas DOM element that is not yet initialized with a context
Generated using TypeDoc
Options to control the animation, start animation tracks, etc.