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

@@ -16,7 +16,7 @@ public interface IMap : INode3D
IDungeonFloor CurrentFloor { get; }
Transform3D GetPlayerSpawnPosition();
(Vector3 Rotation, Vector3 Position) GetPlayerSpawnPosition();
IDungeonRoom GetPlayersCurrentRoom();
@@ -24,7 +24,7 @@ public interface IMap : INode3D
public AutoProp<int> CurrentFloorNumber { get; }
public event Action<Transform3D> SpawnPointCreated;
public event Action<(Vector3 Rotation, Vector3 Position)> SpawnPointCreated;
public event Action FloorLoaded;
}