Ace Attorney Casing Tool Documentation

The documentation for AACS and the CodeEditor.


Project maintained by MaxDeBy Hosted on GitHub Pages — Theme by mattgraham

Back to overview


FadeInBackground (FinBg)


Description

Fades in the background of the screen.

Parameters

Name Type Description Required Default Value
Duration Number The amount of miliseconds it takes to fade in the background. 1000

Examples:

Example #1: Slowly fade in the background over the span of 5 seconds.

1:  FadeInBackground:[5000];

Example #2: Fade in the background with the default duration of 1 second.

1:  FinBg:[-];

Remarks:

If you pass an empty parameter as Duration, it will default to one second (1000 miliseconds).
The minimum is 10 miliseconds. If you use a value lower than 10, it will be considered as 10. The only exception is 0 miliseconds, which are treated as instantly.


Back to overview