| 3895 | |
| 3896 | |
| 3897 | void EveTurretSet::SetControllerVariable( const char* name, float value ) |
| 3898 | { |
| 3899 | if( m_firingEffect ) |
| 3900 | { |
| 3901 | m_firingEffect->SetControllerVariable( name, value ); |
| 3902 | } |
| 3903 | |
| 3904 | auto ambientEffect = GetAmbientEffectOrGeneratedEffect(); |
| 3905 | if( ambientEffect ) |
| 3906 | { |
| 3907 | ambientEffect->SetControllerVariable( name, value ); |
| 3908 | } |
| 3909 | } |
| 3910 | |
| 3911 | void EveTurretSet::HandleControllerEvent( const char* name ) |
| 3912 | { |
no outgoing calls
no test coverage detected