| 762 | |
| 763 | |
| 764 | void EveStretch3::SetControllerVariable( const char* name, float value ) |
| 765 | { |
| 766 | RunOnComponents( [name, value]( IEveSpaceObjectChild* c ) { c->SetControllerVariable( name, value ); } ); |
| 767 | |
| 768 | for( auto it = begin( m_controllers ); it != end( m_controllers ); ++it ) |
| 769 | { |
| 770 | ( *it )->SetVariable( name, value ); |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | |
| 775 | void EveStretch3::HandleControllerEvent( const char* name ) |
nothing calls this directly
no test coverage detected