PavelDoGreat / Super-Blur

Screen and UI gaussian blur for Unity
MIT License
843 stars 107 forks source link

Blur transition #8

Open grayjamn opened 6 years ago

grayjamn commented 6 years ago

I'm curious if there was a way to tween or ease-in the blur effect for the screen blur?

It looks like I can increase the iterations over time that might work, but wondered if there was a better way.

ionsharp commented 6 years ago

Increasing iterations over time is probably the best way. This is how most common interpolations take place. You also have complete control over what's happening every frame.

PavelDoGreat commented 6 years ago

@grayjamn @imagin-tech you can just change opacity of an image. That's for example how iOS transition their blur. Changing iterations is not very good approach.