Skip to content

Commit

Permalink
TextureNode: Rename .getTextureMatrix() -> .getTransformedUV() (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sunag authored Sep 26, 2023
1 parent 8d241a6 commit 0f65abb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/jsm/nodes/accessors/TextureNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class TextureNode extends UniformNode {

}

getTextureMatrix( uvNode ) {
getTransformedUV( uvNode ) {

const texture = this.value;

Expand Down Expand Up @@ -94,7 +94,7 @@ class TextureNode extends UniformNode {

if ( this.updateMatrix === true ) {

uvNode = this.getTextureMatrix( uvNode );
uvNode = this.getTransformedUV( uvNode );

}

Expand Down

0 comments on commit 0f65abb

Please sign in to comment.