• 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.

Wing flex

Messages
17
Country
france
Hello,

Wing flex rate is controled by the file called "modeldef.xml"

here is the code :

Code:
<PartInfo>
        <Name>l_wing_flex</Name>
        <AnimLength>100</AnimLength>
        <Animation>
            <Parameter>
                <Sim>
                    <Variable>WING FLEX PCT:1</Variable>
                    <Scale>0.5</Scale>
                    <Units>percent</Units>
                    <Bias>50</Bias>
                </Sim>
            </Parameter>
        </Animation>
    </PartInfo>

So I tried to modify it, I changed flex rate which is controlled by the <scale>, nothing happened in fsx.

I fixed the scale to 0 and also nothing happened in fsx.

What's wrong ?
thank you!
 
Last edited:
That is not the "rate..."

You are confusing "scale" and "bias" as something they are not. FS defines "scale" and "bias" as quoted below:

SIM: Converts simvar to keyframes: simvar * scale + bias = keyframes

The variable WING FLEX PCT:1 provides us a percentage value ranging from 0 to 100 percent.

In order for this to be useful for keyframes, we need to "scale" the variable's number and provide an offset ("bias") value such that at 50% we will have a keyframe = 50.

First, we scale the sim var by 0.5 and then add a bias of 50.

If by "rate" you mean "how much deflection up/down" the wing has, that is controlled by how you adjust the rotation up/down from neutral position IN MAX/GMAX...

For example:

keyframe 0 = -5º rotation
keyframe 50 = neutral
keyframe 100 = 5º rotation
 
thanks!

but I'm not modeling an fsx model, just trying to increase wing flex to my planes in fsx.

is there any chance ?

thank you again, very well explained.
 
Last edited:
No, you cannot change the behavior of the wings unless you have the original source code for the model.
 
Back
Top