| 214 | } |
| 215 | |
| 216 | void Tr2Controller::Stop() |
| 217 | { |
| 218 | if( !m_isActive ) |
| 219 | { |
| 220 | return; |
| 221 | } |
| 222 | for( auto it = begin( m_stateMachines ); it != end( m_stateMachines ); ++it ) |
| 223 | { |
| 224 | ( *it )->Stop(); |
| 225 | } |
| 226 | m_isActive = false; |
| 227 | } |
| 228 | |
| 229 | |
| 230 | // param normalizedUpdateFrequency : value [0:1] on how freqeuntly the controller should be updating |
no test coverage detected