Pixel-Composer/objects/o_dialog_warning/Draw_64.gml

14 lines
435 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
#endregion
#region text
2022-11-18 03:20:31 +01:00
draw_set_text(f_p0, fa_center, fa_top, COLORS._main_text);
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + dialog_w / 2, dialog_y + ui(24), warning_text);
2022-01-13 05:24:03 +01:00
#endregion