--------------------------------- RigidBodyComponent::SetVelocity
| 110 | // RigidBodyComponent::SetVelocity |
| 111 | // |
| 112 | void RigidBodyComponent::SetVelocity(vec3 const& vel) |
| 113 | { |
| 114 | ET_ASSERT(m_Body != nullptr); |
| 115 | m_Body->setLinearVelocity(ToBtVec3(vel)); |
| 116 | } |
| 117 | |
| 118 | //---------------------------------------- |
| 119 | // RigidBodyComponent::SetAngularVelocity |
nothing calls this directly
no test coverage detected