| 615 | } |
| 616 | |
| 617 | void NpShape::setFlags(PxShapeFlags inFlags) |
| 618 | { |
| 619 | NP_WRITE_CHECK(getOwnerScene()); |
| 620 | PX_CHECK_AND_RETURN(isWritable(), "PxShape::setFlags: shared shapes attached to actors are not writable."); |
| 621 | PX_SIMD_GUARD; |
| 622 | |
| 623 | setFlagsInternal(inFlags); |
| 624 | } |
| 625 | |
| 626 | PxShapeFlags NpShape::getFlags() const |
| 627 | { |
no outgoing calls
no test coverage detected