| 257 | } |
| 258 | |
| 259 | void CPhysicsShellHolder::PHSetLinearVell(Fvector& velocity) |
| 260 | { |
| 261 | if (!m_pPhysicsShell) |
| 262 | { |
| 263 | return; |
| 264 | } |
| 265 | m_pPhysicsShell->set_LinearVel(velocity); |
| 266 | } |
| 267 | |
| 268 | f32 CPhysicsShellHolder::GetMass() { return m_pPhysicsShell ? m_pPhysicsShell->getMass() : 0; } |
| 269 |
nothing calls this directly
no test coverage detected