Procházet zdrojové kódy

GLTFLoader: Warn on unsupported texCoord override.

Don McCurdy před 7 roky
rodič
revize
73160feba1
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 6 0
      examples/js/loaders/GLTFLoader.js

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

@@ -605,6 +605,12 @@ THREE.GLTFLoader = ( function () {
 
 		}
 
+		if ( transform.texCoord !== undefined ) {
+
+			console.warn( 'THREE.GLTFLoader: Custom UV sets in "' + this.name + '" extension not yet supported.' );
+
+		}
+
 		texture.needsUpdate = true;
 
 		return texture;