puzzle module framework, puzzle a ball module

This commit is contained in:
2022-11-18 02:10:05 +01:00
parent bd0934636f
commit 99e0452379
90 changed files with 4799 additions and 51 deletions

View File

@@ -8,7 +8,7 @@ namespace Escape_Room_Engine.Engine.Scripts.Modules
public class ModuleDescription : ScriptableObject
{
public List<ModuleType> types = new();
public GameObject modulePrefab;
public ModuleState modulePrefab;
public List<PlacementRequirement> placementRequirements = new();
public List<OrientationRequirement> orientationRequirements = new();
}