Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
925 B

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform.Models
  3. {
  4. using System;
  5. using System.Collections;
  6. using Oculus.Platform.Models;
  7. using System.Collections.Generic;
  8. using UnityEngine;
  9. public class LivestreamingStatus
  10. {
  11. public readonly bool CommentsVisible;
  12. public readonly bool IsPaused;
  13. public readonly bool LivestreamingEnabled;
  14. public readonly int LivestreamingType;
  15. public readonly bool MicEnabled;
  16. public LivestreamingStatus(IntPtr o)
  17. {
  18. CommentsVisible = CAPI.ovr_LivestreamingStatus_GetCommentsVisible(o);
  19. IsPaused = CAPI.ovr_LivestreamingStatus_GetIsPaused(o);
  20. LivestreamingEnabled = CAPI.ovr_LivestreamingStatus_GetLivestreamingEnabled(o);
  21. LivestreamingType = CAPI.ovr_LivestreamingStatus_GetLivestreamingType(o);
  22. MicEnabled = CAPI.ovr_LivestreamingStatus_GetMicEnabled(o);
  23. }
  24. }
  25. }