Skip to content

Commit bf60de3

Browse files
committed
GLTFLoader: Fix rotation direction.
1 parent 8a305f3 commit bf60de3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/js/loaders/GLTFLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ THREE.GLTFLoader = ( function () {
554554

555555
if ( transform.rotation !== undefined ) {
556556

557-
texture.rotation = -1 * transform.rotation;
557+
texture.rotation = transform.rotation;
558558

559559
}
560560

0 commit comments

Comments
 (0)