Pixel-Composer/objects/o_dialog_scrollbox/Draw_64.gml

14 lines
488 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
#region draw
2023-01-04 02:30:04 +01:00
draw_sprite_stretched(THEME.textbox, 3, dialog_x, dialog_y, dialog_w, dialog_h);
2023-03-23 13:38:50 +01:00
WIDGET_CURRENT = tb_search;
tb_search.setActiveFocus(true, true);
tb_search.draw(dialog_x + ui(8), dialog_y + ui(8), dialog_w - ui(16), ui(24), search_string);
tb_search.sprite_index = 0;
2022-12-16 09:18:09 +01:00
sc_content.active = sHOVER;
2023-03-23 13:38:50 +01:00
sc_content.draw(dialog_x, dialog_y + ui(16 + 24));
2023-01-04 02:30:04 +01:00
draw_sprite_stretched(THEME.textbox, 1, dialog_x, dialog_y, dialog_w, dialog_h);
2022-01-13 05:24:03 +01:00
#endregion