| 576 | } |
| 577 | |
| 578 | Vec2F Npc::getAbsolutePosition(Vec2F relativePosition) const { |
| 579 | if (m_humanoid.facingDirection() == Direction::Left) |
| 580 | relativePosition[0] *= -1; |
| 581 | return m_movementController->position() + relativePosition; |
| 582 | } |
| 583 | |
| 584 | void Npc::tickShared(float dt) { |
| 585 | if (m_hitDamageNotificationLimiter) |
nothing calls this directly
no test coverage detected