mapCenterOnCamera: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(alt syntax, see also)
m (Some wiki formatting)
 
(54 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma2 |= Game name
|game1= arma2
|version1= 1.02


|1.02|= Game version
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| <control> [[mapCenterOnCamera]] <boolean> syntax enables/disables continuous centering of the main map type control on the camera position. Needs to be executed once.<br><br>
|game3= tkoh
[[mapCenterOnCamera]] <control> syntax centers mini map type control on camera. The command returns world position of the camera. Needs to be executed each frame (preferably inside onDraw EH).|= Description
|version3= 1.00
____________________________________________________________________________________________


| mainmap '''mapCenterOnCamera''' enable |= Syntax
|game4= arma3
|version4= 0.50


|p1= mainmap: [[Control]] - |= PARAMETER1
|gr1= GUI Control - Map


|p2= enable: [[Boolean]] -  |= PARAMETER2
|descr= The main syntax enables/disables continuous centering of the main map type control on the camera position. Needs to be executed once.<br>
The alternative syntax centers mini map type control on camera. Needs to be executed each frame (preferably inside an {{hl|onDraw}} event handler).


| [[Nothing]] |= RETURNVALUE
|s1= mainmap [[mapCenterOnCamera]] enable


|p1= mainmap: [[Control]]


| s2= '''mapCenterOnCamera''' minimap &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(''available since Arma 3 v1.47'')|= Syntax
|p2= enable: [[Boolean]]


| p21= minimap: [[Control]] -  |= PARAMETER1
|r1= [[Nothing]]


|s2= [[mapCenterOnCamera]]  minimap


| r2= [[Array]] - [[PositionWorld]] of the map center (camera focus object) in render scope |= RETURNVALUE
|s2since= arma3 1.48


|p21= minimap: [[Control]]


|x1= <code>//--- Minimap update
|r2= [[Array]] in format [[Position#PositionASL|PositionASL]] of the map center (camera focus object's '''model centre'''<nowiki/>'s position (see [[getPosWorld]])) in render scope
(([[uiNamespace]] [[getVariable]] "BIS_UAV_DISPLAY") [[displayCtrl]] 112410) [[mapCenterOnCamera]] [[true]];</code>|= EXAMPLE1


____________________________________________________________________________________________
|x1= <sqf>
// --- Minimap update
((uiNamespace getVariable "BIS_UAV_DISPLAY") displayCtrl 112410) mapCenterOnCamera true;
</sqf>


| [[ctrlMapAnimAdd]], [[ctrlMapAnimCommit]], [[getPosWorld]] |= SEEALSO
|seealso= [[ctrlMapAnimAdd]] [[ctrlMapAnimCommit]] [[getPosWorld]]
 
|  |= MPBEHAVIOUR
____________________________________________________________________________________________
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: Camera Control|mapCenterOnCamera]]
[[Category:Render Time Scope Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 11:34, 19 April 2024

Hover & click on the images for description

Description

Description:
The main syntax enables/disables continuous centering of the main map type control on the camera position. Needs to be executed once.
The alternative syntax centers mini map type control on camera. Needs to be executed each frame (preferably inside an onDraw event handler).
Groups:
GUI Control - Map

Syntax

Syntax:
mainmap mapCenterOnCamera enable
Parameters:
mainmap: Control
enable: Boolean
Return Value:
Nothing

Alternative Syntax

Syntax:
mapCenterOnCamera minimap
Parameters:
minimap: Control
Return Value:
Array in format PositionASL of the map center (camera focus object's model centre's position (see getPosWorld)) in render scope

Examples

Example 1:
// --- Minimap update ((uiNamespace getVariable "BIS_UAV_DISPLAY") displayCtrl 112410) mapCenterOnCamera true;

Additional Information

See also:
ctrlMapAnimAdd ctrlMapAnimCommit getPosWorld

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