Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Resolved Lego Microgame Pixelated Graphics from far Away.

Discussion in 'General Graphics' started by Programmingat23505, Mar 2, 2021.

  1. Programmingat23505

    Programmingat23505

    Joined:
    Sep 15, 2020
    Posts:
    44
    Hello,
    As I was finishing up my game for my submission I ran across this weird pixelated issue.
    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.
    upload_2021-3-1_17-27-20.png
    This is really what I want the objects the look like and does anyone have any ideas to help me out?

    Thanks so much! upload_2021-3-1_17-25-6.png upload_2021-3-1_17-27-20.png
     
  2. bgolus

    bgolus

    Joined:
    Dec 7, 2012
    Posts:
    12,329
    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.
     
  3. Programmingat23505

    Programmingat23505

    Joined:
    Sep 15, 2020
    Posts:
    44
    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!