| 859 | } |
| 860 | |
| 861 | void EveEffectRoot2::HandleControllerEvent( const char* name ) |
| 862 | { |
| 863 | for( auto it = begin( m_controllers ); it != end( m_controllers ); ++it ) |
| 864 | { |
| 865 | ( *it )->HandleEvent( name ); |
| 866 | } |
| 867 | for( auto it = begin( m_effectChildren ); it != end( m_effectChildren ); ++it ) |
| 868 | { |
| 869 | ( *it )->HandleControllerEvent( name ); |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | // ----------------------------------------------------------------------------- |
| 874 | void EveEffectRoot2::StartControllers() |
nothing calls this directly
no test coverage detected