forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Using SketchUp Models
timjb edited this page Jan 14, 2012
·
3 revisions
- Click on the menu item File > Export > 3D Model....
- Choose COLLADA File (.dae) as export type.
- If you want to export the textures, click on Options and make sure that Export Texture Maps is checked.
- Click on Export.
SketchUp will create a Collada file named your-model.dae
and a folder named your-model
that contains the models textures.
Since the Collada loader in r46 has a known bug, you need to use the Collada loader from the dev
branch.
var loader = new THREE.ColladaLoader();
loader.load('path/to/your-model.dae', function (result) {
scene.add(result.scene);
});
Note that this won't work locally, because it loads the Collada file and the textures using AJAX. Therefore you have to serve the files with HTTP or change your browser's security settings as explained in How to run things locally.