diff --git a/1.3/Assemblies/Rimworld-Animations.dll b/1.3/Assemblies/Rimworld-Animations.dll index 7aefc89..888b1ed 100644 Binary files a/1.3/Assemblies/Rimworld-Animations.dll and b/1.3/Assemblies/Rimworld-Animations.dll differ diff --git a/1.3/Source/Comps/CompThingAnimator.cs b/1.3/Source/Comps/CompThingAnimator.cs index d3e4839..f5315e4 100644 --- a/1.3/Source/Comps/CompThingAnimator.cs +++ b/1.3/Source/Comps/CompThingAnimator.cs @@ -211,7 +211,7 @@ namespace Rimworld_Animations { //shift up and right 0.5f to align center deltaPos = new Vector3((clip.PositionX.Evaluate(clipPercent)) * (mirror ? -1 : 1) + 0.5f, AltitudeLayer.Item.AltitudeFor(), clip.PositionZ.Evaluate(clipPercent) + 0.5f); - Log.Message("Clip percent: " + clipPercent + " deltaPos: " + deltaPos); + //Log.Message("Clip percent: " + clipPercent + " deltaPos: " + deltaPos); rotation = clip.Rotation.Evaluate(clipPercent) * (mirror ? -1 : 1); }