Skip to content

Commit

Permalink
Disable mobile bloom for camera snapshots (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak authored Oct 31, 2023
1 parent afacd92 commit 90df515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/ScreenshotManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void Start()
var mobileBloom = GetComponent<MobileBloom>();
if (mobileBloom != null)
{
mobileBloom.enabled = true;
mobileBloom.enabled = false;
}
else
{
Expand Down

0 comments on commit 90df515

Please sign in to comment.