Blurry/Low Resolution Game View Camera, high resolution second camera,Game view camera is blurry and lower resolution than my 4k screen
I'm developing a 3D game for Oculus Quest VR in Unity 2019.4.2
Everything in my Scene View is high resolution and sharp; and my game view even looks sharp -- until I hit play. Then the game view becomes pixelated and blurry, low resolution.
This is a problem because I'm trying to screen capture to make a trailer.
unity-game-view-low-res-1.jpg
(176.0 kB)
Comment
Solution: Added a line of code to the camera that somehow stops the game view from blurring out the game.
public class Trailer_CameraSettings : MonoBehaviour
{
private Camera _cam;
private void Start()
{
_cam.stereoTargetEye = StereoTargetEyeMask.None;
}
}
Your answer
Follow this Question
Related Questions
Low Resolution Aspect Ratio always checked 0 Answers
Blurry textures in Gear VR 1 Answer
How can I detect if a user is looking at a Gameobject inside a scene from a VR headset 0 Answers
OnPointerEnter 0 Answers
Virtual Reality camera zoom in and out 0 Answers