mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
18 lines
345 B
Plaintext
18 lines
345 B
Plaintext
/// @description init
|
|
if !ready exit;
|
|
|
|
#region window control
|
|
if(sFOCUS) {
|
|
if(destroy_on_escape && keyboard_check_pressed(vk_escape))
|
|
instance_destroy(self);
|
|
}
|
|
#endregion
|
|
|
|
#region resize
|
|
if(_dialog_h != dialog_h || _dialog_w != dialog_w) {
|
|
_dialog_h = dialog_h;
|
|
_dialog_w = dialog_w;
|
|
|
|
if(onResize != -1) onResize();
|
|
}
|
|
#endregion |