added SteamFriends.SetInGameVoiceSpeaking

This commit is contained in:
Andreas Stange 2024-02-15 21:59:56 +01:00
parent 4463739be5
commit 01e2e6c24a

View File

@ -376,6 +376,15 @@ public static bool ListenForFriendsMessages
} }
} }
/// <summary>
/// Let Steam know that the user is currently using voice chat in game.
/// This will suppress the microphone for all voice communication in the Steam UI.
/// </summary>
public static void SetInGameVoiceSpeaking(SteamId steamID, bool speaking)
{
Internal.SetInGameVoiceSpeaking( steamID, speaking );
}
/// <summary> /// <summary>
/// Gets whether or not the current user is following the user with the given <paramref name="steamID"/>. /// Gets whether or not the current user is following the user with the given <paramref name="steamID"/>.
/// </summary> /// </summary>