My favorites | Sign in
Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package org.papervision3d.core.animation
{
public interface IAnimatable
{
/**
* Pauses the animation.
*/
function pause():void;

/**
* Plays the animation.
*
* @param clip Clip to play. Default is "all"
* @param loop Whether the animation should loop. Default is true.
*/
function play(clip:String="all", loop:Boolean=true):void;

/**
* Resumes a paused animation.
*
* @param loop Whether the animation should loop. Defaults is true.
*/
function resume(loop:Boolean=true):void;

/**
* Stops the animation.
*/
function stop():void;

/**
* Whether the animation is playing. This property is read-only.
*/
function get playing() : Boolean;
}
}
Show details Hide details

Change log

r911 by tim.knip on May 26, 2009   Diff
Papervision3D 2.1 - initial commit.
- DAE : morphing, vertex-animation, lots
of fixes
- Animation : total revamp of the
animation system
- MD2 : adapted to match new animation
system
Go to: 
Project members, sign in to write a code review

Older revisions

r708 by neoriley on Aug 25, 2008   Diff
Updating Trunk to 2.0 Beta
All revisions of this file

File info

Size: 759 bytes, 35 lines
Hosted by Google Code