currentNamespace: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Command " to "{{RV|type=command ") |
Lou Montana (talk | contribs) m (Text replacement - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|") |
||
Line 14: | Line 14: | ||
* [[localNamespace]] (since Arma 3 v1.99.146509) | * [[localNamespace]] (since Arma 3 v1.99.146509) | ||
{{Informative | Since Arma 3 v1.99.146509, [[Namespace]]s can be compared with [[==]] and [[!=]] operators in addition to [[isEqualTo]]}} | {{Feature | Informative | Since Arma 3 v1.99.146509, [[Namespace]]s can be compared with [[==]] and [[!=]] operators in addition to [[isEqualTo]]}} | ||
| '''currentNamespace''' | | '''currentNamespace''' |
Revision as of 00:12, 7 February 2021
Description
- Description:
- Description needed
- Groups:
- System
Syntax
- Syntax:
- Syntax needed
- Return Value:
- Return value needed
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:
- See also needed
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