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