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 Car looks blurry and has a low resolution

Discussion in 'General Graphics' started by Veteranfighter, Mar 16, 2021.

  1. Veteranfighter

    Veteranfighter

    Joined:
    Jul 3, 2020
    Posts:
    15
    upload_2021-3-16_16-59-10.png

    Hello, I want to make a cinematic camera for my car, but the resolution is very bad (as you can see at the top of the car)
    upload_2021-3-16_17-0-17.png

    I want this to be 4k, can some one help me?
     
  2. bgolus

    bgolus

    Joined:
    Dec 7, 2012
    Posts:
    12,329
    The resolution isn't "bad". It's exactly the resolution you're rendering that image at. Rendering a 4k won't necessarily solve the problem either, is if you're displaying on a 4k monitor you'll see the same thing as above.

    What you're seeing is common aliasing problems all real time rendering has to contend with. The solution is some form of anti-aliasing. Either MSAA (Multi Sample Anti-Aliasing) which can be enabled on the camera & project's quality settings, or some form of post process anti-aliasing like FXAA, SMAA, or TAA, which can be enabled using Unity's post processing stack and each have different pros and cons.
     
  3. Veteranfighter

    Veteranfighter

    Joined:
    Jul 3, 2020
    Posts:
    15
    Thank you.