I have one route where a certain type of tree is loading much later than anything else. It’s driving me bonkers. Is there a way to change the loading distance of an asset in a route?
LOD - level of detail Identify the tree and open the geopcdx file. You can open it by adding .bin to the filename, then drag it into serz.exe to convert it to an xml. Just don't forget to remove .bin on the geopcdx file, if not TS will crash upon loading. Look for this part (on the top I think) Code: <LODController> <cHcGeometryLODController d:id="286694144"> <LOD> <e d:type="sFloat32" d:alt_encoding="0000000000C08240" d:precision="string">600</e> </LOD> </cHcGeometryLODController> <cHcGeometryLODController d:id="286694156"> <LOD> <e d:type="sFloat32" d:alt_encoding="0000000000C06240" d:precision="string">150</e> </LOD> </cHcGeometryLODController> </LODController> 600 and 150 are distances. 600 is probably for the LOD 2 level, low detailed object. Then 150 is for the LOD 1 level, with most details. Try changing these. Drag the xml file back to serz.exe and remove the .bin from the filename (so that it is a geopcdx file again) If it is an asset block then it has a fixed loading distance (tile based I think), so it can't be changed. I hope this helps. Keep in mind that I have never edited the LOD in a geopcdx file so it might not work