瀏覽代碼

Uncomment usage of TextDecoder in GLTFLoader

The TextDecoder block was added in d681e0f08177659871afda2494e32075f35afc78, but it seems to have been commented out (for debugging purposes, maybe?) in the GLTFLoader.
Daniel Hritzkiv 8 年之前
父節點
當前提交
f899beae77
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/js/loaders/GLTFLoader.js

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

@@ -666,7 +666,7 @@ THREE.GLTFLoader = ( function () {
 
 		if ( window.TextDecoder !== undefined ) {
 
-			//return new TextDecoder().decode( array );
+			return new TextDecoder().decode( array );
 
 		}