camCommand: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "\{\{Feature *\| *Informative *\| ([^↵]+) *\}\}" to "{{Feature|informative|$1}}")
 
(6 intermediate revisions by 2 users not shown)
Line 47: Line 47:
* {{hl|"speedDefault (x)"}} (number)
* {{hl|"speedDefault (x)"}} (number)
* {{hl|"speedMax (x)"}} (number)
* {{hl|"speedMax (x)"}} (number)
* {{hl|"ceilingHeight (x)"}} (number, in meters)
* {{hl|"ceilingHeight (x)"}} (number, in meters, ASL)
* {{hl|"atl (x)"}} (on/off)
* {{hl|"atl (x)"}} (on/off)
* {{hl|"surfaceSpeed (x)"}} (on/off)
* {{hl|"surfaceSpeed (x)"}} (on/off)
{{!}}}
{{!}}}


{{Feature | Informative | The [[camCommand]] effect is immediate and does not need [[camCommit]]/[[camCommitPrepared]].}}
{{Feature|informative|The [[camCommand]] effect is immediate and does not need [[camCommit]]/[[camCommitPrepared]].}}


|s1= camera [[camCommand]] command
|s1= camera [[camCommand]] command
Line 62: Line 62:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>_camera camCommand "manual on";</code>
|x1= <sqf>_camera camCommand "manual on";</sqf>


|x2= <code>private _camera = "CamCurator" camCreate [0,0,0];
|x2= <sqf>private _camera = "CamCurator" camCreate [0,0,0];
_camera camCommand "maxPitch 89";
_camera camCommand "maxPitch 89";
_camera camCommand "minPitch -89";
_camera camCommand "minPitch -89";
_camera camCommand "speedDefault 0.1";
_camera camCommand "speedDefault 0.1";
_camera [[camCommand]] "speedMax 2";
_camera camCommand "speedMax 2";
_camera [[camCommand]] "ceilingHeight 5000";
_camera camCommand "ceilingHeight 5000";
_camera [[camCommand]] "atl off";
_camera camCommand "atl off";
_camera [[camCommand]] "surfaceSpeed off";</code>
_camera camCommand "surfaceSpeed off";</sqf>


|seealso= [[cameraEffect]] [[camCreate]] [[camCommit]]
|seealso= [[cameraEffect]] [[camCreate]] [[camCommit]]
}}
}}

Latest revision as of 19:12, 15 March 2024

Hover & click on the images for description

Description

Description:
Executes a command on the given camera / actor object. Known commands:
All cameras "Camera" "Seagull" "CamCurator"
  • "manual on"
  • "manual off"
  • "inertia on"
  • "inertia off"
  • "landed" lands the seagull
  • "airborne" makes the seagull fly
  • "maxPitch (x)" (number, in degrees)
  • "minPitch (x)" (number, in degrees)
  • "speedDefault (x)" (number)
  • "speedMax (x)" (number)
  • "ceilingHeight (x)" (number, in meters, ASL)
  • "atl (x)" (on/off)
  • "surfaceSpeed (x)" (on/off)
The camCommand effect is immediate and does not need camCommit/camCommitPrepared.
Groups:
Camera Control

Syntax

Syntax:
camera camCommand command
Parameters:
camera: Object - see camCreate
command: String - see description
Return Value:
Nothing

Examples

Example 1:
_camera camCommand "manual on";
Example 2:
private _camera = "CamCurator" camCreate [0,0,0]; _camera camCommand "maxPitch 89"; _camera camCommand "minPitch -89"; _camera camCommand "speedDefault 0.1"; _camera camCommand "speedMax 2"; _camera camCommand "ceilingHeight 5000"; _camera camCommand "atl off"; _camera camCommand "surfaceSpeed off";

Additional Information

See also:
cameraEffect camCreate camCommit

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