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
stars.js throws error to the console "THREE.Vertex has been DEPRECATED. Use THREE.Vector3 instead."
Still haven't gotten it to show the stars...
Probably want to just change:
starsGeometry.vertices.push( new THREE.Vertex( vector ) ) ;
to:
starsGeometry.vertices.push( vector );
since vector is already a Vector3 object.
The text was updated successfully, but these errors were encountered:
im also facing same issue.
Sorry, something went wrong.
Same problem using Sparks.js example wth Three.js version 60 Any body have a fix?
No branches or pull requests
stars.js throws error to the console "THREE.Vertex has been DEPRECATED. Use THREE.Vector3 instead."
Still haven't gotten it to show the stars...
Probably want to just change:
starsGeometry.vertices.push( new THREE.Vertex( vector ) ) ;
to:
starsGeometry.vertices.push( vector );
since vector is already a Vector3 object.
The text was updated successfully, but these errors were encountered: