currentNamespace: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Text replacement - "" to "") |
||
Line 41: | Line 41: | ||
</sqf> | </sqf> | ||
|seealso= | |seealso= [[missionNamespace]] [[uiNamespace]] [[parsingNamespace]] [[profileNamespace]] [[localNamespace]] [[allVariables]] [[with]] [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] | ||
}} | }} |
Latest revision as of 11:54, 26 April 2023
Description
- Description:
- Returns the current global namespace the script runs in.
- Groups:
- NamespacesSystem
Syntax
- Syntax:
- currentNamespace
- Return Value:
- Namespace - one of:
Examples
- Example 1:
- Example 2:
- private _fn_getCurrentNamespaceName = { if (currentNamespace isEqualTo missionNamespace) exitWith { "missionNamespace" }; if (currentNamespace isEqualTo parsingNamespace) exitWith { "parsingNamespace" }; if (currentNamespace isEqualTo profileNamespace) exitWith { "profileNamespace" }; if (currentNamespace isEqualTo uiNamespace) exitWith { "uiNamespace" }; "error"; }; with profileNamespace do { systemChat call _fn_getCurrentNamespaceName; // profileNamespace }; systemChat call _fn_getCurrentNamespaceName; // missionNamespace with uiNamespace do { systemChat call _fn_getCurrentNamespaceName; // uiNamespace };
Additional Information
- See also:
- missionNamespace uiNamespace parsingNamespace profileNamespace localNamespace allVariables with Forward 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