camSetTarget: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \{\{GameCategory\|[a-z]+[0-9]?\|Scripting Commands\}\}" to "")
m (Text replacement - "\|s1= +" to "|s1= ")
Line 30: Line 30:
|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]].
|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]].


|s1= camera [[camSetTarget]] target
|s1= camera [[camSetTarget]] target


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

Revision as of 16:41, 19 June 2021

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:
camCreatecamTarget

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