Encountered an issue that I'm struggling with
Uncaught TypeError: Cannot read property 'normal' of undefined
upon executing the following code on my live website:
var text_geo = new THREE.TextGeometry("H", {size:20});
var text_mat = new THREE.MeshBasicMaterial({color:"white", overdraw:true});
var txt = new THREE.Mesh(text_geo, text_mat);
Upon checking in the Chrome debugger, it seems to be originating from the three.js source code file. Any suggestions on how to work around this?
Thanks