Youtube videos on a mesh (port of CSS3DRenderer.js)

Anyone got multiple iframes/renderers working in the same scene?

In my project, broken on double creation.

I got it working with multiple renderers; OzRocker mentioned making sure the meshes are at the top of the rendering order, (inside scene.meshes)
When I checked scene.meshes the planes created were not at the top of the Array.

I recommend you check it out; if they are not at the top, use a while loop to push all meshes with name == ‘yourmeshName’ top the top of the array

3 Likes

I use successfully multiple iframes/renderers in the same scene. Just create multiple instances of the renderer.

You also have to properly set render groups. Order in scene.meshes doesn’t matter.

See this thread.

1 Like