浏览代码

DRACOLoader: Revoke workerSourceURL. (#25174)

Michael Herzog 2 年之前
父节点
当前提交
6e2fe97f32
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      examples/jsm/loaders/DRACOLoader.js

+ 6 - 0
examples/jsm/loaders/DRACOLoader.js

@@ -351,6 +351,12 @@ class DRACOLoader extends Loader {
 
 		this.workerPool.length = 0;
 
+		if ( this.workerSourceURL !== '' ) {
+
+			URL.revokeObjectURL( this.workerSourceURL );
+
+		}
+
 		return this;
 
 	}