| 598 | } |
| 599 | |
| 600 | const char* GuiShapeEdPreview::getMountThreadSequence(S32 mountSlot) const |
| 601 | { |
| 602 | if ( mountSlot < mMounts.size() ) |
| 603 | { |
| 604 | MountedShape* mount = mMounts[mountSlot]; |
| 605 | return mount->mThread.seqName; |
| 606 | } |
| 607 | else |
| 608 | return ""; |
| 609 | } |
| 610 | |
| 611 | void GuiShapeEdPreview::setMountThreadSequence(S32 mountSlot, const char* seqName) |
| 612 | { |
no test coverage detected