| 451 | } |
| 452 | |
| 453 | void GuiShapeEdPreview::removeThread(S32 slot) |
| 454 | { |
| 455 | if ( slot < mThreads.size() ) |
| 456 | { |
| 457 | if ( mThreads[slot].key ) |
| 458 | mModel->destroyThread( mThreads[slot].key ); |
| 459 | mThreads.erase( slot ); |
| 460 | |
| 461 | if ( mActiveThread >= mThreads.size() ) |
| 462 | mActiveThread = mThreads.size() - 1; |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | void GuiShapeEdPreview::setTimeScale( F32 scale ) |
| 467 | { |
no test coverage detected