Skip to content

Fade In Remover

Defined in: packages/isaacscript-common/src/classes/features/other/FadeInRemover.ts:8

  • Feature

removeFadeIn(): void

Defined in: packages/isaacscript-common/src/classes/features/other/FadeInRemover.ts:44

Removes the fade-in that occurs at the beginning of a run. 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 restore the vanilla behavior with the restoreFadeIn function.

In order to use this function, you must upgrade your mod with ISCFeature.FADE_IN_REMOVER.

void

restoreFadeIn(): void

Defined in: packages/isaacscript-common/src/classes/features/other/FadeInRemover.ts:57

Disables the fade-in remover. Only useful if you have previously called the removeFadeIn function.

In order to use this function, you must upgrade your mod with ISCFeature.FADE_IN_REMOVER.

void