BIS fnc markerParams: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " +(spawn|call) +'''([a-zA-Z0-9_]+)'''[ ]* " to " $1 $2 ") |
Lou Montana (talk | contribs) m (Text replacement - "'''(BI(N|S)_fnc_[a-zA-Z0-9_]+)'''" to "$1") |
||
Line 24: | Line 24: | ||
*8: [[String]] - Name of the marker | *8: [[String]] - Name of the marker | ||
|x1= <code>_params = "marker_1" [[call]] | |x1= <code>_params = "marker_1" [[call]] [[BIS_fnc_markerParams]];</code> | ||
|seealso= [[BIS_fnc_markerCreate]] | |seealso= [[BIS_fnc_markerCreate]] |
Revision as of 20:26, 12 June 2021
Description
- Description:
- Description needed
- Execution:
- call
- Groups:
- Map and Markers
Syntax
- Syntax:
- Syntax needed
- Parameters:
- varName: String - Variable name of the marker
- Return Value:
- Return value needed
Examples
- Example 1:
_params = "marker_1" call BIS_fnc_markerParams;
Additional Information
- See also:
- BIS_fnc_markerCreate
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 February 27, 2021 - 16:30 (UTC)
- 7erra
-
Extract all marker information from marker_1 to variables:
("marker_1" call BIS_fnc_markerParams) params ["_nameArray", "_position", "_size", "_colour", "_type", "_brush", "_shape", "_alpha", "_text"]; _position params ["_posX", "_posY"]; _nameArray params ["_marker"]; _size params ["_a", "_b"];