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


FadeInForeground (FinFront)


Description

Fades in the foreground of the screen.

Parameters

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

Examples:

Example #1: Fading in the foreground over the span of 3 seconds.

1:  FadeInForeground:[3000];

Example #2: Fading in the foreground over the span of 1 second.

1:  FinFront:[-];

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