Skip to content

Commit

Permalink
Merge pull request #1359 from mattrossman/matt/issue-1358
Browse files Browse the repository at this point in the history
Remove `.needsUpdate` after texture transforms
  • Loading branch information
0b5vr authored Jan 29, 2024
2 parents 754f12d + ade468d commit 2cddc76
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ export class VRMExpressionTextureTransformBind implements VRMExpressionBind {

target.offset.add(_v2.copy(property.deltaOffset).multiplyScalar(weight));
target.repeat.add(_v2.copy(property.deltaScale).multiplyScalar(weight));

target.needsUpdate = true;
});
}

Expand All @@ -144,8 +142,6 @@ export class VRMExpressionTextureTransformBind implements VRMExpressionBind {

target.offset.copy(property.initialOffset);
target.repeat.copy(property.initialScale);

target.needsUpdate = true;
});
}
}

0 comments on commit 2cddc76

Please sign in to comment.