WebGL extends the capability of the HTML canvas element to allow it to render accelerated 3D graphics in any compatible web browser.

learn more… | top users | synonyms

1
vote
2answers
77 views
+50

How to add shader to THREE.Object3D loaded from OBJMTLLoader

I have a model loaded using THREE.OBJMTLLoader. var loader = new THREE.OBJMTLLoader(); loader.addEventListener('load', function(event) { var mesh = event.content; scene.add(mesh); } ...