clean up ui

This commit is contained in:
2022-12-14 16:50:42 +01:00
parent 14098e1d73
commit db5123278d
24 changed files with 1591 additions and 700 deletions

View File

@@ -29,8 +29,10 @@ namespace EscapeRoomEngine.Engine.Runtime
public event UpdateUIHandler UpdateUIEvent;
[InfoBox("If a space was generated without any puzzles in it, the engine will try generating another new space. To prevent infinite loops, the amount of retries is bound.")]
public int maxSpaceGenerationTries;
public Vector3 roomOffset;
public int maxSpaceGenerationTries = 1000;
[Tooltip("The engine will try to generate a room that takes approximately this many seconds to complete.")]
public float initialTargetTime = 5 * 60;
public Vector3 roomOffset = new(0, 1000, 0);
[Required] public EngineTheme theme;
public int NumberOfRooms => _rooms.Count;