In the new GMAX SDK for FSX, there is a really cool tool that the ACES Studio (most likely Adrian – thanks Adrian) wrote for us all.
There is a small bug that I noticed when switching between LOD views using this tool where you would have to click the “Unhide All” button before selecting the LOD view you would like. Therefore, I had a chat with Arno and we found a workaround to the issue (until I speak with Adrian). The only downside is you get a “flicker” between the changeover.
Find this code in the LODandNameTool.ms script:
(
hide $*
global dummyString = 0
for obj in allLOD.selection do
Change it to add one line:
(
max unhide all
hide $*
global dummyString = 0
for obj in allLOD.selection do