19 lines
357 B
GDScript
19 lines
357 B
GDScript
extends Area
|
|
|
|
var dialog = null
|
|
|
|
func _ready():
|
|
pass # Replace with function body.
|
|
|
|
func _on_DialogTrigger_body_entered(body):
|
|
if body.get_parent() != Util.player:
|
|
return
|
|
dialog = Dialogic.start("elevator")
|
|
add_child(dialog)
|
|
|
|
func _on_DialogTrigger_body_exited(body):
|
|
if body.get_parent() != Util.player:
|
|
return
|
|
if dialog != null:
|
|
dialog = null
|