Hi, I’ve been using the Application.CaptureScreenshot for a while successfully, but I recently added the folowing line and all I can capture now is a black image. Does anyone know why this might be happening?
QualitySettings.SetQualityLevel(5, false);
I simply create a screenshot when the player presses L and R on an Xbox 360 controller:
if (Input.GetButton ("ButtonL") && Input.GetButton ("ButtonR"))
Application.CaptureScreenshot(Application.dataPath + "Screenshot.png", 1);
If I lower the quality like so:
QualitySettings.SetQualityLevel(1, false);
I can capture a screenshot correctly.