mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
16 lines
309 B
Plaintext
16 lines
309 B
Plaintext
/// @description init
|
|
event_inherited();
|
|
|
|
#region data
|
|
dialog_w = ui(368);
|
|
dialog_h = ui(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 |