| 618 | } |
| 619 | |
| 620 | F32 GuiShapeEdPreview::getMountThreadPos(S32 mountSlot) const |
| 621 | { |
| 622 | if ( mountSlot < mMounts.size() ) |
| 623 | { |
| 624 | MountedShape* mount = mMounts[mountSlot]; |
| 625 | if ( mount->mThread.key ) |
| 626 | return mount->mShape->getPos( mount->mThread.key ); |
| 627 | } |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | void GuiShapeEdPreview::setMountThreadPos(S32 mountSlot, F32 pos) |
| 632 | { |
no test coverage detected