three-gltf-exporter
v0.0.1
Published
three.js GLTFExporter wrapped as a module for easy importing
Downloads
1,490
Maintainers
Readme
three.js glTF exporter
Installation
npm i --save three-gltf-exporter
Description
three.js's r98 GLTFExporter wrapped as a module for easy importing.
Usage
import * as THREE from 'three';
import GLTFExporter from 'three-gltf-exporter';
const loader = new GLTFExporter();
Usage es6
import GLTFExporter from 'three'
var gexporter = new GLTFExporter();
Notes for rollup
In your rollup.config.js and in the commonjs section ensure to include the below for using this library for es6 projects. This might be necessary for any three-based libraries
commonjs({
include: [
'node_modules/three-gltf-exporter/**',
]
}),
For further documentation, see the GLTFExporter docs.
Reporting Issues
Please note that this is just a wrapper for the glTF exporter provided by three.js. Therefore, any issues regarding the loader should be reported directly via the three.js issue tracker. For issues directly related to the wrapper or this package specifically, feel free to contact me.