BIS fnc zoomLock: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:Function Group: [a-zA-Z0-9_: ]+(\|\{\{[a-zA-Z0-9_: ]+\}\})?\]\]" to " ")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects? in MP|Multiplayer Effects(...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.78|Game version=
|1.78


|gr1 = Map and Markers |GROUP1=
|gr1 = Map and Markers


<!---|arg= local |Multiplayer Arguments=--->
<!---|arg= local |Multiplayer Arguments=--->


|eff= local |Multiplayer Effects=
|eff= local


| Locks the camera in place when the map is open. |Description=
| Locks the camera in place when the map is open.


|cameraCenter call [[BIS_fnc_zoomLock]]|Syntax=
|cameraCenter call [[BIS_fnc_zoomLock]]


|p1= cameraCenter: [[Position2D]] - (default [0, 0]) position where the camera should be placed and locked |Parameter 1=
|p1= cameraCenter: [[Position2D]] - (default [0, 0]) position where the camera should be placed and locked


|[[Nothing]]|Return value=
|[[Nothing]]


|x1= <code><nowiki>[</nowiki>[0, 0]] [[call]] [[BIS_fnc_zoomLock]];</code>|Example 1=
|x1= <code><nowiki>[</nowiki>[0, 0]] [[call]] [[BIS_fnc_zoomLock]];</code>


|exec= call |Execution=
|exec= call


| [[BIS_fnc_zoomUnlock]], [[BIS_fnc_zoomLockEH]]|See also=
| [[BIS_fnc_zoomUnlock]], [[BIS_fnc_zoomLockEH]]
}}
}}



Revision as of 11:10, 18 January 2021

Hover & click on the images for description

Description

Description:
Locks the camera in place when the map is open.
Execution:
call
Groups:
Map and Markers

Syntax

Syntax:
cameraCenter call BIS_fnc_zoomLock
Parameters:
cameraCenter: Position2D - (default [0, 0]) position where the camera should be placed and locked
Return Value:
Nothing

Examples

Example 1:
[[0, 0]] call BIS_fnc_zoomLock;

Additional Information

See also:
BIS_fnc_zoomUnlockBIS_fnc_zoomLockEH

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 April 22, 2020 - 16:29 (UTC)
Poslovitch
On Arma 3 1.98.146303, closing the map after running this function does not unlock the map's camera. One must use BIS_fnc_zoomUnlock to allow the player to move the camera again.