camSetTarget: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]2(\|.*)]]" to "{{GameCategory|arma2|Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
| ofp |Game name= | | ofp |Game name= | ||
Line 13: | Line 12: | ||
|eff= local |Multiplayer Effects= | |eff= local |Multiplayer Effects= | ||
| 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]]. |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]]. |DESCRIPTION= | ||
| camera [[camSetTarget]] target |SYNTAX= | | camera [[camSetTarget]] target |SYNTAX= | ||
Line 34: | Line 31: | ||
|r2= [[Nothing]] |RETURNVALUE2= | |r2= [[Nothing]] |RETURNVALUE2= | ||
|x1= <code>_camera [[camSetTarget]] [[player]];</code> |EXAMPLE1= | |x1= <code>_camera [[camSetTarget]] [[player]];</code> |EXAMPLE1= | ||
Line 46: | Line 42: | ||
_cam [[camCommit]] 1; | _cam [[camCommit]] 1; | ||
[[player]] [[setRandomLip]] [[true]];</code> |EXAMPLE3= | [[player]] [[setRandomLip]] [[true]];</code> |EXAMPLE3= | ||
| [[camCreate]], [[camTarget]] |SEEALSO= | | [[camCreate]], [[camTarget]] |SEEALSO= |
Revision as of 00:24, 17 January 2021
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
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
Notes
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Camera Control
- Scripting Commands: Local Effect
- Scripting Commands OFP 1.46
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 3: Scripting Commands
- Take On Helicopters: Scripting Commands