parsingNamespace: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>") |
Lou Montana (talk | contribs) m (Text replacement - "" to "") |
||
(10 intermediate revisions by the same user not shown) | |||
Line 18: | Line 18: | ||
|descr= Returns the global namespace attached to config parser. | |descr= Returns the global namespace attached to config parser. | ||
|s1= | |s1= [[parsingNamespace]] | ||
|r1= [[Namespace]] | |r1= [[Namespace]] | ||
|x1= <sqf> | |x1= <sqf> | ||
_profVar1 = | parsingNamespace setVariable ["var1", 101.23124]; | ||
_profVar1 = parsingNamespace getVariable "var1"; | |||
</sqf> | |||
|seealso= | |seealso= [[missionNamespace]] [[uiNamespace]] [[currentNamespace]] [[profileNamespace]] [[localNamespace]] [[allVariables]] [[with]] [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] | ||
}} | }} | ||
{{Note | |||
|user= BrotherhoodOfHam | |||
|timestamp= 20150127180800 | |||
|text= Any global variable defined in a config using __EXEC() will be stored in this namespace.<br> | |||
For example in the description.ext:<br> | For example in the description.ext:<br> | ||
<sqf>__EXEC(testVar = 1);</sqf> | <sqf>__EXEC(testVar = 1);</sqf> | ||
Line 41: | Line 40: | ||
The above example would print 1.<br><br> | The above example would print 1.<br><br> | ||
This example however: | This example however: | ||
< | <sqf>__EXEC(_testVar = 1);</sqf> | ||
Would print 0, because adding an underscore will make the variable local to the config in the same way that it would make it local to a script.<br><br> | Would print 0, because adding an underscore will make the variable local to the config in the same way that it would make it local to a script.<br><br> | ||
See [[PreProcessor Commands]] for more details on __EXEC() | See [[PreProcessor Commands]] for more details on __EXEC() | ||
}} | |||
Latest revision as of 11:55, 26 April 2023
Description
- Description:
- Returns the global namespace attached to config parser.
- Groups:
- NamespacesVariables
Syntax
- Syntax:
- parsingNamespace
- Return Value:
- Namespace
Examples
- Example 1:
Additional Information
- See also:
- missionNamespace uiNamespace currentNamespace 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
- Posted on Jan 27, 2015 - 18:08 (UTC)
-
Any global variable defined in a config using __EXEC() will be stored in this namespace.
For example in the description.ext:
The variable "testVar" can be accessed during mission run time using getVariableThe above example would print 1.
This example however:Would print 0, because adding an underscore will make the variable local to the config in the same way that it would make it local to a script.
See PreProcessor Commands for more details on __EXEC()