Pixel-Composer/objects/o_dialog_warning/Create_0.gml

11 lines
184 B
Plaintext
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;
2022-01-13 05:24:03 +01:00
#endregion