Am facing a very tough issue which is
I intended to render some objects with perspective view and some others with orthographic view at the same canvas by the same webglRenderer
So I initialised 2 scenes , a perspective camera and
Orthographic camera
Then I initialised a webglRenderer
Any objects I want to render as perspective view I added to the first scene
And any objects I want to render as orthographic I added to the other scene
At the render function I wrote
WebGLRenderer.render(pScene,pCamera);
WebGLRenderer.render(oScene,oCamera);
But always only one scene appears which is the last rendered one
What should I do to make the two scenes appear together???
Please help…