speed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:Scripting_Commands_Take_On_Helicopters" to "[[Category:Scripting Commands Take On Helicopters")
(Add example)
 
(38 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1= 1.00


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


| Object speed (in km/h). Returns relative speed of given object along Y axis. An equivalent to:<br><br><tt>3.6 * ([[velocityModelSpace]] _obj [[select]] 1)</tt> |DESCRIPTION=
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| '''speed''' object |SYNTAX=
|game4= arma2
|version4= 1.00


|p1= object: [[Object]] |PARAMETER1=
|game5= arma2oa
|version5= 1.50


| [[Number]] |RETURNVALUE=
|game6= tkoh
____________________________________________________________________________________________
|version6= 1.00
 
|x1= <code>[[if]] ([[speed]] _truck1 >= 100) [[then]] {[[hint]] "You're going too fast!"};</code> |EXAMPLE1=
____________________________________________________________________________________________


| [[velocity]], [[setVelocity]], [[velocityModelSpace]], [[setVelocityModelSpace]], [[setVelocityTransformation]], [[limitSpeed]] |SEEALSO=
|game7= arma3
|version7= 0.50


}}
|gr1= Object Manipulation
 
|descr= Object speed (in km/h). Returns relative speed of given object along Y axis. An equivalent to: <sqf inline>3.6 * (velocityModelSpace _obj select 1)</sqf>
 
|s1= [[speed]] object
 
|p1= object: [[Object]]
 
|r1= [[Number]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>if (speed _truck1 >= 100) then { hint "You're going too fast!" };</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x2= <sqf>if (speed objectParent player) < 0) then { hint "You're going reverse!" };</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[velocity]] [[setVelocity]] [[velocityModelSpace]] [[setVelocityModelSpace]] [[setVelocityTransformation]] [[limitSpeed]]
[[Category:Scripting Commands|SPEED]]
}}
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|SPEED]]
[[Category:Scripting Commands OFP 1.46|SPEED]]
[[Category:Scripting Commands ArmA|SPEED]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 18:52, 18 September 2023

Hover & click on the images for description

Description

Description:
Object speed (in km/h). Returns relative speed of given object along Y axis. An equivalent to: 3.6 * (velocityModelSpace _obj select 1)
Groups:
Object Manipulation

Syntax

Syntax:
speed object
Parameters:
object: Object
Return Value:
Number

Examples

Example 1:
if (speed _truck1 >= 100) then { hint "You're going too fast!" };
Example 2:
if (speed objectParent player) < 0) then { hint "You're going reverse!" };

Additional Information

See also:
velocity setVelocity velocityModelSpace setVelocityModelSpace setVelocityTransformation limitSpeed

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