Pixel-Composer/objects/o_dialog_release_note/Draw_64.gml

18 lines
507 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
if !ready exit;
#region base UI
2023-11-13 15:42:14 +01:00
DIALOG_DRAW_BG
2022-11-03 11:44:49 +01:00
if(sFOCUS)
2023-11-13 15:42:14 +01:00
DIALOG_DRAW_FOCUS
2022-01-13 05:24:03 +01:00
#endregion
#region text
2023-06-10 13:59:45 +02:00
draw_set_text(f_p0, fa_left, fa_top, COLORS._main_text);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(24), dialog_y + ui(16), string(VERSION_STRING) + " Release note");
2022-01-13 05:24:03 +01:00
2023-11-13 15:42:14 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 1, dialog_x + ui(24), dialog_y + ui(48), dialog_w - ui(48), dialog_h - ui(72));
2022-01-13 05:24:03 +01:00
2023-06-21 20:36:53 +02:00
sp_note.setFocusHover(sFOCUS, sHOVER);
2022-11-03 11:44:49 +01:00
sp_note.draw(dialog_x + ui(40), dialog_y + ui(56));
2022-01-13 05:24:03 +01:00
#endregion