One_Eleven_Android/dialogic/custom-events/Pause/event_pause_99.gd
2024-11-10 03:34:28 +03:00

13 lines
419 B
GDScript

extends Node
func handle_event(_event_data, dialog_node):
"
\n If this event should wait for dialog advance to occur, uncomment the WAITING line
\n If this event should block the dialog from continuing, uncomment the WAITINT_INPUT line
\n While other states exist, they generally are not neccesary, but include IDLE, TYPING, and ANIMATING
\n "
dialog_node.set_state(dialog_node.state.WAITING)
pass