Hello,
I’m creating a component for wordpress page, which will have multiple GLTF Models with animations.
since we cannot have 8+ webgl contexts in one page, and I cannot follow this :
because the component is different from page.
So, I’m using IntersectionObserver, whatever container comes in viewport, I append a canvas, add object to the scene and start rendering.
Now the problem is :
When adding model, i.e scene.add(model) everytime, The browser freezes for few milliseconds.
On profiling I can see 2 things taking up most of the resources :
- texImage2d
- getProgramInfoLog
Any ideas on how to make it smoother?
I can see there are some ways to load OBJ files, using WWOBJLoader2, but found no web worker way for GLTF,
and some more suggestions to use createImageBitmap or requestIdleCallback (These both are not supported in safari).
What are the options to smoothly add GLTF objects to the scene?
I need a solution which will work in all major browsers, so no experimental APIs,
Please suggest, I’d be really grateful
Thanks in advance!