Wednesday, 20 August 2025 02:02:40

This commit is contained in:
2025-08-20 02:02:42 -04:00
parent dfbad40739
commit 2eb95b18fd
32 changed files with 242 additions and 167 deletions

View File

@@ -41,11 +41,10 @@ public partial class Manager : Node
for (int i = 0; i < _workers.Count; i++)
{
GD.Print(i + 1);
_workers[i]._healthBar.Position = _managerPanel.GetNode<Panel>("Team").GetNode<Panel>("T"+(i+1)).GlobalPosition;
}
AwfullyHotCoffeePot newTchotchke = ResourceLoader.Load<PackedScene>("res://Gameplay/Tchotchkes/awfully_hot_coffee_pot.tscn").Instantiate<AwfullyHotCoffeePot>();
Tchotchke newTchotchke = ResourceLoader.Load<PackedScene>("res://Gameplay/Tchotchkes/awfully_hot_coffee_pot.tscn").Instantiate<Tchotchke>();
newTchotchke.Position = new Vector2(Globals.Instance._screenSize.X - 100, Globals.Instance._screenCenter.Y);
AddChild(newTchotchke);
_tchotckes.Add(newTchotchke);