Play Animation
I want to play animation after every 2-3 seconds. How to do that? And I want to do reverse animation also.
For Example: Animation Frames
1.png
2.png
3.png
4.png
4.png
3.png
2.png
1.png
2-3 seconds hold and again
1.png
2.png
3.png
4.png
4.png
3.png
2.png
1.png
For Example: Animation Frames
1.png
2.png
3.png
4.png
4.png
3.png
2.png
1.png
2-3 seconds hold and again
1.png
2.png
3.png
4.png
4.png
3.png
2.png
1.png
Comments
Make a boolean attribute called AnimSwitch, set to true
In Rules, put:
When attribute AnimSwitch is true
animation behaviour, with 1 to 4 frames put in as well as 4 to 1
Timer
after ----2 or 3 seconds + your animation time----
Change attribute AnimSwitch to false
When attribute AnimSwitch is false
animation behaviour, same 8 frames
Timer
after ----2 or 3 seconds + your animation time----
Change attribute AnimSwitch to true
Hope that helps you out.
:-)
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
play animation (Loop false !!!)
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
timer every 3 {
timer after 0.01 ( Run to completed TRUE ) { play animation ( Loop FALSE ) }
}
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps