Browse Source

Add tutorial to create a new level

DricomDragon 5 years ago
parent
commit
2d931a5a44
1 changed files with 23 additions and 0 deletions
  1. 23 0
      README.md

+ 23 - 0
README.md

@@ -1,3 +1,26 @@
 # Mighty Liners Reborn
 
 Mighty Liners return !
+
+## Edit project
+
+You can download the [Godot engine](https://godotengine.org/) on the official website and open this repository as a project.
+
+## Create a new level
+
+### Make the new level scene
+
+- Open this repository with Godot editor
+- Duplicate the file _Levels/template.tscn_ with the name of your new level
+- Select the _Grid_ node in the scene tree
+- Place the walls and ground tiles
+- Enable grid snap (`Shift` + `G`)
+- Place the spawn points
+
+### Test your level
+
+To easily test your level, you can set the editor property **Level To Loop** in the root node of the _Game_ scene to your new level, e.g. `Focus`. When you run the game (_F5_), it will loop indefinitely on the selected level.
+
+### Add your level in the list
+
+In the root node of the _Game_ scene again, you can add your new level in the **Level Names** list. Do not forget to clear the **Level To Loop** field before submitting your final work.