Party progress

This commit is contained in:
2026-01-10 23:00:05 -06:00
parent 6f036aac77
commit 78cc69bffe
15 changed files with 276 additions and 82 deletions

View File

@@ -0,0 +1,15 @@
class_name BattleFighterScene extends Node3D
var fighter:BattleFighter
func _ready() -> void:
self.visible = false
if fighter:
setFighter(fighter)
func setFighter(fighter:BattleFighter) -> void:
print("Setting fighter: %s" % fighter)
# Set up the visual representation of the fighter here
self.fighter = fighter
self.visible = true
pass