Pixel-Composer/objects/o_dialog_keyframe_curve/Draw_64.gml

19 lines
654 B
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
2022-11-18 03:20:31 +01:00
draw_set_text(f_p0, fa_left, fa_top, COLORS._main_text_title);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(24), dialog_y + ui(16), "Interpolation curve");
2022-01-13 05:24:03 +01:00
#endregion
#region draw
if(value_target != noone) {
2023-02-28 09:43:01 +01:00
editWidget.setActiveFocus(sFOCUS, sHOVER);
2022-11-03 11:44:49 +01:00
editWidget.draw(dialog_x + ui(16), dialog_y + ui(48), dialog_w - ui(32), dialog_h - ui(64),
value_target.inter_curve, mouse_ui);
2022-01-13 05:24:03 +01:00
}
#endregion