camSetRelPos: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " {2,}\}\}" to " }}")
mNo edit summary
 
(25 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


| ofp
|game1= ofp
|version1= 1.00


|1.00
|game2= ofpe
|version2= 1.00


|gr1 = Camera Control
|game3= arma1
|version3= 1.00
 
|game4= arma2
|version4= 1.00
 
|game5= arma2oa
|version5= 1.50
 
|game6= tkoh
|version6= 1.00
 
|game7= arma3
|version7= 0.50
 
|gr1= Camera Control


|arg= local
|arg= local
Line 11: Line 28:
|eff= local
|eff= local


| Sets the position of the given camera relative to its target, set with [[camSetTarget]]. Needs a call to [[camCommit]] to be conducted.<br><br>{{Important |Since it sets relative position to the target, the [[camSetTarget]] command should be executed already, before [[camSetRelPos]].}}
|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]].}}


| camera '''camSetRelPos''' position
|s1= camera [[camSetRelPos]] position


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


|p2= position: [[Array]] - format [[PositionRelative]]
|p2= position: [[Array]] format [[Position#PositionRelative|PositionRelative]]


| [[Nothing]]
|r1= [[Nothing]]
 
|x1= <code>_cam [[camSetTarget]] _car;
_cam [[camSetRelPos]] [0,10,8];</code>


| [[camSetPos]]
|x1= <sqf>_cam camSetTarget _car;
_cam camSetRelPos [0,10,8];</sqf>
 
|seealso= [[camSetPos]]
}}
}}


<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->


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


<!-- Note Section END -->
</dl>
</dl>
[[Category:Scripting Commands|CAMSETRELPOS]]
[[Category:Scripting Commands OFP 1.99|CAMSETRELPOS]]
[[Category:Scripting Commands OFP 1.96|CAMSETRELPOS]]
[[Category:Scripting Commands OFP 1.46|CAMSETRELPOS]]
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

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?).