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

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 6d89990cf25d40c986a0ec0ff8050ceb
timeCreated: 1670694846

View File

@@ -0,0 +1,7 @@
namespace EscapeRoomEngine.Engine.Runtime.Measurements
{
public class Measure
{
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 9a9d36964fc24f59aab5bd5804aea3b1
timeCreated: 1670695073

View File

@@ -0,0 +1,7 @@
namespace EscapeRoomEngine.Engine.Runtime.Measurements
{
public struct PuzzleMeasurements
{
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: e6d831555dc34776b8212a9d9de33414
timeCreated: 1670695633

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;
}
}