├── .github └── ISSUE_TEMPLATE │ └── bug_report.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Config ├── Android │ └── AndroidEngine.ini ├── DefaultEditor.ini ├── DefaultEngine.ini ├── DefaultGame.ini └── DefaultInput.ini ├── Content └── SharedSceneSample │ ├── Blueprints │ ├── BP_LobbyPawn.uasset │ ├── BP_OculusSceneActor.uasset │ ├── BP_Scene.uasset │ ├── BP_SharedSpacesPawn.uasset │ ├── BP_SpatialAnchorModel.uasset │ ├── Components │ │ ├── BP_LobbyMenuManager.uasset │ │ ├── BP_MenuManagerComponent.uasset │ │ ├── BP_SceneLableComponent.uasset │ │ ├── BP_SessionManager.uasset │ │ └── BP_SpatialAnchorManagerComponent.uasset │ ├── GameModes │ │ ├── Lobby │ │ │ ├── BP_LobbyGameMode.uasset │ │ │ ├── BP_LobbyGameState.uasset │ │ │ ├── BP_LobbyPlayerController.uasset │ │ │ └── BP_LobbyPlayerState.uasset │ │ └── SharedSpaces │ │ │ ├── BP_SharedSpacesGameMode.uasset │ │ │ └── BP_SharedSpacesPlayerState.uasset │ └── UI │ │ ├── BP_AnchorInfo.uasset │ │ ├── BP_Lobby_Menu.uasset │ │ ├── BP_Menu.uasset │ │ ├── BP_MenuItem.uasset │ │ └── BP_Menu_Main.uasset │ ├── Inputs │ ├── Actions │ │ ├── IA_DeselectAllAnchors.uasset │ │ ├── IA_MenuSelectionUpDown.uasset │ │ └── IA_SelectMainMenuItem.uasset │ └── Mappings │ │ └── IMC_Base.uasset │ ├── Maps │ ├── Lobby.umap │ └── SharedSpaces.umap │ ├── Materials │ ├── CouchMaterial.uasset │ ├── DefaultTextMaterialEmissive.uasset │ ├── DeskMaterial.uasset │ ├── DoorMaterial.uasset │ ├── FloorCeilingMaterial.uasset │ ├── MI_AnchorIcon.uasset │ ├── MI_HelpInfoBackground.uasset │ ├── MI_LaserBeam.uasset │ ├── MI_MenuBackground.uasset │ ├── MI_MenuItemSurface.uasset │ ├── MPC_AnchorStates.uasset │ ├── M_ColoringMaterial.uasset │ ├── M_FadeMaterial.uasset │ ├── M_UIIcon.uasset │ ├── OtherMaterial.uasset │ ├── PassthroughAlpha.uasset │ ├── WallArtMaterial.uasset │ ├── WallMaterial.uasset │ └── WindowMaterial.uasset │ ├── Meshes │ ├── Bounded3dMesh.uasset │ ├── CouchMesh.uasset │ ├── DeskMesh.uasset │ ├── DoorMesh.uasset │ ├── FloorCeilingMesh.uasset │ ├── Laser_Mesh.uasset │ ├── OtherMesh.uasset │ ├── PassthroughSphere.uasset │ ├── SM_AchorIcon.uasset │ ├── SM_Anchor.uasset │ ├── SM_AnchorBackground.uasset │ ├── SM_Axis.uasset │ ├── SM_ForwardAxis.uasset │ ├── SM_LaserBeam.uasset │ ├── SM_RightAxis.uasset │ ├── SM_UpAxis.uasset │ ├── WallArtMesh.uasset │ ├── WallMesh.uasset │ └── WindowMesh.uasset │ ├── Textures │ ├── CouchText.uasset │ ├── CreateSession.uasset │ ├── DeskText.uasset │ ├── DoorText.uasset │ ├── JoinSession.uasset │ ├── Minimize.uasset │ ├── Move.uasset │ ├── NoStorageSD.uasset │ ├── OtherText.uasset │ ├── Roomscale.uasset │ ├── StorageCloud.uasset │ ├── StorageSD.uasset │ ├── ToTop.uasset │ ├── Trash.uasset │ ├── WallArtText.uasset │ └── WindowText.uasset │ ├── oculus_samples.png │ └── oculus_samples.uasset ├── LICENSE ├── Media ├── unreal-host-menu-bp.png ├── unreal-scene-blueprint-folder.png ├── unreal-scene-menu1.png ├── unreal-scene-menu2.png ├── unreal-scene-menu3.png ├── unreal-spatial-anchor-menu1.png ├── unreal-spatial-anchor-menu2.png └── unreal-user-interface-menu1.png ├── Plugins └── MetaXRPlatform │ ├── Config │ └── FilterPlugin.ini │ ├── Documentation │ ├── Media │ │ ├── application_lifecycle_event_registration.png │ │ ├── challenges_get_entries_after_rank_blueprint.png │ │ ├── enumeration_blueprint.png │ │ ├── group_join_intent_received_blueprint.png │ │ ├── group_presence_set_blueprint.png │ │ ├── group_presence_set_blueprint_2.png │ │ ├── group_presence_set_blueprint_3.png │ │ ├── oculus_platform_started_event.png │ │ ├── platform_get_logged_in_user_id.png │ │ ├── start_message_pump.png │ │ └── user_get_logged_in_user_friends_blueprint.png │ └── OVRPlatform.md │ ├── LICENSE.txt │ ├── OculusPlatform.uplugin │ ├── Resources │ └── Icon128.png │ ├── Source │ ├── OVRPlatform │ │ ├── OVRPlatform.Build.cs │ │ ├── Private │ │ │ ├── OVRNetIPAddress.h │ │ │ ├── OVRPlatform.cpp │ │ │ ├── OVRPlatformCollectionConverters.h │ │ │ ├── OVRPlatformCppPageRequests.cpp │ │ │ ├── OVRPlatformCppRequests.cpp │ │ │ ├── OVRPlatformEnums.cpp │ │ │ ├── OVRPlatformFunctions.cpp │ │ │ ├── OVRPlatformModels.cpp │ │ │ ├── OVRPlatformOptionsConverters.h │ │ │ ├── OVRPlatformPageRequests.cpp │ │ │ ├── OVRPlatformRequests.cpp │ │ │ ├── OVRPlatformRequestsConverters.h │ │ │ ├── OVRPlatformRequestsSupport.cpp │ │ │ ├── OVRPlatformSDK.cpp │ │ │ ├── OVRPlatformSubsystem.cpp │ │ │ └── OVRPlatformUtils.cpp │ │ └── Public │ │ │ ├── OVRPlatform.h │ │ │ ├── OVRPlatformCppPageRequests.h │ │ │ ├── OVRPlatformCppRequests.h │ │ │ ├── OVRPlatformEnums.h │ │ │ ├── OVRPlatformFunctions.h │ │ │ ├── OVRPlatformModels.h │ │ │ ├── OVRPlatformOptions.h │ │ │ ├── OVRPlatformPageRequests.h │ │ │ ├── OVRPlatformRequests.h │ │ │ ├── OVRPlatformRequestsSupport.h │ │ │ ├── OVRPlatformSDK.h │ │ │ ├── OVRPlatformSubsystem.h │ │ │ ├── OVRPlatformTypes.h │ │ │ └── OVRPlatformUtils.h │ └── Thirdparty │ │ └── OVRPlatformSDK │ │ ├── LibOVRPlatform │ │ ├── include │ │ │ ├── OVR_AbuseReportOptions.h │ │ │ ├── OVR_AbuseReportRecording.h │ │ │ ├── OVR_AbuseReportType.h │ │ │ ├── OVR_AbuseReportVideoMode.h │ │ │ ├── OVR_AccountAgeCategory.h │ │ │ ├── OVR_AchievementDefinition.h │ │ │ ├── OVR_AchievementDefinitionArray.h │ │ │ ├── OVR_AchievementProgress.h │ │ │ ├── OVR_AchievementProgressArray.h │ │ │ ├── OVR_AchievementType.h │ │ │ ├── OVR_AchievementUpdate.h │ │ │ ├── OVR_AdvancedAbuseReportOptions.h │ │ │ ├── OVR_AppAgeCategory.h │ │ │ ├── OVR_AppDownloadProgressResult.h │ │ │ ├── OVR_AppDownloadResult.h │ │ │ ├── OVR_AppInstallResult.h │ │ │ ├── OVR_AppStatus.h │ │ │ ├── OVR_ApplicationInvite.h │ │ │ ├── OVR_ApplicationInviteArray.h │ │ │ ├── OVR_ApplicationOptions.h │ │ │ ├── OVR_ApplicationVersion.h │ │ │ ├── OVR_AssetDetails.h │ │ │ ├── OVR_AssetDetailsArray.h │ │ │ ├── OVR_AssetFileDeleteResult.h │ │ │ ├── OVR_AssetFileDownloadCancelResult.h │ │ │ ├── OVR_AssetFileDownloadResult.h │ │ │ ├── OVR_AssetFileDownloadUpdate.h │ │ │ ├── OVR_AvatarEditorOptions.h │ │ │ ├── OVR_AvatarEditorResult.h │ │ │ ├── OVR_BlockedUser.h │ │ │ ├── OVR_BlockedUserArray.h │ │ │ ├── OVR_Challenge.h │ │ │ ├── OVR_ChallengeArray.h │ │ │ ├── OVR_ChallengeCreationType.h │ │ │ ├── OVR_ChallengeEntry.h │ │ │ ├── OVR_ChallengeEntryArray.h │ │ │ ├── OVR_ChallengeOptions.h │ │ │ ├── OVR_ChallengeViewerFilter.h │ │ │ ├── OVR_ChallengeVisibility.h │ │ │ ├── OVR_CowatchViewer.h │ │ │ ├── OVR_CowatchViewerArray.h │ │ │ ├── OVR_CowatchViewerUpdate.h │ │ │ ├── OVR_CowatchingState.h │ │ │ ├── OVR_DataStore.h │ │ │ ├── OVR_Destination.h │ │ │ ├── OVR_DestinationArray.h │ │ │ ├── OVR_Error.h │ │ │ ├── OVR_Functions_ApplicationLifecycle.h │ │ │ ├── OVR_Functions_Voip.h │ │ │ ├── OVR_GroupPresenceJoinIntent.h │ │ │ ├── OVR_GroupPresenceLeaveIntent.h │ │ │ ├── OVR_GroupPresenceOptions.h │ │ │ ├── OVR_HttpTransferUpdate.h │ │ │ ├── OVR_InstalledApplication.h │ │ │ ├── OVR_InstalledApplicationArray.h │ │ │ ├── OVR_InviteOptions.h │ │ │ ├── OVR_InvitePanelResultInfo.h │ │ │ ├── OVR_KeyValuePairType.h │ │ │ ├── OVR_LanguagePackInfo.h │ │ │ ├── OVR_LaunchBlockFlowResult.h │ │ │ ├── OVR_LaunchDetails.h │ │ │ ├── OVR_LaunchFriendRequestFlowResult.h │ │ │ ├── OVR_LaunchInvitePanelFlowResult.h │ │ │ ├── OVR_LaunchReportFlowResult.h │ │ │ ├── OVR_LaunchResult.h │ │ │ ├── OVR_LaunchType.h │ │ │ ├── OVR_LaunchUnblockFlowResult.h │ │ │ ├── OVR_Leaderboard.h │ │ │ ├── OVR_LeaderboardArray.h │ │ │ ├── OVR_LeaderboardEntry.h │ │ │ ├── OVR_LeaderboardEntryArray.h │ │ │ ├── OVR_LeaderboardFilterType.h │ │ │ ├── OVR_LeaderboardStartAt.h │ │ │ ├── OVR_LeaderboardUpdateStatus.h │ │ │ ├── OVR_LinkedAccount.h │ │ │ ├── OVR_LinkedAccountArray.h │ │ │ ├── OVR_LivestreamingApplicationStatus.h │ │ │ ├── OVR_LivestreamingAudience.h │ │ │ ├── OVR_LivestreamingMicrophoneStatus.h │ │ │ ├── OVR_LivestreamingStartResult.h │ │ │ ├── OVR_LivestreamingStartStatus.h │ │ │ ├── OVR_LivestreamingStatus.h │ │ │ ├── OVR_LivestreamingVideoStats.h │ │ │ ├── OVR_LogEventName.h │ │ │ ├── OVR_LogEventParameter.h │ │ │ ├── OVR_ManagedInfo.h │ │ │ ├── OVR_MediaContentType.h │ │ │ ├── OVR_Message.h │ │ │ ├── OVR_MessageType.h │ │ │ ├── OVR_Microphone.h │ │ │ ├── OVR_MicrophoneAvailabilityState.h │ │ │ ├── OVR_MultiplayerErrorErrorKey.h │ │ │ ├── OVR_MultiplayerErrorOptions.h │ │ │ ├── OVR_NetSyncConnection.h │ │ │ ├── OVR_NetSyncConnectionStatus.h │ │ │ ├── OVR_NetSyncDisconnectReason.h │ │ │ ├── OVR_NetSyncOptions.h │ │ │ ├── OVR_NetSyncSession.h │ │ │ ├── OVR_NetSyncSessionArray.h │ │ │ ├── OVR_NetSyncSessionsChangedNotification.h │ │ │ ├── OVR_NetSyncSetSessionPropertyResult.h │ │ │ ├── OVR_NetSyncVoipAttenuationValue.h │ │ │ ├── OVR_NetSyncVoipAttenuationValueArray.h │ │ │ ├── OVR_NetSyncVoipMicSource.h │ │ │ ├── OVR_NetSyncVoipStreamMode.h │ │ │ ├── OVR_OrgScopedID.h │ │ │ ├── OVR_Packet.h │ │ │ ├── OVR_Party.h │ │ │ ├── OVR_PartyID.h │ │ │ ├── OVR_PartyMicState.h │ │ │ ├── OVR_PartyUpdateAction.h │ │ │ ├── OVR_PartyUpdateNotification.h │ │ │ ├── OVR_PermissionGrantStatus.h │ │ │ ├── OVR_PermissionType.h │ │ │ ├── OVR_Pid.h │ │ │ ├── OVR_PidArray.h │ │ │ ├── OVR_Platform.h │ │ │ ├── OVR_PlatformInitialize.h │ │ │ ├── OVR_PlatformInitializeResult.h │ │ │ ├── OVR_PlatformVersion.h │ │ │ ├── OVR_Platform_Defs.h │ │ │ ├── OVR_Price.h │ │ │ ├── OVR_Product.h │ │ │ ├── OVR_ProductArray.h │ │ │ ├── OVR_ProductType.h │ │ │ ├── OVR_Purchase.h │ │ │ ├── OVR_PurchaseArray.h │ │ │ ├── OVR_RejoinDialogResult.h │ │ │ ├── OVR_ReportRequestResponse.h │ │ │ ├── OVR_Requests_AbuseReport.h │ │ │ ├── OVR_Requests_Achievements.h │ │ │ ├── OVR_Requests_Application.h │ │ │ ├── OVR_Requests_ApplicationLifecycle.h │ │ │ ├── OVR_Requests_AssetFile.h │ │ │ ├── OVR_Requests_Avatar.h │ │ │ ├── OVR_Requests_Challenges.h │ │ │ ├── OVR_Requests_Cowatching.h │ │ │ ├── OVR_Requests_DeviceApplicationIntegrity.h │ │ │ ├── OVR_Requests_Entitlement.h │ │ │ ├── OVR_Requests_GroupPresence.h │ │ │ ├── OVR_Requests_IAP.h │ │ │ ├── OVR_Requests_LanguagePack.h │ │ │ ├── OVR_Requests_Leaderboard.h │ │ │ ├── OVR_Requests_Media.h │ │ │ ├── OVR_Requests_Notification.h │ │ │ ├── OVR_Requests_Party.h │ │ │ ├── OVR_Requests_RichPresence.h │ │ │ ├── OVR_Requests_User.h │ │ │ ├── OVR_Requests_UserAgeCategory.h │ │ │ ├── OVR_Requests_Voip.h │ │ │ ├── OVR_RichPresenceExtraContext.h │ │ │ ├── OVR_RichPresenceOptions.h │ │ │ ├── OVR_RosterOptions.h │ │ │ ├── OVR_SdkAccount.h │ │ │ ├── OVR_SdkAccountArray.h │ │ │ ├── OVR_SdkAccountType.h │ │ │ ├── OVR_SendInvitesResult.h │ │ │ ├── OVR_ServiceProvider.h │ │ │ ├── OVR_ShareMediaResult.h │ │ │ ├── OVR_ShareMediaStatus.h │ │ │ ├── OVR_SupplementaryMetric.h │ │ │ ├── OVR_SystemVoipState.h │ │ │ ├── OVR_SystemVoipStatus.h │ │ │ ├── OVR_TimeWindow.h │ │ │ ├── OVR_Types.h │ │ │ ├── OVR_User.h │ │ │ ├── OVR_UserAccountAgeCategory.h │ │ │ ├── OVR_UserArray.h │ │ │ ├── OVR_UserCapability.h │ │ │ ├── OVR_UserCapabilityArray.h │ │ │ ├── OVR_UserDataStoreUpdateResponse.h │ │ │ ├── OVR_UserOptions.h │ │ │ ├── OVR_UserOrdering.h │ │ │ ├── OVR_UserPresenceStatus.h │ │ │ ├── OVR_UserProof.h │ │ │ ├── OVR_UserReportID.h │ │ │ ├── OVR_VoipBitrate.h │ │ │ ├── OVR_VoipDecoder.h │ │ │ ├── OVR_VoipDtxState.h │ │ │ ├── OVR_VoipEncoder.h │ │ │ ├── OVR_VoipMuteState.h │ │ │ ├── OVR_VoipOptions.h │ │ │ ├── OVR_VoipSampleRate.h │ │ │ ├── OVR_Voip_LowLevel.h │ │ │ └── Windows │ │ │ │ └── OVR_PlatformLoader.cpp │ │ └── lib │ │ │ ├── LibOVRPlatformImpl64_1.lib │ │ │ └── arm64-v8a │ │ │ └── libovrplatformloader.so │ │ ├── LibOVRPlatform_APL.xml │ │ └── OVRPlatformSDK.build.cs │ ├── THIRD_PARTY_NOTICES.txt │ └── Version.txt ├── README.md ├── SharedSceneSample.png ├── SharedSceneSample.uproject └── Source ├── SharedSceneSample.Target.cs ├── SharedSceneSample ├── Private │ └── SharedSceneSampleBPLibrary.cpp ├── Public │ └── SharedSceneSampleBPLibrary.h ├── SharedSceneSample.Build.cs ├── SharedSceneSample.cpp └── SharedSceneSample.h └── SharedSceneSampleEditor.Target.cs /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Config/Android/AndroidEngine.ini: -------------------------------------------------------------------------------- 1 | [OnlineSubsystem] 2 | DefaultPlatformService=Null 3 | -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Config/DefaultEditor.ini -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Config/DefaultInput.ini -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/BP_LobbyPawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/BP_LobbyPawn.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/BP_OculusSceneActor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/BP_OculusSceneActor.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/BP_Scene.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/BP_Scene.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/BP_SharedSpacesPawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/BP_SharedSpacesPawn.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/BP_SpatialAnchorModel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/BP_SpatialAnchorModel.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/Components/BP_LobbyMenuManager.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/Components/BP_LobbyMenuManager.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/Components/BP_MenuManagerComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/Components/BP_MenuManagerComponent.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/Components/BP_SceneLableComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/Components/BP_SceneLableComponent.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/Components/BP_SessionManager.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/Components/BP_SessionManager.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/Components/BP_SpatialAnchorManagerComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/Components/BP_SpatialAnchorManagerComponent.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyGameMode.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyGameState.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyGameState.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyPlayerController.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyPlayerController.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyPlayerState.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/GameModes/Lobby/BP_LobbyPlayerState.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/GameModes/SharedSpaces/BP_SharedSpacesGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/GameModes/SharedSpaces/BP_SharedSpacesGameMode.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/GameModes/SharedSpaces/BP_SharedSpacesPlayerState.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/GameModes/SharedSpaces/BP_SharedSpacesPlayerState.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/UI/BP_AnchorInfo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/UI/BP_AnchorInfo.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/UI/BP_Lobby_Menu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/UI/BP_Lobby_Menu.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/UI/BP_Menu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/UI/BP_Menu.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/UI/BP_MenuItem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/UI/BP_MenuItem.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Blueprints/UI/BP_Menu_Main.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Blueprints/UI/BP_Menu_Main.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Inputs/Actions/IA_DeselectAllAnchors.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Inputs/Actions/IA_DeselectAllAnchors.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Inputs/Actions/IA_MenuSelectionUpDown.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Inputs/Actions/IA_MenuSelectionUpDown.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Inputs/Actions/IA_SelectMainMenuItem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Inputs/Actions/IA_SelectMainMenuItem.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Inputs/Mappings/IMC_Base.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Inputs/Mappings/IMC_Base.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Maps/Lobby.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Maps/Lobby.umap -------------------------------------------------------------------------------- /Content/SharedSceneSample/Maps/SharedSpaces.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Maps/SharedSpaces.umap -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/CouchMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/CouchMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/DefaultTextMaterialEmissive.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/DefaultTextMaterialEmissive.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/DeskMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/DeskMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/DoorMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/DoorMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/FloorCeilingMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/FloorCeilingMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/MI_AnchorIcon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/MI_AnchorIcon.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/MI_HelpInfoBackground.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/MI_HelpInfoBackground.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/MI_LaserBeam.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/MI_LaserBeam.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/MI_MenuBackground.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/MI_MenuBackground.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/MI_MenuItemSurface.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/MI_MenuItemSurface.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/MPC_AnchorStates.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/MPC_AnchorStates.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/M_ColoringMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/M_ColoringMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/M_FadeMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/M_FadeMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/M_UIIcon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/M_UIIcon.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/OtherMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/OtherMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/PassthroughAlpha.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/PassthroughAlpha.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/WallArtMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/WallArtMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/WallMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/WallMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Materials/WindowMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Materials/WindowMaterial.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/Bounded3dMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/Bounded3dMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/CouchMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/CouchMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/DeskMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/DeskMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/DoorMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/DoorMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/FloorCeilingMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/FloorCeilingMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/Laser_Mesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/Laser_Mesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/OtherMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/OtherMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/PassthroughSphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/PassthroughSphere.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_AchorIcon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_AchorIcon.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_Anchor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_Anchor.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_AnchorBackground.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_AnchorBackground.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_Axis.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_Axis.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_ForwardAxis.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_ForwardAxis.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_LaserBeam.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_LaserBeam.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_RightAxis.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_RightAxis.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/SM_UpAxis.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/SM_UpAxis.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/WallArtMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/WallArtMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/WallMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/WallMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Meshes/WindowMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Meshes/WindowMesh.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/CouchText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/CouchText.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/CreateSession.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/CreateSession.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/DeskText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/DeskText.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/DoorText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/DoorText.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/JoinSession.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/JoinSession.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/Minimize.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/Minimize.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/Move.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/Move.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/NoStorageSD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/NoStorageSD.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/OtherText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/OtherText.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/Roomscale.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/Roomscale.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/StorageCloud.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/StorageCloud.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/StorageSD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/StorageSD.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/ToTop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/ToTop.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/Trash.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/Trash.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/WallArtText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/WallArtText.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/Textures/WindowText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/Textures/WindowText.uasset -------------------------------------------------------------------------------- /Content/SharedSceneSample/oculus_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/oculus_samples.png -------------------------------------------------------------------------------- /Content/SharedSceneSample/oculus_samples.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Content/SharedSceneSample/oculus_samples.uasset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/unreal-host-menu-bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-host-menu-bp.png -------------------------------------------------------------------------------- /Media/unreal-scene-blueprint-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-scene-blueprint-folder.png -------------------------------------------------------------------------------- /Media/unreal-scene-menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-scene-menu1.png -------------------------------------------------------------------------------- /Media/unreal-scene-menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-scene-menu2.png -------------------------------------------------------------------------------- /Media/unreal-scene-menu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-scene-menu3.png -------------------------------------------------------------------------------- /Media/unreal-spatial-anchor-menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-spatial-anchor-menu1.png -------------------------------------------------------------------------------- /Media/unreal-spatial-anchor-menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-spatial-anchor-menu2.png -------------------------------------------------------------------------------- /Media/unreal-user-interface-menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Media/unreal-user-interface-menu1.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/application_lifecycle_event_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/application_lifecycle_event_registration.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/challenges_get_entries_after_rank_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/challenges_get_entries_after_rank_blueprint.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/enumeration_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/enumeration_blueprint.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/group_join_intent_received_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/group_join_intent_received_blueprint.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/group_presence_set_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/group_presence_set_blueprint.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/group_presence_set_blueprint_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/group_presence_set_blueprint_2.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/group_presence_set_blueprint_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/group_presence_set_blueprint_3.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/oculus_platform_started_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/oculus_platform_started_event.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/platform_get_logged_in_user_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/platform_get_logged_in_user_id.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/start_message_pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/start_message_pump.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/Media/user_get_logged_in_user_friends_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/Media/user_get_logged_in_user_friends_blueprint.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Documentation/OVRPlatform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Documentation/OVRPlatform.md -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/LICENSE.txt -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/OculusPlatform.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/OculusPlatform.uplugin -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Resources/Icon128.png -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/OVRPlatform.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/OVRPlatform.Build.cs -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRNetIPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRNetIPAddress.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatform.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformCollectionConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformCollectionConverters.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformCppPageRequests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformCppPageRequests.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformCppRequests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformCppRequests.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformEnums.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformFunctions.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformModels.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformOptionsConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformOptionsConverters.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformPageRequests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformPageRequests.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformRequests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformRequests.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformRequestsConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformRequestsConverters.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformRequestsSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformRequestsSupport.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformSDK.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformSubsystem.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Private/OVRPlatformUtils.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatform.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformCppPageRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformCppPageRequests.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformCppRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformCppRequests.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformEnums.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformFunctions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformModels.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformPageRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformPageRequests.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformRequests.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformRequestsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformRequestsSupport.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformSDK.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformSubsystem.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformTypes.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/OVRPlatform/Public/OVRPlatformUtils.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportRecording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportRecording.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportVideoMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AbuseReportVideoMode.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AccountAgeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AccountAgeCategory.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementDefinition.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementDefinitionArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementDefinitionArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementProgress.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementProgressArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementProgressArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AchievementUpdate.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AdvancedAbuseReportOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AdvancedAbuseReportOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppAgeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppAgeCategory.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppDownloadProgressResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppDownloadProgressResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppDownloadResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppDownloadResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppInstallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppInstallResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AppStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationInvite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationInvite.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationInviteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationInviteArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ApplicationVersion.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetDetails.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetDetailsArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetDetailsArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDeleteResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDeleteResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDownloadCancelResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDownloadCancelResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDownloadResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDownloadResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDownloadUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AssetFileDownloadUpdate.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AvatarEditorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AvatarEditorOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AvatarEditorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_AvatarEditorResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_BlockedUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_BlockedUser.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_BlockedUserArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_BlockedUserArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Challenge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Challenge.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeCreationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeCreationType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeEntry.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeEntryArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeEntryArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeViewerFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeViewerFilter.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeVisibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ChallengeVisibility.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchViewer.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchViewerArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchViewerArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchViewerUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchViewerUpdate.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_CowatchingState.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_DataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_DataStore.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Destination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Destination.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_DestinationArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_DestinationArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Error.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Functions_ApplicationLifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Functions_ApplicationLifecycle.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Functions_Voip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Functions_Voip.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_GroupPresenceJoinIntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_GroupPresenceJoinIntent.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_GroupPresenceLeaveIntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_GroupPresenceLeaveIntent.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_GroupPresenceOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_GroupPresenceOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_HttpTransferUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_HttpTransferUpdate.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InstalledApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InstalledApplication.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InstalledApplicationArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InstalledApplicationArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InviteOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InviteOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InvitePanelResultInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_InvitePanelResultInfo.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_KeyValuePairType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_KeyValuePairType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LanguagePackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LanguagePackInfo.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchBlockFlowResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchBlockFlowResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchDetails.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchFriendRequestFlowResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchFriendRequestFlowResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchInvitePanelFlowResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchInvitePanelFlowResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchReportFlowResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchReportFlowResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchUnblockFlowResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LaunchUnblockFlowResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Leaderboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Leaderboard.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardEntry.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardEntryArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardEntryArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardFilterType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardFilterType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardStartAt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardStartAt.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardUpdateStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LeaderboardUpdateStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LinkedAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LinkedAccount.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LinkedAccountArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LinkedAccountArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingApplicationStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingApplicationStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingAudience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingAudience.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingMicrophoneStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingMicrophoneStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingStartResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingStartResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingStartStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingStartStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingVideoStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LivestreamingVideoStats.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LogEventName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LogEventName.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LogEventParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_LogEventParameter.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ManagedInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ManagedInfo.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MediaContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MediaContentType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Message.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MessageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MessageType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Microphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Microphone.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MicrophoneAvailabilityState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MicrophoneAvailabilityState.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MultiplayerErrorErrorKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MultiplayerErrorErrorKey.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MultiplayerErrorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_MultiplayerErrorOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncConnection.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncConnectionStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncConnectionStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncDisconnectReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncDisconnectReason.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSession.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSessionArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSessionArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSessionsChangedNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSessionsChangedNotification.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSetSessionPropertyResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncSetSessionPropertyResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipAttenuationValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipAttenuationValue.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipAttenuationValueArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipAttenuationValueArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipMicSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipMicSource.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipStreamMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_NetSyncVoipStreamMode.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_OrgScopedID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_OrgScopedID.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Packet.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Party.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Party.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyID.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyMicState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyMicState.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyUpdateAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyUpdateAction.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyUpdateNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PartyUpdateNotification.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PermissionGrantStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PermissionGrantStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PermissionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PermissionType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Pid.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PidArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PidArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Platform.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PlatformInitialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PlatformInitialize.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PlatformInitializeResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PlatformInitializeResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PlatformVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PlatformVersion.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Platform_Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Platform_Defs.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Price.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Price.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Product.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ProductArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ProductArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ProductType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ProductType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Purchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Purchase.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PurchaseArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_PurchaseArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RejoinDialogResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RejoinDialogResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ReportRequestResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ReportRequestResponse.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_AbuseReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_AbuseReport.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Achievements.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Application.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_ApplicationLifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_ApplicationLifecycle.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_AssetFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_AssetFile.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Avatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Avatar.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Challenges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Challenges.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Cowatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Cowatching.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_DeviceApplicationIntegrity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_DeviceApplicationIntegrity.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Entitlement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Entitlement.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_GroupPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_GroupPresence.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_IAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_IAP.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_LanguagePack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_LanguagePack.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Leaderboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Leaderboard.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Media.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Notification.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Party.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Party.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_RichPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_RichPresence.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_User.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_UserAgeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_UserAgeCategory.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Voip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Requests_Voip.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RichPresenceExtraContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RichPresenceExtraContext.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RichPresenceOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RichPresenceOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RosterOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_RosterOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SdkAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SdkAccount.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SdkAccountArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SdkAccountArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SdkAccountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SdkAccountType.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SendInvitesResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SendInvitesResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ServiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ServiceProvider.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ShareMediaResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ShareMediaResult.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ShareMediaStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_ShareMediaStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SupplementaryMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SupplementaryMetric.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SystemVoipState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SystemVoipState.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SystemVoipStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_SystemVoipStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_TimeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_TimeWindow.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Types.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_User.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserAccountAgeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserAccountAgeCategory.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserCapability.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserCapabilityArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserCapabilityArray.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserDataStoreUpdateResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserDataStoreUpdateResponse.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserOrdering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserOrdering.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserPresenceStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserPresenceStatus.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserProof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserProof.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserReportID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_UserReportID.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipBitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipBitrate.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipDecoder.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipDtxState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipDtxState.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipEncoder.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipMuteState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipMuteState.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipOptions.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipSampleRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_VoipSampleRate.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Voip_LowLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/OVR_Voip_LowLevel.h -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/Windows/OVR_PlatformLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/include/Windows/OVR_PlatformLoader.cpp -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/lib/LibOVRPlatformImpl64_1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/lib/LibOVRPlatformImpl64_1.lib -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/lib/arm64-v8a/libovrplatformloader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform/lib/arm64-v8a/libovrplatformloader.so -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform_APL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/LibOVRPlatform_APL.xml -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/OVRPlatformSDK.build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Source/Thirdparty/OVRPlatformSDK/OVRPlatformSDK.build.cs -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/THIRD_PARTY_NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/THIRD_PARTY_NOTICES.txt -------------------------------------------------------------------------------- /Plugins/MetaXRPlatform/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Plugins/MetaXRPlatform/Version.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/README.md -------------------------------------------------------------------------------- /SharedSceneSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/SharedSceneSample.png -------------------------------------------------------------------------------- /SharedSceneSample.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/SharedSceneSample.uproject -------------------------------------------------------------------------------- /Source/SharedSceneSample.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSample.Target.cs -------------------------------------------------------------------------------- /Source/SharedSceneSample/Private/SharedSceneSampleBPLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSample/Private/SharedSceneSampleBPLibrary.cpp -------------------------------------------------------------------------------- /Source/SharedSceneSample/Public/SharedSceneSampleBPLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSample/Public/SharedSceneSampleBPLibrary.h -------------------------------------------------------------------------------- /Source/SharedSceneSample/SharedSceneSample.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSample/SharedSceneSample.Build.cs -------------------------------------------------------------------------------- /Source/SharedSceneSample/SharedSceneSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSample/SharedSceneSample.cpp -------------------------------------------------------------------------------- /Source/SharedSceneSample/SharedSceneSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSample/SharedSceneSample.h -------------------------------------------------------------------------------- /Source/SharedSceneSampleEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oculus-samples/Unreal-SharedSceneSample/HEAD/Source/SharedSceneSampleEditor.Target.cs --------------------------------------------------------------------------------