in my case:
let camera = new PerspectiveCamera( fieldOfView, aspectRatio, nearPlane, farPlane );
let cameraOrtho = new OrthographicCamera( -width / 2, width / 2, height / 2, -height / 2, 1, 10 );let scene = new Scene();
let sceneOrtho = new Scene()
Both scene and camera will be rendered to rendeder at the same time.
Now I want to add post rendering to the first scene,But when I did this, the second scene in the scene disappeared。
like this:
if(this.composer) { this.composer.update(); this.composer.render(delta); }else{ this.renderer.render( this.scene, this.camera ); } this.renderer.render( this.sceneOrtho, this.cameraOrtho );
what should I do?
Thanks