Animation:I recently started to work on more heavy SB stuff and I added an animation which code is:
Code:Animation,"layer","origin","filepath",x,y,frameCount,frameDelay,looptype
_event,easing,starttime,endtime,[params]
_event, [...]
_event, [...]
For animations, specify a filename like "sliderball.png", and name your files "sliderball0.png" to "sliderball9.png" for a 10 frame animation.
frameCount: number of frames in the animation
frameDelay: delay in milliseconds between each frame.
looptype: LoopForever by default
LoopForever - Loops over and over again
LoopOnce - Loops once and stops on last frame.
Animation,Foreground,Centre,"sb\lightning.png",320,240,5,$lengthOne,LoopForever
L,79098,32
F,0,0,$lengthOne,1,0.2
$lengthOne is the time of one beat.
While Fade works correctly, the animation is way too fast, like 4 times faster than it must be...
Did I misunderstood something?