This commit is contained in:
KadeDev 2021-04-15 15:05:58 -07:00
commit 13f2c2343e
2 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,10 @@
Kade Engine Lua Mod Chart Documentation # Kade Engine Lua Mod Chart Documentation
In the latest version of Kade Engine we introduced Mod Charts. Mod Charts are a way of changing gameplay without hard coded values, this is achieved by using the Lua Scripting language to create script files that run during runtime. In the latest version of Kade Engine we introduced Mod Charts. Mod Charts are a way of changing gameplay without hard coded values, this is achieved by using the Lua Scripting language to create script files that run during runtime.
All files **are located in** `assets/data/song/modchart.lua` All files **are located in** `assets/data/song/`
Modchart Lua File should be in `assets/data/song/modchart.lua` **exactly**
Lua code will only be ran if that file exists. Lua code will only be ran if that file exists.

View File

@ -61,4 +61,4 @@ This game was made with love to Newgrounds and its community. Extra love to Tom
# Other pages # Other pages
- [BUILDING.md](https://github.com/KadeDev/Kade-Engine/blob/master/BUILDING.md) - How to compile/build the game - [BUILDING.md](https://github.com/KadeDev/Kade-Engine/blob/master/BUILDING.md) - How to compile/build the game
- [ModCharts.md](https://github.com/KadeDev/Kade-Engine/blob/master/ModCharts.md) - Mod Chart Documentation