| 5176 | } |
| 5177 | |
| 5178 | void ShapeBase::restoreBlendAnimation(U32 tag) |
| 5179 | { |
| 5180 | for (S32 i = 0; i < blend_clips.size(); i++) |
| 5181 | { |
| 5182 | if (blend_clips[i].tag == tag) |
| 5183 | { |
| 5184 | if (blend_clips[i].thread) |
| 5185 | { |
| 5186 | mShapeInstance->destroyThread(blend_clips[i].thread); |
| 5187 | } |
| 5188 | blend_clips.erase_fast(i); |
| 5189 | break; |
| 5190 | } |
| 5191 | } |
| 5192 | } |
| 5193 | |
| 5194 | // |
| 5195 |
nothing calls this directly
no test coverage detected