diff --git a/integrations/bullet/include/fggl/phys/bullet/motion.hpp b/integrations/bullet/include/fggl/phys/bullet/motion.hpp index 9fa51605fa026fdb420063adc770db6678cf3f1b..3a89788d8afb9c0de577c7e95587a78006c69aa2 100644 --- a/integrations/bullet/include/fggl/phys/bullet/motion.hpp +++ b/integrations/bullet/include/fggl/phys/bullet/motion.hpp @@ -45,11 +45,9 @@ namespace fggl::phys::bullet { ~FgglMotionState() override = default; void getWorldTransform(btTransform& worldTrans) const override { - debug::trace("BT: syncing from transform: {}.", (uint64_t)m_entity); - const auto* transform = m_world->tryGet<fggl::math::Transform>(m_entity); if ( transform == nullptr ) { - debug::warning("BT: attempted to get transform of entity without transform component."); + debug::error("BT: attempted to get transform of entity without transform component."); return; }