Skip to content

Fast Reset

Defined in: packages/isaacscript-common/src/classes/features/other/FastReset.ts:15

  • Feature

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.

void

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.

void