From Bohemia Interactive Community
Hover & click on the images for description
Description
- Description:
- Terminates the effect in the given layer by fading it out according to the given duration. If named layer is used and it doesn't exist, it will be allocated. For title layer see titleFadeOut.
For greater efficiency and ease of moddability, it is recommended to use named layers.
- Groups:
- GUI Control
Syntax
- Syntax:
- layer cutFadeOut duration
- Parameters:
- layer: Number
- duration: Number
- Return Value:
- Nothing
- Syntax:
- layerName cutFadeOut duration Template:Since
- Parameters:
- layerName: String - effect layer name. Layer names are CaSe SeNsItIvE
- duration: Number - fade out time
- Return Value:
- Number - number of the corresponding layer
Examples
- Example 1:
0 cutFadeOut 2;
- Example 2:
_layer = "layer1" cutFadeOut 2;
Additional Information
- See also:
- allCutLayerscutTextcutRsccutObjallActiveTitleEffects
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here!
Add Note
- Posted on July 9, 2016 - 11:30 (UTC)
- Krzmbrzl00
-
(ArmA v1.60)
The actual fadeout-duration can be dependent on the duration for the fadein (e.g. specified by cutText). If the fadein-duration is set to a value less than 1 the fadeout-duration will be the given number multiplied by the fadein-duration.
"test" cutText ["", "BLACK", 0.5, true];
"test" cutFadeout 2;