• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

FSXA To animate a propeller blade

Messages
61
Country
france
I am unable to find the code to animate the pitch of the propeller blades?

I found one for the lever, but not for the blade

Could you help me.

Thank You
 
Last edited:
Although Bill's method will work technically it'd be incorrect as for a constant speed unit the lever doesn't directly control the prop pitch.

I don't think there's a default animation in FSX but I wrote this one:

<PartInfo>
<Name>prop_beta</Name>
<AnimLength>100</AnimLength>
<Animation>
<Parameter>
<Code>
(A:PROP BETA:1, degrees) 25 - 2.858 *
</Code>
</Parameter>
</Animation>
</PartInfo>

Change the 1 to whichever engine you're animating for, looking at the code it appears to be scaled for a prop with 35 degrees between max and min pitch, a min pitch of 25 degrees and animated between 0 and 100. Note I'm not 100% sure if this works as I used it on a single engine aircraft and FSX kept inhibiting the prop feathering so you never really see the animation.

Add that bit to modeldef.xml and the following bit at the start for the guid:

<Animation name="prop_beta" guid="1A805F4D-BF99-48ec-AB50-8D8BB8D6CD99" length="100" type="Sim" typeParam2="prop_beta_fury" typeParam="AutoPlay" />
 
True enough, but then what's the point of animating to begin with if it will never be seen?

While "unrealistic," simmers expect to see the props change pitch when the blades are still... Just sayin... :D
 
True enough, but then what's the point of animating to begin with if it will never be seen?
Yep, with the engine running the single blades are normally invisible. So for that purpose it would be of no use to implement the pitch animation.

What has been done before is to animate the thickness of the blurred prop disc, now that is way more realistic :twocents:.
In real life the changing pitch of the blades on a running engine is also visible as changing thickness of the "prop disc".

Not sure on the "how-to" though...
Does FS support scaling animation?

grt

Willem
 
No, not per se. But you can have two disks, and move one of them in/out to vary the thickness.
 
Back
Top