VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.meta.xr.sdk.platform/Scripts/LivestreamingMicrophoneStatus.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

37 lines
1.3 KiB
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// It's an enum that represents the status of a microphone during a
/// livestream. It provides a simple and standardized way to represent the
/// status of a microphone during a livestream, which can be useful for various
/// applications and use cases. See
/// [livestreaming](https://developer.oculus.com/blog/sharing-via-
/// livestreaming-now-available-for-rift-applications/) documentation for more
/// details.
public enum LivestreamingMicrophoneStatus : int
{
[Description("UNKNOWN")]
Unknown,
/// It indicates that the microphone is currently on and transmitting audio.
/// This value can be used to indicate that the microphone is functioning
/// properly and that audio is being captured and transmitted during the
/// livestream.
[Description("MICROPHONE_ON")]
MicrophoneOn,
/// It indicates that the microphone is currently off and not transmitting
/// audio. This value can be used to indicate that the microphone has been
/// turned off or muted, either intentionally or unintentionally, during the
/// livestream.
[Description("MICROPHONE_OFF")]
MicrophoneOff,
}
}