Pixel-Composer/objects/o_dialog_anim_time_scaler/Create_0.gml

16 lines
309 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
event_inherited();
#region data
2022-11-03 11:44:49 +01:00
dialog_w = ui(368);
dialog_h = ui(120);
2022-01-13 05:24:03 +01:00
destroy_on_click_out = true;
#endregion
#region scaler
scale_to = ANIMATOR.frames_total;
tb_scale_frame = new textBox(TEXTBOX_INPUT.number, function(to) {
to = toNumber(to);
scale_to = to;
});
#endregion