Pixel-Composer/objects/o_dialog_textbox_function_guide/Create_0.gml
Tanasart 19133ca97f - New transform scene node
- New UV remap node
2023-11-09 19:27:16 +07:00

27 lines
370 B
Plaintext

/// @description
#region data
depth = -9999;
dialog_x = 0;
dialog_y = 0;
dialog_w = 280;
dialog_h = 32;
textbox = noone;
prompt = "";
index = 0;
function activate(textbox) { return;
INLINE
self.textbox = textbox;
}
function deactivate(textbox) {
INLINE
if(textbox != self.textbox) return;
self.textbox = noone;
}
#endregion