| 572 | } |
| 573 | |
| 574 | void NetworkedAnimator::stopAllSounds(String const& soundName, float rampTime) { |
| 575 | auto& sound = m_sounds.get(soundName); |
| 576 | sound.volumeRampTime.set(rampTime); |
| 577 | sound.signals.send(SoundSignal::StopAll); |
| 578 | } |
| 579 | |
| 580 | void NetworkedAnimator::setEffectEnabled(String const& effect, bool enabled) { |
| 581 | m_effects.get(effect).enabled.set(enabled); |
no test coverage detected