I’m new to Unity and my goal is not to make a game, but a mobile application, I don’t use the Android SDK because I need to do something with augmented reality and I need to do it with Unity, it’s getting quite complicated because I’m not familiar or with the language or with anything, in short, I was able to change scenes by means of a button, like a log that verifies things, but Unity does not have a scene transition effect or something similar, I saw several videos where it can be done a transition, effects and so on, but they are for when you touch a button or touch the screen in this case, I would like to know if there is the possibility of being able to implement an effect after it effectively validates the information and then makes a translation effect to the other scene, is this possible, thanks!
It is hard to do a smooth transition effect while the scene changes, because the load of a scene will make Unity busy and the transition choppy (uneven frame rate).
I always do a fade out before the scene change, do the change, do a fade in. This also work in VR/AR where people can get sick if the screen does not move with your head at the desired frame rate.
You can implement fade in/out with a colored transparent rendered box around the camera. And change the alpha.
Hello, thank you very much for the answer, I will try to find out how to do it and implement it, in short, the only thing I need is an effect when I change the scene, it does not matter how to achieve it as long as it looks good. Thanks.