| 525 | void CCar::net_Export(CSE_Abstract* E) { inherited::net_Export(E); } |
| 526 | |
| 527 | void CCar::OnHUDDraw(CCustomHUD* hud, u32 context_id, IRenderable* root) |
| 528 | { |
| 529 | #ifdef DEBUG |
| 530 | Fvector velocity; |
| 531 | m_pPhysicsShell->get_LinearVel(velocity); |
| 532 | HUD().Font().pFontStat->SetColor(0xffffffff); |
| 533 | HUD().Font().pFontStat->OutSet(120, 530); |
| 534 | HUD().Font().pFontStat->OutNext("Position: [%3.2f, %3.2f, %3.2f]", VPUSH(Position())); |
| 535 | HUD().Font().pFontStat->OutNext("Velocity: [%3.2f]", velocity.magnitude()); |
| 536 | |
| 537 | #endif |
| 538 | } |
| 539 | |
| 540 | // void CCar::Hit(float P,Fvector &dir,CObject * who,s16 element,Fvector p_in_object_space, float impulse, ALife::EHitType hit_type) |
| 541 | void CCar::Hit(SHit* pHDS) |
no test coverage detected