Change map

This commit is contained in:
Lucastaa
2026-05-08 08:56:47 +07:00
parent 0b4c323d0a
commit a5b985350a
131 changed files with 4933 additions and 194 deletions

View File

@@ -17,6 +17,7 @@ namespace Hallucinate.GameSetup.Maze
public GameObject pathPrefab;
public GameObject startPrefab;
public GameObject endPrefab;
public GameObject stairsUp;
[Header("Room Pieces")]
public GameObject wallpiece;
@@ -44,6 +45,7 @@ namespace Hallucinate.GameSetup.Maze
MazeCellType.Path => pathPrefab,
MazeCellType.Start => startPrefab,
MazeCellType.End => endPrefab,
MazeCellType.StairsUp => stairsUp,
_ => null
};
}