As a roblox developer, it is currently too hard to provide players a good open-world experience if they use a low graphics setting. Primarily because the render engine prioritizes to render the wrong things. Here is an example in Car Crushers 2:
Graphics Level 1: 50k triangles:
Graphics Level 6: 105k triangles
Graphics Level 8: 272k triangles
Custom scene: 102k triangles (The visual fidelity nearby is the same as Level 1 here, but with specific models allowed to be rendered beyond that)
In Car Crushers 2, nearly all graphics modes more or less make the world look broken like the first 3 images up until you reach graphics mode 9. Despite mode 8 using far more than the 100k triangles needed for the custom scene in my last example.
It would be easy to address if as a developer if we had some property that allowed us to prioritize specific models to be rendered over others. Or even forcing them to always be rendered when they’re streamed in. The examples at Level 6 or 8 would look a whole lot better at the same triangle count if they could render the models we want to prioritize while hiding some far-away trees instead.
Even if the models were outright forced to be rendered, In my example that would add a maximum of 50k triangles to either graphics mode while making the world both look better and become easier to explore. I think that would have a positive impact that outweights any small performance loss. Especially for graphics levels 6 and above where the proportional increase would be very low.