- Home /
Question by
vanshika1012 · Aug 19, 2015 at 08:17 AM ·
unity5flipchanging
Flip effect on scene change.
Hello,
I want to add a flip effect for changing my scene and if its not possible , flip effect with in a scene. Attached is the reference video.
Comment
You can add intermediate scene with flipping effect between your 2 scenes.
Answer by FortisVenaliter · Aug 19, 2015 at 07:51 PM
I don't know of any built-in way to do it. What I would suggest is rendering your game to a RenderTexture, and storing the result. Then you load in your new scene, render the first frame to another RenderTexture and pause it. Then you can apply those textures to materials, apply those materials to quads, and animate them normally. Then once the flip animation is complete, resume the new scene. Not easy by any means, but certainly possible.
Your answer