speed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add example)
 
(48 intermediate revisions by 5 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). |= Description
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| [[Number]] <nowiki>=</nowiki> '''speed''' object |= Syntax
|game4= arma2
|version4= 1.00


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


| [[Number]] |= Return value
|game6= tkoh
____________________________________________________________________________________________
|version6= 1.00
 
|x1= <code>? (speed _truck1) ><nowiki>=</nowiki> 100 : [[hint]] "You're going too fast!"</code> |= Example 1
____________________________________________________________________________________________


| [[limitSpeed]] |= See also
|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.96|SPEED]]
[[Category:Scripting Commands OFP 1.46|SPEED]]
[[Category:Scripting Commands ArmA|SPEED]]
[[Category:Scripting Commands ArmA2|{{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