Currently, I am experimenting with integrating Meteor and Three.JS. The specific meteorite package for Three.JS that I am utilizing can be found here: https://github.com/nozpheratu/three-meteor. Despite being able to perform basic functions in Three.JS, I am facing challenges when attempting to execute tasks such as creating a new Euler object, using the code
var x = new THREE.Euler(0,0,0,'xyz')
, as it results in an error message stating TypeError: undefined is not a function
. This issue persists with a few other features as well. Although I attempted to manually import the Three.JS Euler class, it prompted me about missing additional classes. Consequently, I am questioning whether there exists a method to manually integrate three.js into Meteor. Even adding the three.min.js
file did not provide a solution.
I appreciate any assistance or insights anyone might have. Thank you.