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
ogl/src/core/Geometry.js
Line 170 in fceff3a
When we bind VAO or unbind it we should and change renderer.currentGeometry, this is IMPORTANT because some code call only bindVertexArray.
renderer.currentGeometry
See: https://github.com/oframe/ogl/blob/master/src/extras/GLTFLoader.js#L92
Because we have a VAO Abstraction, why we can't store it in renderer.currentGeometry inside renderer? This is more strictly that store string literal.
Then need move currentGeometry to state.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ogl/src/core/Geometry.js
Line 170 in fceff3a
When we bind VAO or unbind it we should and change
renderer.currentGeometry
, this is IMPORTANT because some code call only bindVertexArray.See:
https://github.com/oframe/ogl/blob/master/src/extras/GLTFLoader.js#L92
Because we have a VAO Abstraction, why we can't store it in
renderer.currentGeometry
inside renderer?This is more strictly that store string literal.
Then need move currentGeometry to state.
The text was updated successfully, but these errors were encountered: