Skip to content
Snippets Groups Projects
Commit fcd646c9 authored by Tazpn's avatar Tazpn
Browse files

niflib: Fix binormals and tangents calculation

parent e6ede8c6
No related branches found
No related tags found
No related merge requests found
......@@ -208,8 +208,8 @@ void NiTriBasedGeom::UpdateTangentSpace(int method) {
// no duplication, just smoothing
for ( int j = 0; j < 3; j++ ) {
int i = tri[j];
tangents[i] += sdir;
binormals[i] += tdir;
tangents[i] += tdir;
binormals[i] += sdir;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment