| 247 | } |
| 248 | |
| 249 | void CPhysicsShellHolder::PHGetLinearVell(Fvector& velocity) |
| 250 | { |
| 251 | if (!m_pPhysicsShell) |
| 252 | { |
| 253 | velocity.set(0, 0, 0); |
| 254 | return; |
| 255 | } |
| 256 | m_pPhysicsShell->get_LinearVel(velocity); |
| 257 | } |
| 258 | |
| 259 | void CPhysicsShellHolder::PHSetLinearVell(Fvector& velocity) |
| 260 | { |
nothing calls this directly
no test coverage detected