| 656 | } |
| 657 | |
| 658 | void NpShape::setName(const char* debugName) |
| 659 | { |
| 660 | NP_WRITE_CHECK(getOwnerScene()); |
| 661 | PX_CHECK_AND_RETURN(isWritable(), "PxShape::setName: shared shapes attached to actors are not writable."); |
| 662 | |
| 663 | mName = debugName; |
| 664 | |
| 665 | updatePvdProperties(mShape); |
| 666 | } |
| 667 | |
| 668 | const char* NpShape::getName() const |
| 669 | { |
no test coverage detected