why does my game look better in the scene view

I am making a voxel based game and got to the point where I started coding the player however I noticed that the game looks much worse in the game view over looking at it in the scene view does anyone know why.

2 Answers

2

You have set the “scale slider” at the top of the game view to “2x”. Set it back to “1x”

unfortunate that did not fix it

Try running the game maximized. While not in maximized, the CPU and GPU are not only running the game but also updating every element of the Unity editor UI with your game in real-time. If you have lots of objects (which it appears you do) this can be very taxing.

As also suggested, set your scale slider back to 1x, and also I would recommend changing your aspect ratio from “Free Aspect” to something fixed. Essentially, free aspect changes the resolution of your game window to fit the size of the window, rather than having it set to, say, 1920x1080, where the game would render at 1920x1080 and then be resized to fit inside the game window without changing the aspect ratio.