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

57 lines
2.3 KiB
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using System;
using System.Collections;
using Oculus.Platform.Models;
using System.Collections.Generic;
using UnityEngine;
/// The NetSyncOption configures network connections, focusing on VoIP data
/// streams. It includes 'zone_id' for unique identifiers within the
/// application, 'voip_stream_default' to set default VoIP stream modes, and
/// 'voip_group' to assign a VoIP group upon connection. It can be set when
/// create a new connection and retrieved using Models.NetSyncConnection.
public class NetSyncOptions {
/// Creates a new instance of ::NetSyncOptions which is used to customize the option flow. It returns a handle to the newly created options object, which can be used to set various properties for the options.
public NetSyncOptions() {
Handle = CAPI.ovr_NetSyncOptions_Create();
}
/// If provided, immediately set the voip_group to this value upon connection
/// and can be retrieved using NetSyncSession#VoipGroup
public void SetVoipGroup(string value) {
CAPI.ovr_NetSyncOptions_SetVoipGroup(Handle, value);
}
/// When a new remote voip user connects, default that connection to this
/// stream type by default. There are three modes:
/// NetSyncVoipStreamMode.Unknown, NetSyncVoipStreamMode.Ambisonic,
/// NetSyncVoipStreamMode.Mono.
public void SetVoipStreamDefault(NetSyncVoipStreamMode value) {
CAPI.ovr_NetSyncOptions_SetVoipStreamDefault(Handle, value);
}
/// A `string` represents the unique identifier within the current application
/// grouping.
public void SetZoneId(string value) {
CAPI.ovr_NetSyncOptions_SetZoneId(Handle, value);
}
/// This operator allows you to pass an instance of the ::NetSyncOptions class to native C code as an IntPtr. The operator returns the handle of the options object, or IntPtr.Zero if the object is null.
public static explicit operator IntPtr(NetSyncOptions options) {
return options != null ? options.Handle : IntPtr.Zero;
}
/// Destroys an existing instance of the ::NetSyncOptions and frees up memory when you're done using it.
~NetSyncOptions() {
CAPI.ovr_NetSyncOptions_Destroy(Handle);
}
IntPtr Handle;
}
}