| 288 | } |
| 289 | |
| 290 | void EveChildPlug::StopAllCurveSets() |
| 291 | { |
| 292 | for( auto it = m_objects.begin(); it != m_objects.end(); it++ ) |
| 293 | { |
| 294 | if( auto owner = dynamic_cast<ITr2CurveSetOwner*>( *it ) ) |
| 295 | { |
| 296 | owner->StopAllCurveSets(); |
| 297 | } |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | void EveChildPlug::PlayCurveSet( const std::string& name, const std::string& rangeName ) |
| 302 | { |