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

FSX Landing gear

Messages
36
Country
canada
Hello I am new to FSdeveloper and i have been working on a Aircraft for FSX the model for while now i am on animation phase i just wanted to know how to make the landing gear like Airbus A340 or 777 have this is this done on animation or later on my first aircraft for FSX
Aa.b777-200er.n788an.mains.arp.jpg

043147181_prevstill.jpeg


Thank you
 
This will require a bit of custom XML coding and an animation trick.

Animate the gear assembly and then tag everything except for the bogey as "l_gear" or "r_gear", depending on the side you're working on. Do a tilting animation for the bogey (keyframe 0 = straight, keyframe 10 = tilted) and then tag it with a custom XML animation. The code could look like this:

Code:
<PartInfo>
   <Name>bogey_tilt</Name>
   <AnimLength>100</AnimLength>
   <Animation>
     <Parameter>
       <Code>
   (A:GEAR LEFT POSITION, percent) 95 &gt;
   (A:PLANE ALT ABOVE GROUND, feet) 10 &gt;
  and
   if{ 10 } els{ 0 }
       </Code>
     <Lag>10</Lag>
     </Parameter>
   </Animation>
</PartInfo>

This should make the bogeys go straight in 1 second (10 keyframes divided by 10 "lag" value) whenever the plane's reference datum (NOT landing gear!) is less than 10 feet above ground and the gear is extended by more than 95%. The extension condition ensures that the gear returns to its straight position for retraction (if it does on the real thing).
 
This is a video of a 777 gear retraction and extension you will find useful
Roy
 
Fascinating, Roy! The gear retract a lot faster in the sim... :stirthepo

This completely destroys PMDG's credibility for me! :rotfl:
 
It's amazing to see just how much gravity can hinder and assist mechanical systems.
 
Thanks Roy For the video :) and yes animation phase in progress on my aircraft btw guys it not a 777 i am working on LOL btw thank you for the support and yeah i am starting to like fsdevloper =D
 
Back
Top