Skip to content
Snippets Groups Projects
Commit adeb2ea1 authored by Tobias Schöner's avatar Tobias Schöner
Browse files

feat: generated ConeWorld Level

parent 249f958e
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
fileFormatVersion: 2
guid: 1957f7197f13ba147a754eda48673458
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
......@@ -19,6 +19,7 @@ public static void GenerateAll()
GenerateTreeStage();
GenerateRiverStage();
GenerateConeWorld();
}
public static void GenerateTreeStage()
......@@ -123,4 +124,35 @@ public static void GenerateRiverStage()
StageStatic.SetMode(StageStatic.Mode.Create);
StageStatic.stage.store();
}
public static void GenerateConeWorld()
{
// Params
// Generate Stage
// TODO? use constructor
Stage demo = new Stage
{
number = 3,
category = "Demo Category",
name = "Cone World",
scene = "ConeWorld",
description = "Cone Stage",
use_install_folder = true,
//hierarchie = new List<Directories> { /*Directories.Stages*/ }
};
// needed to generate facts
StageStatic.StageOfficial = new Dictionary<string, Stage>
{
{ demo.name, demo },
};
StageStatic.SetStage(demo.name, false);
// TODO:
//// Populate Solution
// Save
StageStatic.stage.store();
}
}
......@@ -109,7 +109,7 @@ private static List<string> GenerateWorldList()
}
}
#else
List<string> _Worlds = new List<string> {"TreeWorld", "RiverWorld"};
List<string> _Worlds = new List<string> {"TreeWorld", "RiverWorld", "ConeWorld"};
Debug.Log("WorldList might be incomplete or incorrect!");
#endif
......
{"category":"Demo Category","number":3,"description":"Cone Stage","scene":"ConeWorld","use_install_folder":true,"solution":{"ValidationSet":[],"WorkflowGadgetDict":{"-1":null},"FactDict":{},"MetaInf":{},"Workflow":[],"marker":0,"worksteps":0,"backlog":0,"soft_resetted":false,"invoke":false,"MaxLabelId":0,"UnusedLabelIds":[],"name":null,"path":null},"solution_approches":[],"AllowedScrolls":null,"AllowedGadgets":null,"name":"Cone World","path":null}
\ No newline at end of file
fileFormatVersion: 2
guid: 4d87e7dd741645b4399bc2d4f4387c35
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment