allCutLayers: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|= Comments ____________________________________________________________________________________________ | arma3dev |= Game name |1.57|= Game version _____________...")
 
mNo edit summary
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns all layers used by [[cutRsc]], [[cutText]], [[cutObj]] or [[cutFadeOut]]. The layer normally would be added on the first use of any of the aforementioned commands, however if a layer needs to be reserved it could be done like so: <br><tt>_layerNum <nowiki>=</nowiki> "myLayerName" [[cutFadeOut]] 0;</tt>.<br><br> The index of the layer name in the array corresponds to the layer number the cut effect will be displayed on. If no layers were defined, the return is [""], because 0 layer is reserved for usage in cut commands without layer param or when name of the layer given is empty "". |= Description
| Returns all named layers used by [[cutRsc]], [[cutText]], [[cutObj]] or [[cutFadeOut]]. The layer normally would be added on the first use of any of the aforementioned commands, however if a layer needs to be reserved it could be done like so: <br><tt>_layerNum <nowiki>=</nowiki> "myLayerName" [[cutFadeOut]] 0;</tt>.<br><br> The index of the layer name in the array corresponds to the layer number the cut effect will be displayed on. If no layers were defined, the return is [""], because 0 layer is reserved for usage in cut commands without layer param or when name of the layer given is empty "". |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 01:56, 21 February 2016

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version 1.57|1.57]]
Hover & click on the images for description

Description

Description:
Returns all named layers used by cutRsc, cutText, cutObj or cutFadeOut. The layer normally would be added on the first use of any of the aforementioned commands, however if a layer needs to be reserved it could be done like so:
_layerNum = "myLayerName" cutFadeOut 0;.

The index of the layer name in the array corresponds to the layer number the cut effect will be displayed on. If no layers were defined, the return is [""], because 0 layer is reserved for usage in cut commands without layer param or when name of the layer given is empty "".
Groups:
Uncategorised

Syntax

Syntax:
allCutLayers
Return Value:
Array - array of Strings

Examples

Example 1:
_allLayers = allCutLayers;

Additional Information

See also:
cutRsccutTextcutObjcutFadeOut

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

[[Category:Introduced with arma3dev version 1.57]][[ Category: arma3dev: New Scripting Commands | ALLCUTLAYERS]][[ Category: arma3dev: Scripting Commands | ALLCUTLAYERS]]

Notes

Bottom Section