浏览代码

EXRLoader: dependencies

Guilherme Avila 5 年之前
父节点
当前提交
a8f1495704
共有 2 个文件被更改,包括 1 次插入3 次删除
  1. 0 2
      examples/js/loaders/EXRLoader.js
  2. 1 1
      utils/modularize.js

+ 0 - 2
examples/js/loaders/EXRLoader.js

@@ -8,8 +8,6 @@
  * implementation, so I have preserved their copyright notices.
  */
 
-// import { Zlib } from "../libs/inflate.module.min.js";
-
 // /*
 // Copyright (c) 2014 - 2017, Syoyo Fujita
 // All rights reserved.

+ 1 - 1
utils/modularize.js

@@ -79,7 +79,7 @@ var files = [
 	{ path: 'loaders/ColladaLoader.js', dependencies: [ { name: 'TGALoader', path: 'loaders/TGALoader.js' } ], ignoreList: [] },
 	{ path: 'loaders/DDSLoader.js', dependencies: [], ignoreList: [] },
 	{ path: 'loaders/DRACOLoader.js', dependencies: [], ignoreList: [ 'LoadingManager' ] },
-	{ path: 'loaders/EXRLoader.js', dependencies: [], ignoreList: [] },
+	{ path: 'loaders/EXRLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/inflate.module.min.js' } ], ignoreList: [] },
 	{ path: 'loaders/FBXLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/inflate.module.min.js' }, { name: 'NURBSCurve', path: 'curves/NURBSCurve.js' } ], ignoreList: [] },
 	{ path: 'loaders/GCodeLoader.js', dependencies: [], ignoreList: [] },
 	{ path: 'loaders/GLTFLoader.js', dependencies: [], ignoreList: [ 'NoSide', 'Matrix2', 'Camera', 'Texture' ] },