add puzzle names

This commit is contained in:
2022-12-05 10:52:00 +01:00
parent 1afe589bcd
commit 4e95765d98
64 changed files with 55 additions and 42 deletions

View File

@@ -1,9 +1,13 @@
using UnityEngine;
using NaughtyAttributes;
using UnityEngine;
namespace EscapeRoomEngine.Engine.Runtime.Modules
{
[CreateAssetMenu(menuName = "Modules/Puzzle")]
public class PuzzleModuleDescription : ModuleDescription
{
public string puzzleName;
[InfoBox("Puzzle measurements will only be combined for the same puzzle with the same version. If large changes are made to the puzzle that might influence its measurements, the version should be incremented.")]
public int puzzleVersion = 1;
}
}