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

30 lines
933 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform.Models
{
using System;
using System.Collections;
using Oculus.Platform.Models;
using System.Collections.Generic;
using UnityEngine;
/// The livestreaming application status represents the status result of
/// whether the livestreaming is enabled for an app. If your app is enabled,
/// you will receive a notification by
/// Message::MessageType::Notification_Livestreaming_StatusChange when the
/// livestreaming session gets updated.
public class LivestreamingApplicationStatus
{
/// This is a boolean field and represents whether the app is allowed to do the
/// livestreaming or not.
public readonly bool StreamingEnabled;
public LivestreamingApplicationStatus(IntPtr o)
{
StreamingEnabled = CAPI.ovr_LivestreamingApplicationStatus_GetStreamingEnabled(o);
}
}
}