Pixel-Composer/objects/o_dialog_anim_time_scaler/Create_0.gml
2022-09-21 11:09:40 +07:00

16 lines
301 B
Plaintext

/// @description init
event_inherited();
#region data
dialog_w = 368;
dialog_h = 120;
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