camSetRelPos: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(74 intermediate revisions by 16 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|CAMSETRELPOS]]
{{RV|type=command
[[Category:Scripting Commands OFP 1.97|CAMSETRELPOS]]
[[Category:Scripting Commands OFP 1.46|CAMSETRELPOS]]
[[Category:Scripting Commands ArmA|CAMSETRELPOS]]


|game1= ofp
|version1= 1.00


<h2 style="color:#000066">'''''camera'' camSetRelPos ''position'''''</h2>
|game2= ofpe
|version2= 1.00


|game3= arma1
|version3= 1.00


'''Operand types:'''
|game4= arma2
|version4= 1.00


'''camera:''' [[Object]]
|game5= arma2oa
|version5= 1.50


'''position:''' [[Array]]
|game6= tkoh
|version6= 1.00


'''Type of returned value:'''
|game7= arma3
|version7= 0.50


[[Nothing]]
|gr1= Camera Control


'''Description:'''
|arg= local


Set '''camera''' '''position''' relative to current position of current target (see [[camSetTarget]]).
|eff= local


Does not commit changes.
|descr= Sets the position of the given camera relative to its target, set with [[camSetTarget]]. Needs a call to [[camCommit]] to be conducted.{{Feature | important |Since it sets relative position to the target, the [[camSetTarget]] command should be executed already, before [[camSetRelPos]].}}


|s1= camera [[camSetRelPos]] position


'''Example:'''
|p1= camera: [[Object]] - object of type "camera"


_camera '''camSetRelPos''' [10, 15, 5]<br>
|p2= position: [[Array]] format [[Position#PositionRelative|PositionRelative]]
will place the _camera 10 metres to the right of the target, 15 meters directly in front of the target and 5 meters above the target.  Use negative numbers to place the camera behind or to the left of the target.  Note that the location of the camera will depend on the direction the target object is facing.
 
|r1= [[Nothing]]
 
|x1= <sqf>_cam camSetTarget _car;
_cam camSetRelPos [0,10,8];</sqf>
 
|seealso= [[camSetPos]]
}}
 
<dl class="command_description">
 
<dt class="note">Unknown <dd class="note">The location of the camera will depend on the direction the target object is facing.
The camera does not bank with the target (bug?).
 
</dl>

Latest revision as of 22:25, 28 September 2023

Hover & click on the images for description

Description

Description:
Sets the position of the given camera relative to its target, set with camSetTarget. Needs a call to camCommit to be conducted.
Since it sets relative position to the target, the camSetTarget command should be executed already, before camSetRelPos.
Groups:
Camera Control

Syntax

Syntax:
camera camSetRelPos position
Parameters:
camera: Object - object of type "camera"
position: Array format PositionRelative
Return Value:
Nothing

Examples

Example 1:
_cam camSetTarget _car; _cam camSetRelPos [0,10,8];

Additional Information

See also:
camSetPos

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
Unknown
The location of the camera will depend on the direction the target object is facing. The camera does not bank with the target (bug?).