velocity: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
 
(38 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofpr |= Game name
|game1= ofp
|version1= 1.80


|1.8|= Game version
|game2= ofpe
____________________________________________________________________________________________
|version2= 1.00


| Return velocity (speed vector) of [[Object#Unit|Unit]] as an array with format [x, z, y]. Units are in metres per second. |= Description
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| [[Array]] <nowiki>=</nowiki> '''velocity''' vehicleName |= Syntax
|game4= arma2
|version4= 1.00


|p1= vehicleName: [[Object]] |= Parameter 1
|game5= arma2oa
|version5= 1.50


| [[Array]] |= Return value
|game6= tkoh
____________________________________________________________________________________________
|version6= 1.00
 
|x1= <code>vector <nowiki>=</nowiki> '''velocity''' jeep</code> |= Example 1
|x2= <code>? ('''velocity''' _plane1 [[select]] 2) > 50 : [[hint]] "Aircraft is climbing up too fast!"</code> |= Example 2
____________________________________________________________________________________________


| [[setVelocity]] [[setVelocityTransformation]] |= See also
|game7= arma3
|version7= 0.50


}}
|gr1= Object Manipulation
 
|descr= Returns the velocity of the object as vector in m/s.
 
|s1= [[velocity]] object
 
|p1= object: [[Object]]


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


<!-- Note Section END -->
|x1= <sqf>_vector = velocity jeep;</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|x2= <sqf>if ((velocity _plane1 select 2) > 50) then { hint "Aircraft is climbing up too fast!"; };</sqf>


[[Category:Scripting Commands|VELOCITY]]
|seealso= [[setVelocity]] [[velocityModelSpace]] [[setVelocityModelSpace]] [[setVelocityTransformation]] [[speed]]
[[Category:Scripting Commands OFP 1.96|VELOCITY]]
}}
[[Category:Scripting Commands ArmA|VELOCITY]]
[[Category:Scripting Commands ArmA2|VELOCITY]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 11:25, 13 May 2022

Hover & click on the images for description

Description

Description:
Returns the velocity of the object as vector in m/s.
Groups:
Object Manipulation

Syntax

Syntax:
velocity object
Parameters:
object: Object
Return Value:
Array - Vector3D

Examples

Example 1:
_vector = velocity jeep;
Example 2:
if ((velocity _plane1 select 2) > 50) then { hint "Aircraft is climbing up too fast!"; };

Additional Information

See also:
setVelocity velocityModelSpace setVelocityModelSpace setVelocityTransformation speed

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