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