Minor cleanup

This commit is contained in:
karlberg
2021-06-02 14:53:33 -07:00
parent 8ef2bd7518
commit b013d7ac67
2 changed files with 10 additions and 19 deletions
@@ -96,15 +96,6 @@ namespace Multiplayer
blendTransform.SetTranslation(m_previousTransform.GetTranslation().Lerp(m_targetTransform.GetTranslation(), blendFactor));
blendTransform.SetScale(m_previousTransform.GetScale().Lerp(m_targetTransform.GetScale(), blendFactor));
GetTransformComponent()->SetWorldTM(blendTransform);
//AZLOG
//(
// NET_Movement,
// "Blending entity to position %f x %f x %f",
// blendTransform.GetTranslation().GetX(),
// blendTransform.GetTranslation().GetY(),
// blendTransform.GetTranslation().GetZ()
//);
}
}