We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e413d60 commit 40b0e3fCopy full SHA for 40b0e3f
src/engine/model/ragdoll.cpp
@@ -126,7 +126,7 @@ void ragdollskel::setuprotfrictions()
126
{
127
if(tris[i].shareverts(tris[j]))
128
129
- rotfriction r;
+ RotFriction r;
130
r.tri[0] = i;
131
r.tri[1] = j;
132
rotfrictions.push_back(r);
src/engine/model/ragdoll.h
@@ -67,11 +67,11 @@ class ragdollskel final
67
};
68
std::vector<rotlimit> rotlimits;
69
70
- struct rotfriction final
+ struct RotFriction final
71
72
std::array<int, 2> tri;
73
74
- std::vector<rotfriction> rotfrictions;
+ std::vector<RotFriction> rotfrictions;
75
76
//a distance constraint between two specified vertices
77
//vert specifies the indices of the vertices in the verts vector, and
0 commit comments