Skip to content

Commit

Permalink
Fix issues caused by turning off UVLock
Browse files Browse the repository at this point in the history
  - UVLock is required off to rotate top texture w/ model
      - This however causes other sides to flip UV
  - To get their old UV back, we flip model coordinates
      - Flipping the x texture coordinates undoes rotation
  • Loading branch information
voidsong-dragonfly committed Jun 22, 2024
1 parent a3fa13f commit c933de7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"east": {
"texture": "#side",
"uv": [15, 16, 0, 0]
"uv": [0, 16, 15, 0]
}
}
},
Expand Down

0 comments on commit c933de7

Please sign in to comment.