'Screen looks blurry after a scene change
If the scene is loaded without scene change it look fine, but after the scene change it look blurry. Tried changing colour of lighting, but it just made the scene a bit whither.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class scenechange : MonoBehaviour
{
public void sceneload ()
{
SceneManager.LoadScene(1);
}
}
Solution 1:[1]
You can fix it by going to:
Window -> Rendering -> Lighting
Click Environment, and change Environment Lighting Source to Gradient or Color. Sometimes the Skybox value, which is setted by default, gets bugged when changing the scene.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Yuris |


