| 77 | } |
| 78 | |
| 79 | void PhysicsObject::update(float dt, uint64_t currentStep) { |
| 80 | Object::update(dt, currentStep); |
| 81 | if (isSlave()) |
| 82 | m_netGroup.tickNetInterpolation(dt); |
| 83 | } |
| 84 | |
| 85 | RectF PhysicsObject::metaBoundBox() const { |
| 86 | return m_metaBoundBox; |
nothing calls this directly
no test coverage detected