currentNamespace: Difference between revisions
Jump to navigation
Jump to search
(Tweak and example 2) |
Killzone Kid (talk | contribs) (see also) |
||
Line 40: | Line 40: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[missionNamespace]], [[uiNamespace]], [[parsingNamespace]], [[profileNamespace]], [[with]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] |SEEALSO= | | [[missionNamespace]], [[uiNamespace]], [[parsingNamespace]], [[profileNamespace]], [[localNamespace]], [[allVariables]], [[with]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] |SEEALSO= | ||
| |MPBEHAVIOUR= | | |MPBEHAVIOUR= |
Revision as of 13:44, 9 July 2020
Description
- Description:
- Returns current global namespace the script runs in.
- Groups:
- Uncategorised
Syntax
- Syntax:
- currentNamespace
- Return Value:
- Namespace
Examples
- Example 1:
if (currentNamespace isEqualTo uiNamespace) then {hint "This is uiNamespace"};
- Example 2:
- Quick function to get namespace name
_fn_currentNamespace = { if (currentNamespace isEqualTo missionNamespace) exitWith {"missionNamespace"}; if (currentNamespace isEqualTo parsingNamespace) exitWith {"parsingNamespace"}; if (currentNamespace isEqualTo profileNamespace) exitWith {"profileNamespace"}; if (currentNamespace isEqualTo uiNamespace) exitWith {"uiNamespace"}; }; with profileNamespace do { systemChat call _fn_currentNamespace; // profileNamespace }; systemChat call _fn_currentNamespace; // missionNamespace with uiNamespace do { systemChat call _fn_currentNamespace; // uiNamespace };
Additional Information
- See also:
- missionNamespaceuiNamespaceparsingNamespaceprofileNamespacelocalNamespaceallVariableswithForward Compatibility
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