Initialer Upload neues Unity-Projekt
This commit is contained in:
63
Assets/Oculus/Platform/Scripts/Models/Party.cs
Normal file
63
Assets/Oculus/Platform/Scripts/Models/Party.cs
Normal file
@ -0,0 +1,63 @@
|
||||
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
|
||||
|
||||
#pragma warning disable 0618
|
||||
|
||||
namespace Oculus.Platform.Models
|
||||
{
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Oculus.Platform.Models;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class Party
|
||||
{
|
||||
public readonly UInt64 ID;
|
||||
// May be null. Check before using.
|
||||
public readonly UserList InvitedUsersOptional;
|
||||
[Obsolete("Deprecated in favor of InvitedUsersOptional")]
|
||||
public readonly UserList InvitedUsers;
|
||||
// May be null. Check before using.
|
||||
public readonly User LeaderOptional;
|
||||
[Obsolete("Deprecated in favor of LeaderOptional")]
|
||||
public readonly User Leader;
|
||||
// May be null. Check before using.
|
||||
public readonly UserList UsersOptional;
|
||||
[Obsolete("Deprecated in favor of UsersOptional")]
|
||||
public readonly UserList Users;
|
||||
|
||||
|
||||
public Party(IntPtr o)
|
||||
{
|
||||
ID = CAPI.ovr_Party_GetID(o);
|
||||
{
|
||||
var pointer = CAPI.ovr_Party_GetInvitedUsers(o);
|
||||
InvitedUsers = new UserList(pointer);
|
||||
if (pointer == IntPtr.Zero) {
|
||||
InvitedUsersOptional = null;
|
||||
} else {
|
||||
InvitedUsersOptional = InvitedUsers;
|
||||
}
|
||||
}
|
||||
{
|
||||
var pointer = CAPI.ovr_Party_GetLeader(o);
|
||||
Leader = new User(pointer);
|
||||
if (pointer == IntPtr.Zero) {
|
||||
LeaderOptional = null;
|
||||
} else {
|
||||
LeaderOptional = Leader;
|
||||
}
|
||||
}
|
||||
{
|
||||
var pointer = CAPI.ovr_Party_GetUsers(o);
|
||||
Users = new UserList(pointer);
|
||||
if (pointer == IntPtr.Zero) {
|
||||
UsersOptional = null;
|
||||
} else {
|
||||
UsersOptional = Users;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user