Pixel-Composer/objects/o_dialog_warning/Create_0.gml
2025-01-11 10:31:00 +07:00

13 lines
No EOL
246 B
Text

/// @description init
event_inherited();
#region data
anchor = ANCHOR.left | ANCHOR.top;
padding = ui(8);
destroy_on_click_out = true;
warning_text = "";
life = 300;
function setText(txt) { warning_text = txt; return self; }
#endregion