Pixel-Composer/objects/o_dialog_warning/Create_0.gml

13 lines
246 B
Text
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
event_inherited();
#region data
2023-02-14 07:37:13 +01:00
anchor = ANCHOR.left | ANCHOR.top;
2022-01-13 05:24:03 +01:00
2023-02-14 07:37:13 +01:00
padding = ui(8);
destroy_on_click_out = true;
2022-01-13 05:24:03 +01:00
warning_text = "";
2023-02-14 07:37:13 +01:00
life = 300;
2025-01-11 04:31:00 +01:00
function setText(txt) { warning_text = txt; return self; }
2022-01-13 05:24:03 +01:00
#endregion