Browse Source

JSM: Added GLTFExporter and MTLLoader to modularize.

Mr.doob 6 years ago
parent
commit
817323f932
1 changed files with 4 additions and 2 deletions
  1. 4 2
      utils/modularize.js

+ 4 - 2
utils/modularize.js

@@ -11,9 +11,11 @@ var files = [
 	{ path: 'controls/OrbitControls.js', ignoreList: [] },
 	{ path: 'controls/MapControls.js', ignoreList: [] },
 	{ path: 'controls/TrackballControls.js', ignoreList: [] },
-	// { file: 'controls/TransformControls.js', ignoreList: [] },
+	// { path: 'controls/TransformControls.js', ignoreList: [] },
+	{ path: 'exporters/GLTFExporter.js', ignoreList: [] },
 	{ path: 'loaders/GLTFLoader.js', ignoreList: [ 'NoSide', 'Matrix2', 'DDSLoader', 'DRACOLoader', 'BufferGeometryUtils' ] },
-	{ path: 'loaders/OBJLoader.js', ignoreList: [] }
+	{ path: 'loaders/OBJLoader.js', ignoreList: [] },
+	{ path: 'loaders/MTLLoader.js', ignoreList: [] }
 ];
 
 for ( var i = 0; i < files.length; i ++ ) {