8 lines
164 B
GDScript
8 lines
164 B
GDScript
extends Node3D
|
|
|
|
func _ready() -> void:
|
|
var npc:Entity = $NotPlayer
|
|
if npc:
|
|
npc.dialogueBasePath = "res://dialogue/npc/test"
|
|
npc.dialogueTitle = "start"
|