How to use inspector in next js 13? #288
-
Hi, I'm using Next.js 13 and when I use inspector it shows me the UI of the inspector, but the babylon scene is not interactive anymore. I think it is because of this log, which says should render updating: false. How can I fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
do you have a repo that you can share? I'm using an intersection observer with a threshold of zero. So, it sounds like your canvas isn't visible when it's not rendering: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/IntersectionObserver Are you passing a |
Beta Was this translation helpful? Give feedback.
Hi, thank you for your quick answer. I was passing
whenVisibleOnly
in render options and that was the problem. Thank u so much.