setVectorDir
Jump to navigation
Jump to search
Description
- Description:
- Set object's direction vector. Up vector will remain unchanged.
- Groups:
- Math - Vectors
Syntax
Examples
- Example 1:
player setVectorDir [5,6,1];
Additional Information
- See also:
- vectorDirvectorUpsetVectorUpsetVectorDirAndUpvectorDiffvectorAddvectorMultiplyvectorCrossProductvectorDistancevectorMagnitudeSqrvectorDistanceSqrvectorCosvectorMagnitudevectorDotProductvectorNormalizedvectorFromTo
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
- Posted on March 16, 2008 - 09:50
- Str
- Command can be also used to rotate camera in all three axis.
- Posted on 21:06, 3 March 2009 (CET)
- General Barron
-
setVectorDir can only influence an object's pitch. It can not influence bank. Example:
player setVectorDir [0,0,1]
- If the player is facing 0 degrees (north), then this will do NOTHING.
- If the player is facing 90 degrees (east), then this will make him pitch 90 degrees up.
- Posted on August 17, 2015 - 03:27 (UTC)
- DreadedEntity
-
In Arma 3, setVectorDir does not control an object's pitch or bank, in fact, it is not possible to change either of those solely using setVectorDir. This command can only affect horizontal rotation along the x-plane, unless an object first has it is vectorUp changed to something other than [0,0,1]. Correct input to setVectorDir should be calculated using the trigonometric functions sin and cos.
examples:
0 degrees (north) player setVectorDir [ sin 0, //equals 0 cos 0, //equals 1 1 ]; 45 degrees (north-east) player setVectorDir [ sin 45, //equals 0.707 cos 45, //equals 0.707 1 ];
If you are doing trigonometric calculations, it may be better to use setVectorDir rather than setDir, since sine and cosine have already been calculated and will not need to be re-calculated (also, setDir probably uses setVectorDir anyway.)
Categories:
- Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Math - Vectors
- Scripting Commands: Global Effect
- Operation Flashpoint: Elite: Scripting Commands