This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local thisScene = {} | |
| local sceneMan = require ("Libraries.sceneMan") | |
| local delayedDraw = require ("Helpers.delayedDraw") | |
| local lume = require ("Libraries.lume") | |
| local waveConfig = { | |
| freq = 2, | |
| divisor = 1.25, | |
| xcoeff = 0.5 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Declares / initializes libraries and external files | |
| -- Declares / initializes the local variables | |
| -- Declares / initializes the global variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- This contains all the functions, graphics, and sounds that are available to mods | |
| local api = ... | |
| -- The mod info table describes the mod and defines which manifest it belongs to | |
| -- Each mod is required to be associated with a manfiest, otherwise it will not be loaded! | |
| local modInfo = { | |
| name = "Mod name", | |
| author = "Your name here", | |
| version = 1.0, -- The latest major version of the game that this mod is compatible with | |
| type = "particle", -- The mod type. Don't forget this! |