diff --git a/examples/misc_exporter_gltf.html b/examples/misc_exporter_gltf.html index c74fb0a5ab043f6241ff1afe01724d642fee4ece..2a6dbbee3875ff8683fa30709503ae3d4b8dcf41 100644 --- a/examples/misc_exporter_gltf.html +++ b/examples/misc_exporter_gltf.html @@ -28,6 +28,8 @@ +
+ TRS @@ -41,13 +43,16 @@ var gltfExporter = new THREE.GLTFExporter(); + var options = { + trs: document.getElementById('option_trs').checked + } gltfExporter.parse( input, function( result ) { var output = JSON.stringify( result, null, 2 ); console.log( output ); saveString( output, 'scene.gltf' ); - } ); + }, options ); }