wingsForcesRTD: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (format)
m (Text replacement - ">Posted on March ([0-9]{2})[ a-zA-Z]*, ([0-9]{4})" to ">Posted on $2-03-$1")
 
(40 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| toh |= Game name
|game1= tkoh
|version1= 1.00


|1.00|= Game version
|game2= arma3
|version2= 1.34


|game2= arma 3 |=
|gr1= RTD


|version2=1.34|=
|descr= {{Feature|afm}} Returns force produced by wings.
____________________________________________________________________________________________


| Returns force produced by wings. |= Description
|s1= [[wingsForcesRTD]] RTD_helicopter
____________________________________________________________________________________________


| '''wingsForcesRTD''' RTD_helicopter |= Syntax
|p1= RTD_helicopter: [[Object]]
|p1= RTD_helicopter: [[Object]] |= Parameter1


| [[Array]] |= RETURNVALUE
|r1= [[Array]]


|x1= <sqf>_wingForce = wingsForcesRTD _rtdHelo;</sqf>


|x1= <code>_wingForce = [[wingsForcesRTD]] _rtdHelo</code>|= EXAMPLE1
|seealso= [[isObjectRTD]] [[enginesRpmRTD]] [[enginesTorqueRTD]] [[airDensityRTD]] [[wind]] [[windDir]] [[windStr]]
 
____________________________________________________________________________________________
 
| [[isObjectRTD]], [[enginesRpmRTD]], [[enginesTorqueRTD]], [[airDensityRTD]], [[wind]], [[windDir]], [[windStr]] |= SEEALSO
 
|  |= MPBEHAVIOUR
____________________________________________________________________________________________
}}
}}


<h3 style='display:none'>Notes</h3>
<dl class="command_description">
<dl class='command_description'>
<!-- Note Section BEGIN -->


<!-- Note Section END -->
<dt></dt>
</dl>
<dd class="notedate">Posted on 2015-03-19 - 20:37 (UTC)</dd>
 
<h3 style='display:none'>Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Environment|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: RTD|{{uc:{{PAGENAME}}}}]]
 
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on March 19, 2015 - 20:37 (UTC)</dd>
<dt class="note">[[User:Douggem|Douggem]]</dt>
<dt class="note">[[User:Douggem|Douggem]]</dt>
<dd class="note">
<dd class="note">
Advanced helicopter flight model MUST be enabled for this function to work, otherwise it returns an empty array.
Advanced helicopter flight model MUST be enabled for this function to work, otherwise it returns an empty array.
Returns a 3x3 two-dimensional array.  In the editor while climbing in a little bird, it returned this:  
Returns a 3x3 two-dimensional array.  In the editor while climbing in a little bird, it returned this:  
[ [ 0.3993577, 11.72865, -30.21434 ], [ 0.3053164, 11.17272, -30.17695 ], [ 94.33984, 51.3513, -40.4908 ] ]
<sqf>[[0.3993577, 11.72865, -30.21434], [0.3053164, 11.17272, -30.17695], [94.33984, 51.3513, -40.4908]]</sqf>
</dd>
</dd>
</dl>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 00:06, 14 May 2023

Hover & click on the images for description

Description

Description:
Advanced Helicopter Flight Model
For this command to have any effect, the Advanced Flight Model (AFM) has to be enabled. AFM status can be checked with difficultyEnabledRTD.
Returns force produced by wings.
Groups:
RTD

Syntax

Syntax:
wingsForcesRTD RTD_helicopter
Parameters:
RTD_helicopter: Object
Return Value:
Array

Examples

Example 1:
_wingForce = wingsForcesRTD _rtdHelo;

Additional Information

See also:
isObjectRTD enginesRpmRTD enginesTorqueRTD airDensityRTD wind windDir windStr

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
Posted on 2015-03-19 - 20:37 (UTC)
Douggem
Advanced helicopter flight model MUST be enabled for this function to work, otherwise it returns an empty array. Returns a 3x3 two-dimensional array. In the editor while climbing in a little bird, it returned this:
[[0.3993577, 11.72865, -30.21434], [0.3053164, 11.17272, -30.17695], [94.33984, 51.3513, -40.4908]]