Extensive work on the sideview and initial work on player profiles, inventory display, and renaming adventurerdata vs adventurer to adventurer vs adventurersprite

This commit is contained in:
2025-08-27 08:02:11 -04:00
parent 38845e26fa
commit 2a236ea041
55 changed files with 1975 additions and 417 deletions

View File

@@ -7,11 +7,11 @@ class_name Player extends Person
var interaction_target = null
@export var interaction_range : float = 75
@export var stop_range : float = 25
var data : AdventurerData
var data : Adventurer
func _ready() -> void:
Game.player = self
data = AdventurerData.new()
data = Adventurer.new()
data.name = "Player"
setup.call_deferred()