Lego Microgame Pixelated Graphics from far Away.

Hello,
As I was finishing up my game for my submission I ran across this weird pixelated issue.
6892064--806057--upload_2021-3-1_17-25-6.png
I tried figuring out what it was, I thought it maybe was LOD and set the bias to like 90000. Which is totally crazy. When you move the camera closer to the object the graphics look more like this.


This is really what I want the objects the look like and does anyone have any ideas to help me out?

Thanks so much!6892064--806057--upload_2021-3-1_17-25-6.png

That’s called aliasing. This is a common problem for real time rendering. If you’re rendering geometry that’s thinner than a pixel is wide, you’re going to have problems. There are various types of anti-aliasing you can try to use, though usually for fine details like this you want to have LODs that remove the smaller details entirely, or replace the detail with textures.

Yeah thanks I am such a noob I figured that out after some experimenting, I’ve even used anti aliasing before. Thanks for your help!