mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-03 16:55:14 +01:00
49 lines
No EOL
1.6 KiB
Text
49 lines
No EOL
1.6 KiB
Text
/// @description init
|
|
if !ready exit;
|
|
|
|
#region base UI
|
|
draw_sprite_stretched(s_dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
|
|
if(FOCUS == self)
|
|
draw_sprite_stretched(s_dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h);
|
|
|
|
draw_set_text(f_p0, fa_left, fa_center, c_ui_blue_ltgrey);
|
|
draw_text(dialog_x + 24, dialog_y + 24, "Animation scaler");
|
|
#endregion
|
|
|
|
#region scaler
|
|
var yy = dialog_y + 44;
|
|
|
|
tb_scale_frame.active = FOCUS == self;
|
|
tb_scale_frame.hover = HOVER == self;
|
|
draw_set_text(f_p1, fa_left, fa_center, c_white);
|
|
draw_text(dialog_x + 32, yy + 17, "Target frame length");
|
|
var tb_x = dialog_x + 200;
|
|
tb_scale_frame.draw(tb_x, yy, 96, 34, scale_to, [mouse_mx, mouse_my]);
|
|
|
|
var sx1 = tb_x + 96;
|
|
draw_set_text(f_p1, fa_right, fa_top, c_ui_blue_grey);
|
|
draw_text(sx1, yy + 34 + 4, "Scaling factor: " + string(scale_to / ANIMATOR.frames_total));
|
|
|
|
var bx = sx1 + 16;
|
|
var by = yy;
|
|
if(buttonInstant(s_button_lime, bx, by, 34, 34, [mouse_mx, mouse_my], FOCUS == self, HOVER == self, "", s_icon_accept_24, 0, c_ui_blue_black) == 2) {
|
|
var fac = scale_to / ANIMATOR.frames_total;
|
|
var key = ds_map_find_first(NODE_MAP);
|
|
repeat(ds_map_size(NODE_MAP)) {
|
|
var n = NODE_MAP[? key];
|
|
key = ds_map_find_next(NODE_MAP, key);
|
|
if(!n || !n.active) continue;
|
|
|
|
for(var i = 0; i < ds_list_size(n.inputs); i++) {
|
|
var in = n.inputs[| i];
|
|
if(!in.animator.is_anim) continue;
|
|
for(var j = 0; j < ds_list_size(in.animator.values); j++) {
|
|
var t = in.animator.values[| j];
|
|
t.time = round(t.time * fac);
|
|
}
|
|
}
|
|
}
|
|
ANIMATOR.frames_total = scale_to;
|
|
instance_destroy();
|
|
}
|
|
#endregion |