ManiaMap.Unity
Procedural generation of metroidvania style maps for Unity.
RoomType.cs
1using UnityEngine;
2
4{
8 public enum RoomType
9 {
10 [InspectorName("2D")]
11 TwoDimensional,
12 [InspectorName("3D - XY Plane")]
14 [InspectorName("3D - XZ Plane")]
16 }
17}
RoomType
The type of room.
Definition: RoomType.cs:9
@ ThreeDimensionalXZ
A 3D room in the XY plane.
@ ThreeDimensionalXY
A 2D room in the XY plane.