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
Currently, the reflector copies the resolution of the renderer on every update :
https://github.com/sunag/three.js/blob/87af669d9f8564bc906216c1c3f0db9cb7582ba0/src/nodes/utils/ReflectorNode.js#L291
Before we could pass options to set the target size directly
https://github.com/mrdoob/three.js/blob/dev/examples/jsm/objects/Reflector.js#L52
Pass options to set an resizeAutoUpdate: false, and expose the render target so it can be resized manually outside of the reflector
.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Currently, the reflector copies the resolution of the renderer on every update :
https://github.com/sunag/three.js/blob/87af669d9f8564bc906216c1c3f0db9cb7582ba0/src/nodes/utils/ReflectorNode.js#L291
Before we could pass options to set the target size directly
https://github.com/mrdoob/three.js/blob/dev/examples/jsm/objects/Reflector.js#L52
Solution
Pass options to set an resizeAutoUpdate: false, and expose the render target so it can be resized manually outside of the reflector
Alternatives
.
Additional context
.
The text was updated successfully, but these errors were encountered: