currentNamespace: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\{\{GameCategory\|(arma[0123])\|New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
| arma3 |Game name= | | arma3 |Game name= | ||
Line 7: | Line 6: | ||
|gr1= System |GROUP1= | |gr1= System |GROUP1= | ||
| Returns current [[Namespace|global namespace]] the script runs in. Could be one of the following: | | Returns current [[Namespace|global namespace]] the script runs in. Could be one of the following: | ||
Line 18: | Line 16: | ||
{{Informative | Since Arma 3 v1.99.146509, [[Namespace]]s can be compared with [[==]] and [[!=]] operators in addition to [[isEqualTo]]}} | {{Informative | Since Arma 3 v1.99.146509, [[Namespace]]s can be compared with [[==]] and [[!=]] operators in addition to [[isEqualTo]]}} | ||
|DESCRIPTION= | |DESCRIPTION= | ||
| '''currentNamespace''' |SYNTAX= | | '''currentNamespace''' |SYNTAX= | ||
Line 48: | Line 45: | ||
};</code>|EXAMPLE2= | };</code>|EXAMPLE2= | ||
| [[missionNamespace]], [[uiNamespace]], [[parsingNamespace]], [[profileNamespace]], [[localNamespace]], [[allVariables]], [[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 00:46, 17 January 2021
Description
- Description:
- Returns current global namespace the script runs in. Could be one of the following:
- missionNamespace
- uiNamespace
- parsingNamespace
- profileNamespace
- localNamespace (since Arma 3 v1.99.146509)
- Groups:
- System
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