blob: 774eadb8b5e773f370c8a6a5a2b7dc7f2758a040 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
extends "res://Scenes/Maps/Map.gd"
var dialog_played = false
func _on_dialog_body_entered(body):
if body is Player and dialog_played == false:
Utilities.dialog("yubiwa-girl")
dialog_played = true
func _on_map_area_body_entered(body):
if body is Player:
dialog_played = false
|