コード例 #1
0
ファイル: plPXPhysical.cpp プロジェクト: Drakesinger/Plasma
bool plPXPhysical::OverlapWithController(const plPXPhysicalControllerCore* controller)
{
    NxCapsule cap;
    controller->GetWorldSpaceCapsule(cap);
    NxShape* shape = fActor->getShapes()[0];
    return shape->checkOverlapCapsule(cap);
}
コード例 #2
0
ファイル: plPXPhysical.cpp プロジェクト: branan/Plasma-nobink
bool plPXPhysical::OverlapWithCapsule(NxCapsule& cap)
{
    NxShape* shape = fActor->getShapes()[0];
    return shape->checkOverlapCapsule(cap);
}