-----------------------------------------------------------------------------
| 219 | |
| 220 | // ----------------------------------------------------------------------------- |
| 221 | void EveMultiEffect::PlayCurveSet( const std::string& name, const std::string& rangeName ) |
| 222 | { |
| 223 | for( auto it = m_curveSets.begin(); it != m_curveSets.end(); it++ ) |
| 224 | { |
| 225 | if( ( *it )->GetName() == name ) |
| 226 | { |
| 227 | if( rangeName.empty() ) |
| 228 | { |
| 229 | ( *it )->ResetTimeRange(); |
| 230 | ( *it )->Play(); |
| 231 | } |
| 232 | else |
| 233 | { |
| 234 | ( *it )->PlayTimeRange( rangeName.c_str() ); |
| 235 | } |
| 236 | } |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | // ----------------------------------------------------------------------------- |
| 241 | void EveMultiEffect::StopCurveSet( const std::string& name ) |
nothing calls this directly
no test coverage detected