camSetTarget: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
 
(73 intermediate revisions by 13 users not shown)
Line 1: Line 1:
back to [[Scripting_Reference#C|COMREF]]
{{RV|type=command


<h2 style="color:#000066">'''''camera'' camSetTarget ''position'''''</h2>
|game1= ofp
|version1= 1.00


|game2= ofpe
|version2= 1.00


'''Operand types:'''
|game3= arma1
|version3= 1.00


'''camera:''' [[Object]]
|game4= arma2
|version4= 1.00


'''position:''' [[Array]]
|game5= arma2oa
|version5= 1.50


'''Type of returned value:'''
|game6= tkoh
|version6= 1.00


[[Nothing]]
|game7= arma3
|version7= 0.50


'''Description:'''
|gr1= Camera Control


Set '''camera''' target as '''position''' (format [[Position]]).
|arg= local


Does not commit changes.
|eff= local


|descr= Set the target object or position where the given camera should point at. Needs the call of [[camCommit]] to be conducted. To reset the target use [[objNull]].


'''Example:'''
|s1= camera [[camSetTarget]] target


_camera '''camSetTarget''' [[getPos]] [[player]]
|p1= camera: [[Object]] - object of type "camera"
 
|p2= target: [[Object]] - target location
 
|r1= [[Nothing]]
 
|s2= camera [[camSetTarget]] position
 
|p21= camera: [[Object]] - object of type "camera"
 
|p22= position: [[Array]] - target location - [[Position]]
 
|r2= [[Nothing]]
 
|x1= <sqf>_camera camSetTarget player;</sqf>
 
|x2= <sqf>_camera camSetTarget [2540,1503,26];</sqf>
 
|x3= <sqf>_cam = "camera" camCreate (player modelToWorld [0, 100, 10]);
_cam camSetTarget player;
_cam camSetRelPos [0, 0.5, 1.5];
_cam cameraEffect ["internal", "back"];
_cam camCommit 1;
player setRandomLip true;</sqf>
 
|seealso= [[camCreate]] [[camTarget]]
}}

Latest revision as of 11:21, 13 May 2022

Hover & click on the images for description

Description

Description:
Set the target object or position where the given camera should point at. Needs the call of camCommit to be conducted. To reset the target use objNull.
Groups:
Camera Control

Syntax

Syntax:
camera camSetTarget target
Parameters:
camera: Object - object of type "camera"
target: Object - target location
Return Value:
Nothing

Alternative Syntax

Syntax:
camera camSetTarget position
Parameters:
camera: Object - object of type "camera"
position: Array - target location - Position
Return Value:
Nothing

Examples

Example 1:
_camera camSetTarget player;
Example 2:
_camera camSetTarget [2540,1503,26];
Example 3:
_cam = "camera" camCreate (player modelToWorld [0, 100, 10]); _cam camSetTarget player; _cam camSetRelPos [0, 0.5, 1.5]; _cam cameraEffect ["internal", "back"]; _cam camCommit 1; player setRandomLip true;

Additional Information

See also:
camCreate camTarget

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