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

MCX has an excellent reduction algorithm, it has a few other nice features and pretty much everything can be automated.
 
In truth, lots of models from Asobo and Microsoft use only one LOD.

Honestly, I have played around with optimization a lot and LODs don't seem to make a big difference (On PC, at least) unless the hardware is really struggling. When I test on Xbox cloud, it does get fairly stuttery if I have a lot of heavier geo objects with no LODs or a single LOD. I'm getting ready to test a new library update on Xbox in a week or two and I'll be interested to see how my new approach is working. Basically now I am just following what the MSFS LOD Limits debug tells me. If the vert count goes into the red, I create a new LOD and then repeat until I can get it to 5% vertical screen space, then I make a really low detail LOD with only vertex colors (unloads textures much earlier - eases load on GPU for distant objects). In the case of vegetation, I have started doing an invisible cube for the Last LOD (or a plane if the LOD0 model is wider than it is tall). As soon as the vegetation is no longer visible on screen, I switch to it.

It's a balance. If the GPU is struggling, you do LODs and push some of that load onto the CPU. I think a good rule of thumb is to just do the least amount that is required. Meaning, only do LODs if they are actually needed and if you do, transition the LODs at as small of a screen space that you can get away with (per the debug - Just before or as the vert count turns yellow) and be sure to not transition between the LODs too quickly as well. Reduce the vert count as much as possible without causing a noticeable pop and remove complete materials if able. Then you are making the biggest difference using the least amount of LODs possible.

I used to follow the SDK optimization guidelines word for word, but they leave a lot open to interpretation and it sets a bad precedent making you think that ALL models should have multiple LODs. A 300 vert model having 3 LODs is only putting more load on the CPU for nothing. The GPU barely notices the model. They also tell you to remove textures you don't need at a distance (such as the normal map), which I have previously taken as having a new material for each LOD and removing the appropriate texture slot. :redflag: If multiple LODs of a model use the same material, it is instanced and doesn't have to reload, but if it is different, each time a LOD switches for that model, the material and textures are called again. Do that a few hundred times across multiple models in a scene and you still probably wont notice it on a decent PC, but on Xbox, it will run out of memory and crash quickly (Found out the hard way).

At this point I'm really just trying everything and seeing what does and doesn't cause Xbox to self destruct. Trying to find the best balance across the board, because no matter what it will always be different for each project.
 
Last edited:
Back
Top