diff options
author | cosmic-linden <111533034+cosmic-linden@users.noreply.github.com> | 2023-02-24 11:41:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-24 11:41:04 -0800 |
commit | 5aa568f3a206d027894ad1edf1d1025136207bc2 (patch) | |
tree | 6efd659b40251b5170e81e8f3fe549a7d3c78382 /indra/llprimitive | |
parent | 63ae47d8fd479a3cb05ff1d2364d683975e1b052 (diff) | |
parent | a7ecfc9b1907d6ecd5fe50aeb1c41e38540b2665 (diff) |
Merge pull request #89 from secondlife/SL-19228
SL-19228: Fix GLTF texture transform rotation + add UV debug
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llgltfmaterial.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llprimitive/llgltfmaterial.cpp b/indra/llprimitive/llgltfmaterial.cpp index 4d7b10982a..d0ecf611ff 100644 --- a/indra/llprimitive/llgltfmaterial.cpp +++ b/indra/llprimitive/llgltfmaterial.cpp @@ -54,8 +54,8 @@ LLMatrix3 LLGLTFMaterial::TextureTransform::asMatrix() const F32 cos_r = cos(mRotation); const F32 sin_r = sin(mRotation); rotation.mMatrix[0][0] = cos_r; - rotation.mMatrix[0][1] = sin_r; - rotation.mMatrix[1][0] = -sin_r; + rotation.mMatrix[0][1] = -sin_r; + rotation.mMatrix[1][0] = sin_r; rotation.mMatrix[1][1] = cos_r; LLMatrix3 offset; |