Pixel-Composer/scripts/animation_controller/animation_controller.gml
2022-12-12 15:08:03 +07:00

27 lines
557 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;
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
globalvar ANIMATOR;
ANIMATOR = new AnimationManager();
#endregion