Placeholder-Software / Dissonance

Unity Voice Chat Asset
69 stars 5 forks source link

[Bug] Muted Audio Plays From Wrong Player #195

Closed martindevans closed 3 years ago

martindevans commented 4 years ago

Reported on Discord by NicoKuroKusagi. When a player mutes themselves, their voices plays out of another player. As shown in this video: https://clips.twitch.tv/PlausibleEphemeralParrotYouDontSay

Self muting is implemented as:

public void ToggleMicrophone()
{
    bool active = !comms.IsMuted;
    comms.IsMuted = active;
    /* snip UI update code */
}

Network backend: Dark Rift 2 Dissonance Version: 6.4.1

martindevans commented 3 years ago

No one else has reported an issue like this and I've never been able to reproduce it so I'll close this issue now. If anyone else has this problem don't hesitate to re-open the issue!