-----------------------------------------------------------------------------
| 182 | |
| 183 | // ----------------------------------------------------------------------------- |
| 184 | void EveMultiEffect::SetControllerVariable( const char* name, float value ) |
| 185 | { |
| 186 | for( auto it = begin( m_controllers ); it != end( m_controllers ); ++it ) |
| 187 | { |
| 188 | ( *it )->SetVariable( name, value ); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | // ----------------------------------------------------------------------------- |
| 193 | void EveMultiEffect::HandleControllerEvent( const char* name ) |
nothing calls this directly
no test coverage detected