| 566 | } |
| 567 | |
| 568 | void NetworkedAnimator::playSound(String const& soundName, int loops) { |
| 569 | auto& sound = m_sounds.get(soundName); |
| 570 | sound.loops.set(loops); |
| 571 | sound.signals.send(SoundSignal::Play); |
| 572 | } |
| 573 | |
| 574 | void NetworkedAnimator::stopAllSounds(String const& soundName, float rampTime) { |
| 575 | auto& sound = m_sounds.get(soundName); |
no test coverage detected