Unity在按下播放按钮后如何添加淡出的淡出过渡?
I want to make my scene transition with a fade after hitting the "play" button I created. Currently when you hit the play button it transitions to the next game scene. I want to implement a fade during the transition.
I already made the fade animation clip.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以在动画完成后,不再致电LoadScene,而是可以运行淡出的动画并加载下一个场景,然后在下一个场景加载时播放淡入淡出的动画。
Instead of calling LoadScene immediately, perhaps you could run a fade-out animation and Load the next scene after the animation has finished, then play a fade-in animation when the next scene loads.