Pārlūkot izejas kodu

Editor: Do not enforce sRGB encoding for DataTexture.

Mugen87 5 gadi atpakaļ
vecāks
revīzija
60db2fd7f2
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;