camSetTarget: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (example see also) |
m (Bot: Replacing category Scripting Commands Arma 3 with Arma 3: Scripting Commands) |
||
Line 60: | Line 60: | ||
[[Category:Scripting Commands OFP 1.46|CAMSETTARGET]] | [[Category:Scripting Commands OFP 1.46|CAMSETTARGET]] | ||
[[Category:Scripting Commands ArmA|CAMSETTARGET]] | [[Category:Scripting Commands ArmA|CAMSETTARGET]] | ||
[[Category: | [[Category:Command Group: Camera Control|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | ||
[[Category: | [[Category:Arma 3: Scripting Commands]] | ||
[[Category: | [[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]] |
Revision as of 16:52, 3 December 2018
Description
- Description:
- Set the target object or position where the given camera should point at. Needs the call of camCommit to be conducted.
- Groups:
- Uncategorised
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: Uncategorised
- Scripting Commands: Local Effect
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.46
- Scripting Commands ArmA
- Command Group: Camera Control
- Scripting Commands ArmA2
- Arma 3: Scripting Commands
- Scripting Commands Take On Helicopters