Pixel-Composer/objects/o_dialog_animation/Create_0.gml

25 lines
524 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
event_inherited();
#region data
anchor = ANCHOR.right | ANCHOR.bottom;
2022-11-03 11:44:49 +01:00
dialog_w = ui(368);
dialog_h = ui(188);
2022-01-13 05:24:03 +01:00
destroy_on_click_out = true;
#endregion
#region data
tb_length = new textBox(TEXTBOX_INPUT.number, function(str) {
ANIMATOR.frames_total = real(str);
})
tb_framerate = new textBox(TEXTBOX_INPUT.number, function(str) {
ANIMATOR.framerate = real(str);
})
2023-06-05 18:27:53 +02:00
eb_playback = buttonGroup([__txt("Loop"), __txt("Stop")], function(b) {
2022-01-13 05:24:03 +01:00
ANIMATOR.playback = b;
});
#endregion