1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-12-18 03:41:34 +00:00

Update !general-info.md

This commit is contained in:
Harley White 2021-06-06 12:42:24 -04:00
parent 973316b1c7
commit a801bd95d0

View file

@ -4,7 +4,7 @@ Making a game in The Modding Tree mostly involves defining parameters or functio
Beyond that, the main way to add content is through creating layers, often in [layers.js](/js/layers.js). You can add new layers by calling `addLayer(layername, layerdata)`. There is an example of a basic layer in [layers.js](/js/layers.js) showing the recommended method. It is just an example and can be freely deleted. You can also use it as a reference or a base for your own layers.
You can test your mod by opening the [index.html][/index.html] file in your browser.
You can test your mod by opening the [index.html](/index.html) file in your browser.
Most of the time, you won't need to dive deep into the code to create things, but you still can if you really want to, for example to add new Vue components in [components.js](/js/components.js).