| 49 | } |
| 50 | |
| 51 | void CPhysicsSkeletonObject::CreatePhysicsShell(CSE_Abstract* e) |
| 52 | { |
| 53 | CSE_PHSkeleton* po = smart_cast<CSE_PHSkeleton*>(e); |
| 54 | if (m_pPhysicsShell) |
| 55 | return; |
| 56 | if (!Visual()) |
| 57 | return; |
| 58 | m_pPhysicsShell = P_build_Shell(this, !po->_flags.test(CSE_PHSkeleton::flActive)); |
| 59 | } |
| 60 | |
| 61 | void CPhysicsSkeletonObject::shedule_Update(u32 dt) |
| 62 | { |
nothing calls this directly
no test coverage detected