| 109 | } |
| 110 | |
| 111 | void PhysXSample::link(RenderBaseActor* renderActor, PxShape* shape, PxRigidActor* actor) |
| 112 | { |
| 113 | PhysXShape theShape(actor, shape); |
| 114 | mPhysXShapeToRenderActorMap[theShape] = renderActor; |
| 115 | |
| 116 | renderActor->setPhysicsShape(shape, actor); |
| 117 | } |
| 118 | |
| 119 | RenderBaseActor* PhysXSample::getRenderActor(PxRigidActor* actor, PxShape* shape) |
| 120 | { |
nothing calls this directly
no test coverage detected