I've come across this post, however, when I am utilizing
var material = new THREE.MeshBasicMaterial( { color: 0xffff00 } );
var mesh = new THREE.Mesh( totalGeom, material );
THREE.OBJExporter.parse( mesh );
Error message shown is:
Uncaught TypeError: Cannot read property 'parse' of undefined
Although I have reviewed the example source (line 154), unfortunately, I couldn't find a solution on my own. Can anyone assist me with this issue?