14 lines
322 B
GDScript
14 lines
322 B
GDScript
extends NPC
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
characterName = "Tapir"
|
|
pronouns = "any"
|
|
dialogueResource = load("res://NPCs/Tutorial/EllieMode/Tapir/Tapir.dialogue")
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|