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

@@ -54,5 +54,6 @@ public partial class Altar : Node3D, IDungeonFloor
public void ExitReached() => Game.FloorExitReached();
public void InitializeDungeon() { return; }
public Transform3D GetPlayerSpawnPoint() { return new Transform3D(PlayerSpawnPoint.Basis, new Vector3(PlayerSpawnPoint.GlobalPosition.X, -3, PlayerSpawnPoint.GlobalPosition.Z)); }
public (Vector3 Rotation, Vector3 Position) GetPlayerSpawnPoint() { return (PlayerSpawnPoint.Rotation, new Vector3(PlayerSpawnPoint.GlobalPosition.X, 0, PlayerSpawnPoint.GlobalPosition.Z)); }
}