camCreate: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "_{10,} " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("serv...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| ofp |Game name=
| ofp


|1.00|Game version=
|1.00


|gr1 = Camera Control |GROUP1=
|gr1 = Camera Control


|eff= local |Effects in MP=
|eff= local |Effects in MP=
Line 14: Line 14:
* Other objects can be created this way, but vehicles created with [[camCreate]] cannot be entered
* Other objects can be created this way, but vehicles created with [[camCreate]] cannot be entered
* Any unit created with [[camCreate]] will remain static
* Any unit created with [[camCreate]] will remain static
* Unlike [[createVehicle]], objects are created exactly at the given position, without consideration of the surrounding objects}} |Description=
* Unlike [[createVehicle]], objects are created exactly at the given position, without consideration of the surrounding objects}}


| type [[camCreate]] position|Syntax=
| type [[camCreate]] position


|p1= type: [[String]] - camera type, one of the following:
|p1= type: [[String]] - camera type, one of the following:
Line 24: Line 24:
* "camcurator" (Since Arma 3 Zeus)
* "camcurator" (Since Arma 3 Zeus)
* "crowe" (crow - Arma 3)
* "crowe" (crow - Arma 3)
* or any vehicle class suitable to be spawned with cam |Parameter 1=
* or any vehicle class suitable to be spawned with cam


|p2= position: [[Array]] - format [[PositionAGL]] - position to create the object at |Parameter 2=
|p2= position: [[Array]] - format [[PositionAGL]] - position to create the object at


| [[Object]] - the created camera |Return value=
| [[Object]] - the created camera
   
   
|x1= <code>_cam = "camera" [[camCreate]] ([[ASLToAGL]] [[eyePos]] [[player]]);</code> |Example 1=
|x1= <code>_cam = "camera" [[camCreate]] ([[ASLToAGL]] [[eyePos]] [[player]]);</code>


|x2= <code>_flr = "flare" [[camCreate]] ([[position]] _myPlane); {{codecomment|// works too}}</code> |Example 2=
|x2= <code>_flr = "flare" [[camCreate]] ([[position]] _myPlane); {{codecomment|// works too}}</code>


|mp= camCreated objects are only visible locally (meaning they are client-side effects). |MP=
|mp= camCreated objects are only visible locally (meaning they are client-side effects).


| [[camCommand]], [[camDestroy]], [[camSetFocus]], [[camCommit]], [[setPiPEffect]], [[createVehicle]], [[createUnit]], [[showCinemaBorder]], [[cameraEffect]], [[cameraEffectEnableHUD]] |See also=
| [[camCommand]], [[camDestroy]], [[camSetFocus]], [[camCommit]], [[setPiPEffect]], [[createVehicle]], [[createUnit]], [[showCinemaBorder]], [[cameraEffect]], [[cameraEffectEnableHUD]]
}}
}}



Revision as of 01:03, 18 January 2021

Hover & click on the images for description

Description

Description:
Create a camera or a seagull object on the given position. The creation happens immediately and doesn't wait for camCommit.
Among other commands, cameraEffect must be used to enter the camera's view and camDestroy to delete the created camera. See also Camera Control.

  • Other objects can be created this way, but vehicles created with camCreate cannot be entered
  • Any unit created with camCreate will remain static
  • Unlike createVehicle, objects are created exactly at the given position, without consideration of the surrounding objects
Multiplayer:
camCreated objects are only visible locally (meaning they are client-side effects).
Groups:
Camera Control

Syntax

Syntax:
type camCreate position
Parameters:
type: String - camera type, one of the following:
  • "camera"
  • "seagull" (a crow in Arma 2)
  • "camconstruct"
  • "camcurator" (Since Arma 3 Zeus)
  • "crowe" (crow - Arma 3)
  • or any vehicle class suitable to be spawned with cam
position: Array - format PositionAGL - position to create the object at
Return Value:
Object - the created camera

Examples

Example 1:
_cam = "camera" camCreate (ASLToAGL eyePos player);
Example 2:
_flr = "flare" camCreate (position _myPlane); // works too

Additional Information

See also:
camCommandcamDestroycamSetFocuscamCommitsetPiPEffectcreateVehiclecreateUnitshowCinemaBordercameraEffectcameraEffectEnableHUD

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