mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
33 lines
619 B
Plaintext
33 lines
619 B
Plaintext
#region anomation class
|
|
function AnimationManager() constructor {
|
|
frames_total = 30;
|
|
current_frame = 0;
|
|
real_frame = 0;
|
|
framerate = 30;
|
|
is_playing = false;
|
|
frame_progress = false;
|
|
|
|
rendering = false;
|
|
playback = ANIMATOR_END.loop;
|
|
|
|
static setFrame = function(frame) {
|
|
var _c = current_frame;
|
|
frame = clamp(frame, 0, frames_total - 1);
|
|
real_frame = frame;
|
|
current_frame = round(frame);
|
|
|
|
if(_c != current_frame)
|
|
frame_progress = true;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region object
|
|
enum ANIMATOR_END {
|
|
loop,
|
|
stop
|
|
}
|
|
|
|
globalvar ANIMATOR;
|
|
ANIMATOR = new AnimationManager();
|
|
#endregion |