setVectorDirAndUp: Difference between revisions
Jump to navigation
Jump to search
m (+ Note about camera) |
(Info on quirks of the command) |
||
Line 28: | Line 28: | ||
<dd class="notedate">Posted on March 16, 2008 - 09:50</dd> | <dd class="notedate">Posted on March 16, 2008 - 09:50</dd> | ||
<dt class="note">'''[[User:Str|Str]]'''</dt><dd class="note">Command can be also used to rotate camera in all three axis (which also mean it's possible to set camera bank).</dd> | <dt class="note">'''[[User:Str|Str]]'''</dt><dd class="note">Command can be also used to rotate camera in all three axis (which also mean it's possible to set camera bank).</dd> | ||
<dd class="notedate">Posted on May 9, 2008 - 09:32</dd> | |||
<dt class="note">'''[[User:General Barron|General Barron]]'''</dt><dd class="note">The object's vectorDir can only control its pitch, while its vectorUp can only control its bank. To set an object's yaw (direction), use the setdir command, before using this command. | |||
You would think vectorUp would control pitch as well, but any pitch that would be set due to vectorUp is ignored. The same is true with vectorDir and yaw; any vectorDir that would adjust yaw is also ignored. If this doesn't make sense, try to visualize it with a box or soda can. | |||
This command does NOT work with values relative to a unit, but rather it works with world vectors (think world coordinates as opposed to model coordinates). As a result, this command can be difficult to use in many situations, because the input values needed to get a certain pitch / bank for an object vary, depending on what direction the object is facing (yaw). | |||
A function to set an object's pitch / bank can be found [http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?s=e219d8da3fd34cabd2501a118a297257;act=ST;f=71;t=73312 here]</dd> | |||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 00:56, 9 May 2008
Description
- Description:
- Set object's orientation (given as direction and up vector).
- Groups:
- Uncategorised
Syntax
- Syntax:
- vehicle setVectorDirAndUp [[x, z, y],[x, z, y]]
- Parameters:
- vehicle: Object
- [[x, z, y],[x, z, y]]: Array Numbers
- Return Value:
- Nothing
Examples
- Examples:
- Example needed
Additional Information
- See also:
- vectorUpsetVectorUpvectorDirsetVectorDir
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
- Posted on March 16, 2008 - 09:50
- Str
- Command can be also used to rotate camera in all three axis (which also mean it's possible to set camera bank).
- Posted on May 9, 2008 - 09:32
- General Barron
- The object's vectorDir can only control its pitch, while its vectorUp can only control its bank. To set an object's yaw (direction), use the setdir command, before using this command. You would think vectorUp would control pitch as well, but any pitch that would be set due to vectorUp is ignored. The same is true with vectorDir and yaw; any vectorDir that would adjust yaw is also ignored. If this doesn't make sense, try to visualize it with a box or soda can. This command does NOT work with values relative to a unit, but rather it works with world vectors (think world coordinates as opposed to model coordinates). As a result, this command can be difficult to use in many situations, because the input values needed to get a certain pitch / bank for an object vary, depending on what direction the object is facing (yaw). A function to set an object's pitch / bank can be found here