There's a new Dragon in the skys [Released to SOH 18 Sep 21]

it took me some time to do it


Glkguig.jpg


kxDxtVt.jpg


Bnu3hGj.jpg


aoJlKdh.jpg


wTV9p7a.jpg
 
Throttle lever problems after SU8

If anyone else is having problems with the throttles and VC throttle levers not responding to throttle quadrant lever movement, try this fix:

Open the model folder in: dh89-dragonrapide\SimObjects\Airplanes\Rapide\model

Open the vc.xml file with Notepad or Notepad++

Search for THROTTLE1_

This should find the following section:

:1 (>K:THROTTLE1_DECR_SMALL)
quit

:2 (>K:THROTTLE1_INCR_SMALL)

Add AXIS_ in front of THROTTLE1 on each line as follows:

:1 (>K:AXIS_THROTTLE1_DECR_SMALL)
quit

:2 (>K:AXIS_THROTTLE1_INCR_SMALL)

Now search for THROTTLE2_ and add AXIS_ as above, then save and close vc.xml.

Next, open the Rapide.xml file with Notepad or Notepad++

Search for THROTTLE1_

This should find the following line:

<EventID>THROTTLE1_SET</EventID>

Again, add AXIS_ in front of THROTTLE1:

<EventID>AXIS_THROTTLE1_SET</EventID>

Now search for THROTTLE2_ and add AXIS_ as above, then save and close Rapide.xml.
 
Interesting. No problems with the throttles here, both work fine using click-and-drag, mouse wheel or hardware throttles.
 
Interesting. No problems with the throttles here, both work fine using click-and-drag, mouse wheel or hardware throttles.

I think it only affects single throttle lever joysticks or the CH Yoke with built-in quadrant which I use - these are mapped to the JOYSTICK L - Z AXIS command.
 
I've tried your mods, but in doing so I loose the ability to click and drag the throttles, or use the mouse wheel, so I'm afraid I can't recommend them.
Looking in the SDK, the commands "AXIS_THROTTLE1_DECR_SMALL" etc are not listed, although neither is the original "THROTTLE1_DECR_SMALL" :dizzy:
"THROTTLE1_DECREASE_SMALL_EX1" seems to be the correct command now, have you tried that?
 
I've tried your mods, but in doing so I loose the ability to click and drag the throttles, or use the mouse wheel, so I'm afraid I can't recommend them.
Looking in the SDK, the commands "AXIS_THROTTLE1_DECR_SMALL" etc are not listed, although neither is the original "THROTTLE1_DECR_SMALL" :dizzy:
"THROTTLE1_DECREASE_SMALL_EX1" seems to be the correct command now, have you tried that?

I also lose the ability to click and drag the throttles with the AXIS_ commands, I hadn't checked that to be honest because I only use the throttle lever on my CH Yoke.

I tried the "THROTTLE1_DECREASE_SMALL_EX1" for throttle 1 and "THROTTLE2_DECREASE_SMALL_EX1" for throttle 2 in the vc.xml and reverted the Rapide.xml back to original; no throttle lever response again unfortunately.
I think the Rapide.xml <EventID>THROTTLE1_SET</EventID> command responds to mouse and keyboard F2-F3 only and disregards lever movement.
 
After changing all the throttle sections to match the mixture sections (which work perfectly with mouse, keyboard and lever axis), it seems that the key events "THROTTLE1" and "THROTTLE2" can't respond to a single lever axis which is mapped to all throttles.
By removing the numbers 1 and 2 from each key event, the lever axis works along with the mouse and keyboard; however the mouse moves both throttles at once.
 
I've tried your mods, but in doing so I loose the ability to click and drag the throttles, or use the mouse wheel, so I'm afraid I can't recommend them.
Looking in the SDK, the commands "AXIS_THROTTLE1_DECR_SMALL" etc are not listed, although neither is the original "THROTTLE1_DECR_SMALL" :dizzy:
"THROTTLE1_DECREASE_SMALL_EX1" seems to be the correct command now, have you tried that?

Hi Dave, I finally found a cure for this on the flightsimulator.com SDK forums (while looking for something else of course). It's a small section of code to add to the vc.xml (or interior.xml in other aircraft) in the model folder:

Scroll down to the <Behaviors> section and add this code:

<Include Path="Asobo\Common.xml"/>
<Component ID="ENGINE">
<UseTemplate Name="ASOBO_ENGINE_Lever_Throttle_Template">
<ID>1</ID>
<PART_ID>ENGINE_LEVER_Throttle_1</PART_ID>
</UseTemplate>
<UseTemplate Name="ASOBO_ENGINE_Lever_Throttle_Template">
<ID>2</ID>
<PART_ID>ENGINE_LEVER_Throttle_2</PART_ID>
</UseTemplate>
</Component>

Save and close vc.xml, and the throttle lever animations are now working again. This works with up to 4 levers, as below:

<Include Path="Asobo\Common.xml"/>
<Component ID="ENGINE">
<UseTemplate Name="ASOBO_ENGINE_Lever_Throttle_Template">
<ID>1</ID>
<PART_ID>ENGINE_LEVER_Throttle_1</PART_ID>
</UseTemplate>
<UseTemplate Name="ASOBO_ENGINE_Lever_Throttle_Template">
<ID>2</ID>
<PART_ID>ENGINE_LEVER_Throttle_2</PART_ID>
</UseTemplate>
<UseTemplate Name="ASOBO_ENGINE_Lever_Throttle_Template">
<ID>3</ID>
<PART_ID>ENGINE_LEVER_Throttle_3</PART_ID>
</UseTemplate>
<UseTemplate Name="ASOBO_ENGINE_Lever_Throttle_Template">
<ID>4</ID>
<PART_ID>ENGINE_LEVER_Throttle_4</PART_ID>
</UseTemplate>
</Component>
 
Back
Top