Pixel-Composer/objects/o_dialog_warning/Create_0.gml

11 lines
184 B
Text
Raw Normal View History

2022-01-13 11:24:03 +07:00
/// @description init
event_inherited();
#region data
2023-02-14 13:37:13 +07:00
anchor = ANCHOR.left | ANCHOR.top;
2022-01-13 11:24:03 +07:00
2023-02-14 13:37:13 +07:00
padding = ui(8);
destroy_on_click_out = true;
2022-01-13 11:24:03 +07:00
warning_text = "";
2023-02-14 13:37:13 +07:00
life = 300;
2022-01-13 11:24:03 +07:00
#endregion