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
The following shader doesn't work:
Enter_The_Matrix.json
Uncaught TypeError: Cannot read property 'x' of undefined(…) s @ three.js:31441 THREE.WebGLUniforms.U.upload @ three.js:31820 b @ three.js:26727 renderBufferDirect @ three.js:25522 y @ three.js:26289 render @ three.js:26042 render @ VREffect.js:376 value @ a-scene.js:424 (anonymous function) @ bind.js:12
https://rawgit.com/msj121/aframeFrogShaders/master/examples/error.html
The text was updated successfully, but these errors were encountered:
FWIW, I've gotten this exact error when using a custom shader (e.g. AFRAME.registerShader(...)) because of doing something like:
AFRAME.registerShader(...)
{ uniforms: { foo: new THREE.Vector3() } }
instead of:
{ uniforms: { foo: {value: new THREE.Vector3()} } }
So I would guess that a uniform is being set incorrectly somewhere in the shaderfrog->threejs conversion.
Sorry, something went wrong.
Oh wow! Thanks for the heads up! This will hopefully narrow down my search for the code issue.
No branches or pull requests
The following shader doesn't work:
Enter_The_Matrix.json
https://rawgit.com/msj121/aframeFrogShaders/master/examples/error.html
The text was updated successfully, but these errors were encountered: