| 538 | } |
| 539 | |
| 540 | void DragonBone::stop() { |
| 541 | AssertIf(_flags.isOn(Node::Cleanup), "can not operate on an invalid DragonBone"); |
| 542 | _armatureProxy->getAnimation()->stop(Slice::Empty); |
| 543 | } |
| 544 | |
| 545 | void DragonBone::setSlot(String name, Node* item) { |
| 546 | AssertIf(_flags.isOn(Node::Cleanup), "can not operate on an invalid DragonBone"); |
nothing calls this directly
no test coverage detected