Binding of Isaac - Afterbirth+ Lua Reference/Guide
|
Debuggers are very valuable tools to diagnose problems with your code when you don't know exactly what your program is doing! You can get by with simple debug print statements, but some things are easier to track down with a debugger.
--luadebug
to your launch options for Isaac on Steam. Properties > General > Set Launch Options. The debugger will not work without this command line option.StartDebug()
Now you can hit the green arrow button to continue execution. Check the ZeroBrane documentation if you need help with its debugging features.
We strongly advise disabling --luadebug
after you're done if you don't need access to the debug features!