Skip to content

Commit

Permalink
fixed ranged scale
Browse files Browse the repository at this point in the history
  • Loading branch information
WistfulHopes committed Jan 27, 2023
1 parent 35bfcb7 commit 5ddd2f1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Unreal/UnrealMesh/UnAnim4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,9 @@ static void ReadTimeArray(FArchive &Ar, int NumKeys, TArray<float> &Times, int N
{ \
VecType v; \
Reader << v; \
v.X = v.X * 100; \
v.Y = v.Y * 100; \
v.Z = v.Z * 100; \
FVector v2 = v.ToVector(Mins, Ranges); \
Array.Add(CVT(v2)); \
} \
Expand Down

0 comments on commit 5ddd2f1

Please sign in to comment.