| 397 | } |
| 398 | |
| 399 | void GuiShapeEdPreview::removeThread(S32 slot) |
| 400 | { |
| 401 | if ( slot < mThreads.size() ) |
| 402 | { |
| 403 | if ( mThreads[slot].key ) |
| 404 | mModel->destroyThread( mThreads[slot].key ); |
| 405 | mThreads.erase( slot ); |
| 406 | |
| 407 | if ( mActiveThread >= mThreads.size() ) |
| 408 | mActiveThread = mThreads.size() - 1; |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | void GuiShapeEdPreview::setTimeScale( F32 scale ) |
| 413 | { |
no test coverage detected