camSetPos: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " 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


|arg= local |Multiplayer Arguments=
|arg= local |Multiplayer Arguments=
Line 11: Line 11:
|eff= local |Multiplayer Effects=
|eff= local |Multiplayer Effects=


| Sets the position of the given camera or seagull (see [[camCreate]]). It is worth mentioning that camera position can also be set with [[setPos]], in which case it would be instant. With [[camSetPos]] it is possible to make smooth position transition in time, defined with [[camCommit]], which is required in this case. |DESCRIPTION=
| Sets the position of the given camera or seagull (see [[camCreate]]). It is worth mentioning that camera position can also be set with [[setPos]], in which case it would be instant. With [[camSetPos]] it is possible to make smooth position transition in time, defined with [[camCommit]], which is required in this case.


| camera '''camSetPos''' position|SYNTAX=
| camera '''camSetPos''' position


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


|p2=  position: [[Array]] - [[Position]] to set the object to |PARAMETER2=
|p2=  position: [[Array]] - [[Position]] to set the object to


| [[Nothing]] |RETURNVALUE=
| [[Nothing]]
   
   
|x1= <code>_cam [[camSetPos]] [2300,1000,130];
|x1= <code>_cam [[camSetPos]] [2300,1000,130];
_cam [[camCommit]] 10;</code> |EXAMPLE1=
_cam [[camCommit]] 10;</code>


| [[camSetRelPos]], [[setPos]] |SEEALSO=
| [[camSetRelPos]], [[setPos]]


}}
}}

Revision as of 01:01, 18 January 2021

Hover & click on the images for description

Description

Description:
Sets the position of the given camera or seagull (see camCreate). It is worth mentioning that camera position can also be set with setPos, in which case it would be instant. With camSetPos it is possible to make smooth position transition in time, defined with camCommit, which is required in this case.
Groups:
Camera Control

Syntax

Syntax:
camera camSetPos position
Parameters:
camera: Object - object of type "camera" or "seagull"
position: Array - Position to set the object to
Return Value:
Nothing

Examples

Example 1:
_cam camSetPos [2300,1000,130]; _cam camCommit 10;

Additional Information

See also:
camSetRelPossetPos

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

Bottom Section