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

31 lines
780 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// The system voip status is the priamary status in every
/// Models.SystemVoipState. The system voip state is used in parties and
/// horizon home to describe the current state of the input/output for voip in
/// an application. You can read more about system voip
/// [here](https://developer.oculus.com/documentation/unity/ps-parties/#voip-
/// options).
public enum SystemVoipStatus : int
{
[Description("UNKNOWN")]
Unknown,
[Description("UNAVAILABLE")]
Unavailable,
[Description("SUPPRESSED")]
Suppressed,
[Description("ACTIVE")]
Active,
}
}