Questions on threejs LoD memory impact

So if we wanted to dynamically offload high / load high res from cpu memory then we can not use LOD ? Would we be checking distance and then handle manually loading/replacing mesh?

Nope, LOD is for improving the GPU processing time. Using LOD systems actually introduce a higher RAM usage since you have to hold multiple versions of the same 3D object in memory.

1 Like