瀏覽代碼

Editor: Do not enforce sRGB encoding for DataTexture.

Mugen87 5 年之前
父節點
當前提交
60db2fd7f2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/js/Sidebar.Material.js

+ 1 - 1
editor/js/Sidebar.Material.js

@@ -1186,7 +1186,7 @@ function SidebarMaterial( editor ) {
 
 		if ( texture !== null ) {
 
-			if ( texture.encoding !== THREE.sRGBEncoding ) {
+			if ( texture.isDataTexture !== true && texture.encoding !== THREE.sRGBEncoding ) {
 
 				texture.encoding = THREE.sRGBEncoding;
 				var object = currentObject;