setVectorUp: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(85 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= ofpe
|version1= 1.00


|1.00|= Game version
|game2= arma1
|version2= 1.00


|arg=local |=  
|game3= arma2
|eff=global |=
|version3= 1.00
____________________________________________________________________________________________


| Set object's up vector. Direction vector will remain unchanged. Default object's [[vectorUp]] is [0,0,1].
|game4= arma2oa
|version4= 1.50


In Multiplayer, [[setVectorUp]] must be executed on the machine where the object it applied to is [[local]]. |= Description
|game5= tkoh
____________________________________________________________________________________________
|version5= 1.00


| object '''setVectorUp''' [x, y, z] |= Syntax
|game6= arma3
|version6= 0.50


|p1= object: [[Object]] |= Parameter 1
|arg=local
|eff=global


|p2= [x, y, z]: [[Array]] |= Parameter 2
|gr2= Math - Vectors


| [[Nothing]] |= Return value
|descr= Set object's up vector. Direction of the object remain unchanged. Default object's [[vectorUp]] is [0,0,1].
____________________________________________________________________________________________


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


|[[vectorUp]], [[setVectorDir]], [[vectorDir]], [[setVectorDirAndUp]], [[surfaceNormal]]  |= See also
|p1= object: [[Object]]


}}
|p2= vectorUp: [[Array]] format [[Vector3D|Vector]] (normalised)


<h3 style="display:none">Notes</h3>
|r1= [[Nothing]]
<dl class="command_description">
<!-- Note Section BEGIN -->


setVectorUp can only influence an object's bank. It can not influence pitch. Example:
|x1= Turn object upside down:
    player setVectorUp [0,1,0]
<sqf>_obj setVectorUp [0,0,-1];</sqf>
    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.
--[[User:General Barron|General Barron]] 21:07, 3 March 2009 (CET)


<dd class="notedate">Posted on March 22, 2007 - 05:07
|x2= Align object with the terrain underneath:
<dt class="note">'''[[User:Kronzky|Kronzky]]'''<dd class="note">
<sqf>_obj setVectorUp surfaceNormal getPosASL _obj;</sqf>
An in-depth discussion on the concept of vectors is available [http://forums.bistudio.com/showthread.php?t=50914 here].


<dd class="notedate">Posted on March 16, 2008 - 09:49
|seealso= [[vectorDir]] [[vectorUp]] [[setVectorDir]] [[setVectorDirAndUp]] [[vectorDiff]] [[vectorAdd]] [[vectorMultiply]] [[vectorCrossProduct]] [[vectorDistance]] [[vectorMagnitudeSqr]] [[vectorDistanceSqr]] [[vectorCos]] [[vectorMagnitude]] [[vectorDotProduct]] [[vectorNormalized]] [[vectorFromTo]]
<dt class="note">'''[[User:Str|Str]]'''<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 class="notedate">Posted on October 3, 2013
{{Note
<dt class="note">'''[[User:Killzone_Kid|Killzone_Kid]]'''<dd class="note">
|user= General Barron
When applying command to an object it is possible to change either pitch or bank of the object as well (assuming object is facing North):
|timestamp= 20090303210700
<code>_ammobox [[setVectorUp]] [0,1,0]; //box is pitched 90 degrees forward
|text= [[setVectorUp]] can only influence an object's bank. It can not influence pitch. Example:
_ammobox [[setVectorUp]] [1,0,0]; //box is banked 90 degrees to the right</code>
<sqf>player setVectorUp [0,1,0]</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:
If the player is facing 0 degrees (north), then this will do NOTHING.<br>
<code>_ammobox [[attachTo]] <nowiki>[</nowiki>[[player]], [0,2,1]];
If the player is facing 90 degrees (east), then this will make him bank 90 degrees to his left.
_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</code>


{{Note
|user= Kronzky
|timestamp= 20070322050700
|text= An in-depth discussion on the concept of vectors is available {{Link|link= http://forums.bistudio.com/showthread.php?t=50914|text= here}}.
}}


<!-- Note Section END -->
{{Note
</dl>
|user= Str
|timestamp= 20080316094900
|text= Command can be also used to rotate camera in all three axis (which also mean it is possible to set camera bank).
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
[[Category:Scripting Commands|SETVECTORUP]]
|user= Killzone_Kid
[[Category:Scripting Commands OFP Elite |SETVECTORUP]]
|timestamp= 20131003090400
[[Category:Scripting Commands ArmA|SETVECTORUP]]
|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):
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
<sqf>_ammobox setVectorUp [0,1,0]; // box is pitched 90 degrees forward
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
_ammobox setVectorUp [1,0,0]; // box is banked 90 degrees to the right</sqf>
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
However the above will stop working as soon as you attach the box to something. The following trick however will work in this case:
<sqf>
_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
</sqf>
}}

Latest revision as of 15:25, 8 November 2023

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 getPosASL _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