setVectorUp: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= *\[\[([^ ]+)\]\], \[\[([^ ]+)\]\]" to "|seealso= $1 $2")
m (Some wiki formatting)
(13 intermediate revisions by the same user not shown)
Line 35: Line 35:


|x1= Turn object upside down:
|x1= Turn object upside down:
<code>_obj [[setVectorUp]] [0,0,-1];</code>
<sqf>_obj setVectorUp [0,0,-1];</sqf>
 
|x2= Align object with the terrain underneath:
|x2= Align object with the terrain underneath:
<code>_obj [[setVectorUp]] [[surfaceNormal]] [[position]] _obj;</code>
<sqf>_obj setVectorUp surfaceNormal position _obj;</sqf>


|seealso= [[vectorDir]] [[vectorUp]] [[setVectorDir]] [[setVectorDirAndUp]] [[vectorDiff]] [[vectorAdd]] [[vectorMultiply]] [[vectorCrossProduct]] [[vectorDistance]] [[vectorMagnitudeSqr]] [[vectorDistanceSqr]] [[vectorCos]] [[vectorMagnitude]] [[vectorDotProduct]] [[vectorNormalized]] [[vectorFromTo]]
|seealso= [[vectorDir]] [[vectorUp]] [[setVectorDir]] [[setVectorDirAndUp]] [[vectorDiff]] [[vectorAdd]] [[vectorMultiply]] [[vectorCrossProduct]] [[vectorDistance]] [[vectorMagnitudeSqr]] [[vectorDistanceSqr]] [[vectorCos]] [[vectorMagnitude]] [[vectorDotProduct]] [[vectorNormalized]] [[vectorFromTo]]
Line 46: Line 47:
|timestamp= 20090303210700
|timestamp= 20090303210700
|text=  [[setVectorUp]] can only influence an object's bank. It can not influence pitch. Example:
|text=  [[setVectorUp]] can only influence an object's bank. It can not influence pitch. Example:
[[player]] [[setVectorUp]] [0,1,0]
<sqf>player setVectorUp [0,1,0]</sqf>
If the player is facing 0 degrees (north), then this will do NOTHING.<br>
If the player is facing 0 degrees (north), then this will do NOTHING.<br>
If the player is facing 90 degrees (east), then this will make him bank 90 degrees to his left.
If the player is facing 90 degrees (east), then this will make him bank 90 degrees to his left.
Line 67: Line 68:
|timestamp= 20131003090400
|timestamp= 20131003090400
|text= It is possible to change both pitch and bank of an object ([[surfaceNormal]] application for instance). Assuming an ammo box in the following example is facing North (default direction is 0):
|text= It is possible to change both pitch and bank of an object ([[surfaceNormal]] application for instance). Assuming an ammo box in the following example is facing North (default direction is 0):
<code>_ammobox [[setVectorUp]] [0,1,0]; {{cc|box is pitched 90 degrees forward}}
<sqf>_ammobox setVectorUp [0,1,0]; // box is pitched 90 degrees forward
_ammobox [[setVectorUp]] [1,0,0]; {{cc|box is banked 90 degrees to the right}}</code>
_ammobox setVectorUp [1,0,0]; // box is banked 90 degrees to the right</sqf>
However the above will stop working as soon as you attach the box to something. The following trick however will work in this case:
However the above will stop working as soon as you attach the box to something. The following trick however will work in this case:
<code>_ammobox [[attachTo]] [<nowiki/>[[player]], [0,2,1]];
<sqf>
_ammobox [[setVectorUp]] [0,0.99,0.01]; {{cc|box is pitched ~90 degrees forward}}
_ammobox attachTo [player, [0,2,1]];
_ammobox [[setVectorUp]] [0.99,0,0.01]; {{cc|box is banked ~90 degrees to the right}}</code>
_ammobox setVectorUp [0,0.99,0.01]; // box is pitched ~90 degrees forward
_ammobox setVectorUp [0.99,0,0.01]; // box is banked ~90 degrees to the right
</sqf>
}}
}}

Revision as of 21:20, 13 May 2022

Hover & click on the images for description

Description

Description:
Set object's up vector. Direction of the object remain unchanged. Default object's vectorUp is [0,0,1].
Groups:
Math - Vectors

Syntax

Syntax:
object setVectorUp vectorUp
Parameters:
object: Object
vectorUp: Array format Vector (normalised)
Return Value:
Nothing

Examples

Example 1:
Turn object upside down:
_obj setVectorUp [0,0,-1];
Example 2:
Align object with the terrain underneath:
_obj setVectorUp surfaceNormal position _obj;

Additional Information

See also:
vectorDir vectorUp setVectorDir setVectorDirAndUp vectorDiff vectorAdd vectorMultiply vectorCrossProduct vectorDistance vectorMagnitudeSqr vectorDistanceSqr vectorCos vectorMagnitude vectorDotProduct vectorNormalized vectorFromTo

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
General Barron - c
Posted on Mar 03, 2009 - 21:07 (UTC)
setVectorUp can only influence an object's bank. It can not influence pitch. Example:
player setVectorUp [0,1,0]
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 bank 90 degrees to his left.
Kronzky - c
Posted on Mar 22, 2007 - 05:07 (UTC)
An in-depth discussion on the concept of vectors is available here.
Str - c
Posted on Mar 16, 2008 - 09:49 (UTC)
Command can be also used to rotate camera in all three axis (which also mean it is possible to set camera bank).
Killzone_Kid - c
Posted on Oct 03, 2013 - 09:04 (UTC)
It is possible to change both pitch and bank of an object (surfaceNormal application for instance). Assuming an ammo box in the following example is facing North (default direction is 0):
_ammobox setVectorUp [0,1,0]; // box is pitched 90 degrees forward _ammobox setVectorUp [1,0,0]; // box is banked 90 degrees to the right
However the above will stop working as soon as you attach the box to something. The following trick however will work in this case:
_ammobox attachTo [player, [0,2,1]]; _ammobox setVectorUp [0,0.99,0.01]; // box is pitched ~90 degrees forward _ammobox setVectorUp [0.99,0,0.01]; // box is banked ~90 degrees to the right