currentNamespace
Jump to navigation
Jump to search
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