-----------------------------------------------------------------------------
| 263 | |
| 264 | // ----------------------------------------------------------------------------- |
| 265 | float EveMultiEffect::GetCurveSetDuration( const std::string& name ) const |
| 266 | { |
| 267 | float maxDuration = 0.f; |
| 268 | for( auto it = m_curveSets.begin(); it != m_curveSets.end(); it++ ) |
| 269 | { |
| 270 | if( ( *it )->GetName() == name ) |
| 271 | { |
| 272 | maxDuration = max( maxDuration, ( *it )->GetMaxCurveDuration() ); |
| 273 | } |
| 274 | } |
| 275 | return maxDuration; |
| 276 | } |
| 277 | |
| 278 | // ----------------------------------------------------------------------------- |
| 279 | float EveMultiEffect::GetRangeDuration( const std::string& name, const std::string& rangeName ) const |
nothing calls this directly
no test coverage detected