Blurring for 1-2 frames when switching with Cut

Hi,

I am getting 1 and sometimes 2 frames of blur or strange popping when transitioning with Cut. I noticed that this is sometimes related to the complexity of the view it is cutting to but everything is moving at 70fps so this seems a bit unlikely. I am concerned that it has something to do with how I am scripting the changes.

I am using something like:

cur.cameras[active].SetActive(true);
cur.cameras[oldCam].SetActive(false);
oldCam = active;

This seems straightforward and fine. I am using 2017.3 and I am fairly confident that my components are correctly setup.

It’s fine. Are you using the Post-processing stack?

I am using the post-processing stack. Still V1. I want to switch to v2 but I have a very large project and didn’t know if it made sense to make the leap yet as it might take a large amount of reworking.

Does the blur go away if you disable the post-processing?

It does not.

I figured it out! Sorry for the trouble. It had to do with code that was getting called OnDisable on the cameras not actually updating till they were turned back on. Again apologies for the confusion. Thank you the help and the great tools.

1 Like