Pixel-Composer/objects/o_dialog_scrollbox/Draw_64.gml

9 lines
280 B
Text
Raw Normal View History

2022-01-13 11:24:03 +07:00
/// @description init
#region draw
2023-01-04 08:30:04 +07:00
draw_sprite_stretched(THEME.textbox, 3, dialog_x, dialog_y, dialog_w, dialog_h);
2022-12-16 15:18:09 +07:00
sc_content.active = sHOVER;
sc_content.draw(dialog_x, dialog_y);
2023-01-04 08:30:04 +07:00
draw_sprite_stretched(THEME.textbox, 1, dialog_x, dialog_y, dialog_w, dialog_h);
2022-01-13 11:24:03 +07:00
#endregion