|
@@ -225,7 +225,7 @@ Texture.prototype = Object.assign( Object.create( EventDispatcher.prototype ), {
|
|
|
|
|
|
transformUv: function ( uv ) {
|
|
transformUv: function ( uv ) {
|
|
|
|
|
|
- if ( this.mapping !== UVMapping ) return;
|
|
|
|
|
|
+ if ( this.mapping !== UVMapping ) return uv;
|
|
|
|
|
|
uv.applyMatrix3( this.matrix );
|
|
uv.applyMatrix3( this.matrix );
|
|
|
|
|
|
@@ -297,6 +297,8 @@ Texture.prototype = Object.assign( Object.create( EventDispatcher.prototype ), {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ return uv;
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
} );
|
|
} );
|