BSTriShape.SetUVs: write to rawUvs (UVs), not rawUVs (tangents)#25
Merged
ousnius merged 2 commits intoousnius:mainfrom Apr 25, 2026
Merged
BSTriShape.SetUVs: write to rawUvs (UVs), not rawUVs (tangents)#25ousnius merged 2 commits intoousnius:mainfrom
ousnius merged 2 commits intoousnius:mainfrom
Conversation
BSTriShape has two internal buffers with near-identical names:
rawUVs (capital V) — List<Vector3>, tangent buffer (filled by
UpdateRawTangents)
rawUvs (lowercase v)— List<TexCoord>, UV buffer (filled by
UpdateRawUvs)
SetUVs(...) was resizing/writing to `rawUVs` (the tangent buffer),
silently corrupting tangents on every SetUVs call. The real UV buffer
`rawUvs` was left untouched.
Impact is partial in practice because .Tangents/.UVs accessors
regenerate both buffers from the canonical vertData at read time, so
the sin-set intermediate state was rarely observed, but any code that
read `rawUVs` directly between SetUVs and the next Update* call got
garbage.
C++ nifly avoids the collision with unambiguous names: `rawTangents`
(Geometry.cpp:658) and `rawUvs` (Geometry.cpp:690).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SetUVshas two write paths that both targetrawUVs(capital V). Per the field comments,rawUVsis the cached tangent buffer (Vector3[]) andrawUvs(lowercase v) is the actual UV buffer (TexCoord[]). The capital-V usage looks like a copy-paste fromSetTangents. UV writes silently mutate the cached tangent list instead.Impact is partially masked because the public
UVsgetter regenerates fromVertexData, but the cachedTangentslist ends up contaminated and any consumer reading it directly sees garbage.C++ reference:
nifly/Geometry.cpp:658(rawTangents) and:690(rawUvs) — the C++ uses unambiguous names that don't collide.Fix: change both write sites to
rawUvs.Maps to issue #15 item F14.