Skip to content

Commit

Permalink
Merge pull request #950 from Hoikas/morph-uv
Browse files Browse the repository at this point in the history
Decrease morph UV delta threshold.
  • Loading branch information
Hoikas committed Jul 2, 2021
2 parents 93d0929 + 7efe771 commit eaf8544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Plasma/PubUtilLib/plDrawable/plMorphDelta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void plMorphDelta::ComputeDeltas(const std::vector<plGeometrySpan*>& base, const
// These are actually min del SQUARED.
plConst(float) kMinDelPos(1.e-4f); // From Budtpueller's Handbook of Constants
plConst(float) kMinDelNorm(3.e-2f); // About 10 degrees
plConst(float) kMinDelUVW(1.e-4f); // From BHC
plConst(float) kMinDelUVW(1.e-5f); // Science'd from clothing UVW work
hsPoint3 mPos = d2b * *movedIter.Position();
hsVector3 delPos( &mPos, baseIter.Position());
float delPosSq = delPos.MagnitudeSquared();
Expand Down

0 comments on commit eaf8544

Please sign in to comment.