Fast Reset
Classes
Section titled “Classes”FastReset
Section titled “FastReset”Defined in: packages/isaacscript-common/src/classes/features/other/FastReset.ts:15
Extends
Section titled “Extends”Feature
Methods
Section titled “Methods”enableFastReset()
Section titled “enableFastReset()”enableFastReset():
void
Defined in: packages/isaacscript-common/src/classes/features/other/FastReset.ts:50
Enables the fast-reset feature, which allows you to restart the game instantaneously. If this behavior is desired, call this function once at the beginning of your mod.
This is useful for debugging, when you are resetting the game often.
You can disable the fast-reset feature with the disableFastReset function.
In order to use this function, you must upgrade your mod with ISCFeature.FAST_RESET.
Returns
Section titled “Returns”void
disableFastReset()
Section titled “disableFastReset()”disableFastReset():
void
Defined in: packages/isaacscript-common/src/classes/features/other/FastReset.ts:63
Disables the fast-reset feature. Only useful if you have previously called the
enableFastReset function.
In order to use this function, you must upgrade your mod with ISCFeature.FAST_RESET.
Returns
Section titled “Returns”void
