import: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 4: Line 4:
|version1= 2.16
|version1= 2.16


|arg= local
|gr1= Variables
|eff= global
 
|gr1= Object Manipulation


|descr= Imports one or multiple local variables from the parent scope, and defines them as [[private]] variables in the current scope. It can bypass [[privateAll]].
|descr= Imports one or multiple local variables from the parent scope, and defines them as [[private]] variables in the current scope. It can bypass [[privateAll]].

Revision as of 18:29, 30 October 2023

Hover & click on the images for description

Description

Description:
Imports one or multiple local variables from the parent scope, and defines them as private variables in the current scope. It can bypass privateAll.
Groups:
Variables

Syntax

Syntax:
import variableName
Parameters:
variableName: String - variable to import
Return Value:
Nothing

Alternative Syntax

Syntax:
import variableNames
Parameters:
variableNames: Array of Strings - variables to import
Return Value:
Nothing

Examples

Example 1:
_myVar = 1; call { import "_myVar"; // similar to: private _myVar = _myVar; }
Example 2:
_a = 1; _b = 2; call { import ["_a", "_b"]; // similar to: [_a, _b] params ["_a", "_b"]; }

Additional Information

See also:
privateAll private params

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