浏览代码

Preload DRACO libraries on DRACO glTF load

Tyler Lindberg 5 年之前
父节点
当前提交
21018a7b0c
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. 1 0
      examples/js/loaders/GLTFLoader.js
  2. 1 0
      examples/jsm/loaders/GLTFLoader.js

+ 1 - 0
examples/js/loaders/GLTFLoader.js

@@ -490,6 +490,7 @@ THREE.GLTFLoader = ( function () {
 		this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
 		this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
 		this.json = json;
 		this.json = json;
 		this.dracoLoader = dracoLoader;
 		this.dracoLoader = dracoLoader;
+		this.dracoLoader.preload();
 
 
 	}
 	}
 
 

+ 1 - 0
examples/jsm/loaders/GLTFLoader.js

@@ -557,6 +557,7 @@ var GLTFLoader = ( function () {
 		this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
 		this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
 		this.json = json;
 		this.json = json;
 		this.dracoLoader = dracoLoader;
 		this.dracoLoader = dracoLoader;
+		this.dracoLoader.preload();
 
 
 	}
 	}