Pixel-Composer/objects/o_dialog_animation/Create_0.gml
2023-07-06 19:49:16 +02:00

25 lines
548 B
Plaintext

/// @description init
event_inherited();
#region data
anchor = ANCHOR.right | ANCHOR.bottom;
dialog_w = ui(368);
dialog_h = ui(188);
destroy_on_click_out = true;
#endregion
#region data
tb_length = new textBox(TEXTBOX_INPUT.number, function(str) {
PROJECT.animator.frames_total = real(str);
})
tb_framerate = new textBox(TEXTBOX_INPUT.number, function(str) {
PROJECT.animator.framerate = real(str);
})
eb_playback = buttonGroup([__txt("Loop"), __txt("Stop")], function(b) {
PROJECT.animator.playback = b;
});
#endregion