Pixel-Composer/objects/o_dialog_warning/Alarm_0.gml

14 lines
212 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
#region size
draw_set_font(f_p0);
var ww = string_width(warning_text);
var hh = string_height(warning_text);
dialog_w = ww + 48;
dialog_h = hh + 48;
#endregion
event_inherited();