-------------------------------CurveSets----------------------------------------------
| 410 | |
| 411 | // -------------------------------CurveSets---------------------------------------------- |
| 412 | void EveLensflare::PlayCurveSet( const std::string& name, const std::string& rangeName ) |
| 413 | { |
| 414 | for( auto it = m_curveSets.begin(); it != m_curveSets.end(); it++ ) |
| 415 | { |
| 416 | if( ( *it )->GetName() == name ) |
| 417 | { |
| 418 | if( rangeName.empty() ) |
| 419 | { |
| 420 | ( *it )->ResetTimeRange(); |
| 421 | ( *it )->Play(); |
| 422 | } |
| 423 | else |
| 424 | { |
| 425 | ( *it )->PlayTimeRange( rangeName.c_str() ); |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | void EveLensflare::StopCurveSet( const std::string& name ) |
| 432 | { |
nothing calls this directly
no test coverage detected