Fix Altar scaling

This commit is contained in:
2026-02-03 20:52:14 -08:00
parent d9c2ba7ed1
commit 3e6e21977e
33 changed files with 206 additions and 198 deletions

View File

@@ -55,5 +55,5 @@ public partial class BossRoomB : Node3D, IBossRoom, IDungeonFloor
ExitReached();
}
public Transform3D GetPlayerSpawnPoint() => new Transform3D(PlayerSpawn.Basis, new Vector3(PlayerSpawn.Position.X, 0f, PlayerSpawn.Position.Z));
public (Vector3 Rotation, Vector3 Position) GetPlayerSpawnPoint() { return (PlayerSpawn.Rotation, new Vector3(PlayerSpawn.GlobalPosition.X, 0, PlayerSpawn.GlobalPosition.Z)); }
}