npm i --save three-gltf-exporter
three.js's r98 GLTFExporter wrapped as a module for easy importing.
import * as THREE from 'three';
import GLTFExporter from 'three-gltf-exporter';
const loader = new GLTFExporter();
import GLTFExporter from 'three'
var gexporter = new GLTFExporter();
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.
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.