render OBJ file using THREE.OBJLoader
问题 How to render OBJ file using THREE.OBJLoader method, I've a sample OBJ format but it won't render anything nor I see error in chrome dev tool 回答1: Check out the OBJLoader usage sample at https://github.com/mrdoob/three.js/blob/master/examples/webgl_loader_obj.html#L75 (In action http://mrdoob.github.com/three.js/examples/webgl_loader_obj.html ) var loader = new THREE.OBJLoader(); loader.load( objURL, function ( object ) { scene.add( object ); } ); 回答2: Try adding a light into the scene or