Getting Started
Learn how to download and install the main module and its submodules.
How to install the main module
1.) Go to the repository's releases page and download the latest version of isaac-helper. Choose isaac-helper.min.zip
if you want a minified version.
2.) Extract the .zip file you downloaded in a folder within your mod with the same name as your mod's master folder. For example:
It can be within a subdirectory of mod-name/mod-name
, but for this example we're going to put it directly under mod-name/mod-name
.
How to install submodules
1.) Find the submodule you want to use in this folder on the Github repo. For example, if you want to use the ExtraMath
submodule, you would go to Source/Modules/ExtraMath/ExtraMath.lua
.
2.) Download the submodule.
2a.) If the submodule has dependencies, check the README file to find out what they are and download them as well.
3.) Put the submodules and its dependencies in the Modules
folder in the isaac-helper
folder. For example:
How to use
1.) require
the main module
2.) If this is the main.lua
file, initialize the main module with your mod reference and folder name. Otherwise, skip this step.
3.) Get the submodule you want to use.
Example use
Because of how the main module loads its submodules and how you initialize the main module on mod startup, luamod your-mod-name
will work with isaac-helperr.
What now?
Last updated