Преглед на файлове

GLTFLoader: Warn on unsupported texCoord override.

Don McCurdy преди 7 години
родител
ревизия
73160feba1
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  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;