Pixel-Composer/objects/o_dialog_animation/Draw_64.gml

35 lines
1.5 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
if !ready exit;
#region base UI
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
2022-11-03 11:44:49 +01:00
if(sFOCUS)
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h, COLORS._main_accent, 1);
2022-01-13 05:24:03 +01:00
2023-06-10 13:59:45 +02:00
draw_set_text(f_p0, fa_left, fa_top, COLORS._main_text);
2023-06-05 18:27:53 +02:00
draw_text(dialog_x + ui(24), dialog_y + ui(16), __txt("Animation"));
2022-01-13 05:24:03 +01:00
#endregion
#region draw
2022-11-03 11:44:49 +01:00
var yy = dialog_y + ui(44);
2022-01-13 05:24:03 +01:00
2023-06-21 20:36:53 +02:00
tb_length.setFocusHover(sFOCUS, sHOVER);
2023-01-25 06:49:00 +01:00
tb_length.register();
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2023-06-05 18:27:53 +02:00
draw_text(dialog_x + ui(32), yy + ui(17), __txtx("anim_length", "Animation length"));
2023-07-06 19:49:16 +02:00
tb_length.draw(dialog_x + dialog_w - ui(120), yy, ui(96), TEXTBOX_HEIGHT, PROJECT.animator.frames_total, mouse_ui);
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
yy += ui(44);
2023-06-21 20:36:53 +02:00
tb_framerate.setFocusHover(sFOCUS, sHOVER);
2023-01-25 06:49:00 +01:00
tb_framerate.register();
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2023-06-05 18:27:53 +02:00
draw_text(dialog_x + ui(32), yy + ui(17), __txtx("anim_frame_rate", "Preview frame rate"));
2023-07-06 19:49:16 +02:00
tb_framerate.draw(dialog_x + dialog_w - ui(120), yy, ui(96), TEXTBOX_HEIGHT, PROJECT.animator.framerate, mouse_ui);
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
yy += ui(44);
2023-06-21 20:36:53 +02:00
eb_playback.setFocusHover(sFOCUS, sHOVER);
2023-01-25 06:49:00 +01:00
eb_playback.register();
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2023-06-05 18:27:53 +02:00
draw_text(dialog_x + ui(32), yy + ui(17), __txtx("anim_on_end", "On end"));
2023-07-06 19:49:16 +02:00
eb_playback.draw(dialog_x + dialog_w - ui(152), yy, ui(128), TEXTBOX_HEIGHT, PROJECT.animator.playback, mouse_ui);
2022-01-13 05:24:03 +01:00
#endregion