chore: removed unnecessary print
This commit is contained in:
@@ -43,10 +43,6 @@ void EntityPositionInterpolator::interpolate_smoothed_entities(Clock::time_point
|
|||||||
m_registry->view<EntityPositionInterpolation, Transform>()
|
m_registry->view<EntityPositionInterpolation, Transform>()
|
||||||
.each([&](const auto entity, const EntityPositionInterpolation& interpolation, Transform& ts) {
|
.each([&](const auto entity, const EntityPositionInterpolation& interpolation, Transform& ts) {
|
||||||
auto [from, to, value] = interpolation.get_values_around(time_point);
|
auto [from, to, value] = interpolation.get_values_around(time_point);
|
||||||
spdlog::info("From: {} {} {} - To: {} {} {} - By: {}",
|
|
||||||
from.x, from.y, from.z,
|
|
||||||
to.x, to.y, to.z,
|
|
||||||
value);
|
|
||||||
ts.set_position(glm::mix(from, to, value));
|
ts.set_position(glm::mix(from, to, value));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user