Event for after scene transition completes #606
-
Is there an event/hook that can be used for after a scene transition completes? Use case is a heavy render that makes the transition animation stutter, so I'd like to delay that rendering until I know the transition is complete. I'd prefer not to have to hack it with timeouts if possible. I'm aware of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
A heavy render shouldn't make the transition stutter. The animation is handled natively by Android/iOS - not by React or javascript. But a heavy render will prevent the animation from starting. So make sure your very first render is fast then all should be good. |
Beta Was this translation helpful? Give feedback.
A heavy render shouldn't make the transition stutter. The animation is handled natively by Android/iOS - not by React or javascript. But a heavy render will prevent the animation from starting. So make sure your very first render is fast then all should be good.