@Megalomaniak said:
It's worth a note that so far most AAA games/studios have found that LODs still work better, but then the recent UE5 demo seems to indicate that this might finally change.
I agree that conventional LOD provides all one should need for small objects; If we're talking items such as a vase on a table then sure, simply applying a lower-poly version of the model when you're far enough will do. The problem is when you have a large whole mesh the player can wander into: If your object is a terrain or building, you have to show the full polygon version of the whole thing from up close, so you won't benefit of the engine LOD-ing just some bricks part of one wall further away. Of course one can simply divide the structure into multiple objects, however this can limit the artist and itself decrease performance by causing more surfaces to be rendered originally.
Perhaps there could be some way to mix the two instead? What if the conventional LOD system allowed drawing different parts of a mesh at a different LOD, masking between drawing different versions of the model based on draw distance horizons? Of course the vertices themselves would have to be masked across each seam for proper performance improvements, which may introduce cracks in the mesh the player could see through... maybe this could be solved with some smooth alpha blending between the two?
But assuming you have an 100 meter wide building as one mesh and the player's standing in a corner, the building containing two LOD models: From distance 0 to 50 the player would see the original mesh. From distance 50 to 75, the player would see mesh_lod1. From distance 75 to 100, the player would see mesh_lod2. Just a thought... part of me's assuming that this might be too complicated and waste more performance than it gains.