We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
first of all ,Thank you so much for your open source project! I want to add three-view-drawing on this system;
this.renderer.render(this.scene, this.camera); 3 the canvas should exist two render result,but only the last;
4 the above code is correct in my old three project;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
first of all ,Thank you so much for your open source project!
I want to add three-view-drawing on this system;
1 when inital renderer, setting renderer.autoclear = false;
2 add the following code before execute renderer.render in animate function
this.renderer.setViewport(0, 0, 200, 200);
this.renderer.render(this.scene, this.camera);
this.renderer.setViewport(0, 0, this.canvasContainer.clientWidth, this.canvasContainer.clientHeight);
this.renderer.render(this.scene, this.camera);
3 the canvas should exist two render result,but only the last;
4 the above code is correct in my old three project;
The text was updated successfully, but these errors were encountered: