BIS fnc VRDrawGrid: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
||
Line 1: | Line 1: | ||
{{Function | {{Function | ||
| arma3 | | arma3 | ||
|1.00 | |1.00 | ||
|gr1= VR | |gr1= VR | ||
| Visualizes surface grid (used primarily for VR missions).<br> | | Visualizes surface grid (used primarily for VR missions).<br> | ||
{{Informative|Only one instance of grid visualisation can run at any given time. Calling this function multiple times will only move the grid center.}} | {{Informative|Only one instance of grid visualisation can run at any given time. Calling this function multiple times will only move the grid center.}} | ||
| [location'', colour''] call [[BIS_fnc_VRDrawGrid]] | | [location'', colour''] call [[BIS_fnc_VRDrawGrid]] | ||
|p1= location: [[Position]] or [[Boolean]]: | |p1= location: [[Position]] or [[Boolean]]: | ||
* [[Position]]: center position (should be multiple of 4 in both axis to correspond with the tiles on the ground, like [1000,1000] or [2400,2400]) | * [[Position]]: center position (should be multiple of 4 in both axis to correspond with the tiles on the ground, like [1000,1000] or [2400,2400]) | ||
* [[Boolean]]: use [[false]] to disable grid visualisation | * [[Boolean]]: use [[false]] to disable grid visualisation | ||
|p2= colour: [[Array]] - (Optional, default [0,0,0,1]) to format [<span style="color: red">R</span>,<span style="color: green">G</span>,<span style="color: blue">B</span>,<span style="color: grey">A</span>] | |p2= colour: [[Array]] - (Optional, default [0,0,0,1]) to format [<span style="color: red">R</span>,<span style="color: green">G</span>,<span style="color: blue">B</span>,<span style="color: grey">A</span>] | ||
| [[Nothing]] | | [[Nothing]] | ||
|x1= <code><nowiki>[</nowiki>[[getPosATL]] [[player]], [0.078, 0.3647, 0.0]] [[call]] [[BIS_fnc_VRDrawGrid]];</code> | |x1= <code><nowiki>[</nowiki>[[getPosATL]] [[player]], [0.078, 0.3647, 0.0]] [[call]] [[BIS_fnc_VRDrawGrid]];</code> | ||
|x2= <code><nowiki>[</nowiki>[[false]]] [[call]] [[BIS_fnc_VRDrawGrid]];</code> | |x2= <code><nowiki>[</nowiki>[[false]]] [[call]] [[BIS_fnc_VRDrawGrid]];</code> | ||
| [[BIS_fnc_VRDrawBorder]] | | [[BIS_fnc_VRDrawBorder]] | ||
}} | }} | ||
Revision as of 22:20, 17 January 2021
Description
Syntax
- Syntax:
- [location, colour] call BIS_fnc_VRDrawGrid
- Parameters:
- location: Position or Boolean:
- colour: Array - (Optional, default [0,0,0,1]) to format [R,G,B,A]
- Return Value:
- Nothing
Examples
- Example 1:
[getPosATL player, [0.078, 0.3647, 0.0]] call BIS_fnc_VRDrawGrid;
- Example 2:
[false] call BIS_fnc_VRDrawGrid;
Additional Information
- See also:
- BIS_fnc_VRDrawBorder
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