-
Notifications
You must be signed in to change notification settings - Fork 29
Description
Unity version
6000.1.9f
Unity editor platform
Windows
AVPro Video edition
Ultra
AVPro Video version
3.2.6
Device hardware
Meta Quest 3
Which Android OS version are you using?
12
Unity Graphics API
OpenGLES 3
Video API
media3/ExoPlayer
Texture format
BGRA
Audio output
System Direct
Any other Media Player component configuration required to reproduce the issue.
No response
Which output component(s) are you using?
Apply to Mesh
Any other component configuration required to reproduce the issue.
No response
The issue
Hi,
We’re currently working on optimizing memory usage in our application. During our analysis, we’ve identified several issues, with a particular focus on AVPro Video. Below are three key concerns we’d like to share. I'm not sure whether to split them into separate tickets or keep them together, as they are all memory-related:
- Memory Leak
We noticed what seems to be a memory leak when switching between videos.
Repro steps:
- Open any video in the player.
- Switch between different videos (around 5 times).
- Take a memory snapshot using Unity’s Memory Profiler.
- You will see 5 textures in memory, some of which are marked as leaks.
To help with tracking, we modified the BaseMediaPlayer.cs file and added custom names to the textures:
protected virtual void ApplyTextureProperties(Texture texture)
{
if (texture != null)
{
texture.filterMode = _defaultTextureFilterMode;
texture.wrapMode = _defaultTextureWrapMode;
texture.anisoLevel = _defaultTextureAnisoLevel;
texture.name = "VT_" + count;
count++;
}
}
We also inspected the PlatformMediaPlayer.cs file but couldn’t find any texture disposal logic after video switches.
Attached: Memory Profiler screenshot.

- High Memory Usage
We noticed that opening an 8000x4000 video allocates around 1.2 GB of memory. After playing several such videos in a row, available memory drops to 500–700 MB, which is quite low for a mobile XR device. Eventually, the app crashes due to insufficient memory.
Lower resolution videos consume less memory, as expected. Based on our calculations:
- An RGBA texture of 8000x4000 should use around 128 MB.
- Adding cache buffers and other overhead, we estimate it should still stay below 500 MB.
Unfortunately, we currently cannot use OES textures due to our upcoming transition to Vulkan.
Questions:
- Are there any recommended ways to reduce memory usage?
-- For example, disabling the alpha channel on textures?
-- Reducing the streaming buffer size? (We tried adjusting it on Android but didn’t observe significant results.)
Attached: Screenshot from OVRMetrics showing the comparison.

- Strange GPU Resource Leak
We’re not entirely sure this is AVPro-related, but it reproduces 100% of the time when playing videos.
Repro steps:
- Start video playback.
- Turn off the headset (e.g., press the side button on Quest 3).
- Turn the headset back on and take a memory snapshot.
- You’ll see 3 GPU resources of around 130 MB each being created.
- Switch to a different video and repeat the steps.
- Again, 3 new resources are created (130 MB each).
- This can be repeated indefinitely as long as you switch videos.
-- If you stay on the same video, the issue doesn’t reproduce.
We suspect this could be related to how external textures are handled.
Attached: Screenshot showing the issue.

Note: This behavior also occurs in Unity 2022, although the memory snapshot looks slightly different.

Additional Info:
- AVPro Video versions tested: 3.2.6, 3.2.7, 3.2.8
- Unity versions tested: 2022.x, 6.1
We’d appreciate any guidance or suggestions you can provide.
Thanks in advance for your help!
Media information
No response
Logcat output
2025/07/29 14:35:47.536 11148 11148 Verbose Unity Context Type: GameActivity
2025/07/29 14:35:47.542 11148 11232 Info Unity UnityApplication::CreateInstance
2025/07/29 14:35:47.542 11148 11232 Info Unity GameActivity Package Version '3.0.5'
2025/07/29 14:35:47.543 11148 11232 Info Unity Starting Game Loop
2025/07/29 14:35:47.550 11148 11232 Info Unity Handle cmd APP_CMD_START(11)
2025/07/29 14:35:47.566 11148 11232 Info Unity Handle cmd APP_CMD_RESUME(12)
2025/07/29 14:35:47.576 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:47.584 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:47.584 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:47.584 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:47.584 11148 11232 Info Unity Handle cmd APP_CMD_CONTENT_RECT_CHANGED(5)
2025/07/29 14:35:47.586 11148 11232 Info Unity Handle cmd APP_CMD_INIT_WINDOW(1)
2025/07/29 14:35:47.590 11148 11232 Info Unity MemoryManager: Using 'Dynamic Heap' Allocator.
2025/07/29 14:35:47.609 11148 11232 Info Unity SystemInfo CPU = ARM64 FP ASIMD AES, Cores = 6, Memory = 7756mb
2025/07/29 14:35:47.609 11148 11232 Info Unity SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0x3c), 2 little (mask: 0x3)
2025/07/29 14:35:47.609 11148 11232 Info Unity XR UsableCoreMask: 0x3f
2025/07/29 14:35:47.609 11148 11232 Info Unity ApplicationInfo 'com.DeoVR.Hyper', Version '0.0.1', Min API Level '32', Target API Level '34'
2025/07/29 14:35:47.609 11148 11232 Info Unity Built from '6000.1/staging' branch, Version '6000.1.9f1 (ed7b183fd33d)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Enabled'
2025/07/29 14:35:47.610 11148 11232 Info Unity Device Model 'Oculus Quest', OS 'Android OS 14 (API 34)'
2025/07/29 14:35:48.584 11148 11232 Info Unity Unity memory allocator detected: MetaXRAudio native memory allocations will be tracked.
2025/07/29 14:35:48.593 11148 11232 Info Unity Company Name: Deo VR
2025/07/29 14:35:48.593 11148 11232 Info Unity Product Name: Hyper
2025/07/29 14:35:49.077 11148 11232 Warn Unity The referenced script on this Behaviour (Game Object '<null>') is missing!
2025/07/29 14:35:49.077 11148 11232 Warn Unity The referenced script on this Behaviour (Game Object '<null>') is missing!
2025/07/29 14:35:49.085 11148 11232 Info Unity XRGeneral Settings awakening...
2025/07/29 14:35:49.085 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:49.085 11148 11232 Info Unity UnityEngine.XR.Management.XRGeneralSettings:Awake()
2025/07/29 14:35:49.085 11148 11232 Info Unity
2025/07/29 14:35:49.297 11148 11232 Info Unity [MetaXRFeature] HookGetInstanceProcAddr: 498373866892
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:49.297 11148 11232 Info Unity Meta.XR.MetaXRFeature:HookGetInstanceProcAddr(IntPtr)
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.OpenXR.Features.OpenXRFeature:HookGetInstanceProcAddr()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:InitializeInternal()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:Initialize()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.Management.XRManagerSettings:InitializeLoaderSync()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.Management.XRGeneralSettings:InitXRSDK()
2025/07/29 14:35:49.297 11148 11232 Info Unity
2025/07/29 14:35:49.297 11148 11232 Info Unity [MetaXRFeature] SetClientVersion
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:49.297 11148 11232 Info Unity Meta.XR.MetaXRFeature:HookGetInstanceProcAddr(IntPtr)
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.OpenXR.Features.OpenXRFeature:HookGetInstanceProcAddr()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:InitializeInternal()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:Initialize()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.Management.XRManagerSettings:InitializeLoaderSync()
2025/07/29 14:35:49.297 11148 11232 Info Unity UnityEngine.XR.Management.XRGeneralSettings:InitXRSDK()
2025/07/29 14:35:49.297 11148 11232 Info Unity
2025/07/29 14:35:49.691 11148 11232 Info Unity [XR] [499947678128] [14:35:49.689][Info ] Available Layers: (0)
2025/07/29 14:35:49.720 11148 11232 Info Unity [MetaXRFeature] OpenXR runtime supports XR_META_headset_id extension. MetaXRFeature is enabled.
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:49.720 11148 11232 Info Unity Meta.XR.MetaXRFeature:OnInstanceCreate(UInt64)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.Features.OpenXRFeature:ReceiveNativeEvent(NativeEvent, UInt64)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:ReceiveNativeEvent(NativeEvent, UInt64)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.IntegratedSubsystemDescriptor`1:Create()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.Management.XRLoaderHelper:CreateSubsystem(List`1, String)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:CreateSubsystems()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:InitializeInternal()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:Initialize()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.Management.XRManagerSettings:InitializeLoaderSync()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.Management.XRGeneralSettings:InitXRSDK()
2025/07/29 14:35:49.720 11148 11232 Info Unity
2025/07/29 14:35:49.720 11148 11232 Info Unity [MetaXRFeature] OnInstanceCreate: 2
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:49.720 11148 11232 Info Unity Meta.XR.MetaXRFeature:OnInstanceCreate(UInt64)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.Features.OpenXRFeature:ReceiveNativeEvent(NativeEvent, UInt64)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:ReceiveNativeEvent(NativeEvent, UInt64)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.IntegratedSubsystemDescriptor`1:Create()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.Management.XRLoaderHelper:CreateSubsystem(List`1, String)
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:CreateSubsystems()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:InitializeInternal()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:Initialize()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.Management.XRManagerSettings:InitializeLoaderSync()
2025/07/29 14:35:49.720 11148 11232 Info Unity UnityEngine.XR.Management.XRGeneralSettings:InitXRSDK()
2025/07/29 14:35:49.720 11148 11232 Info Unity
2025/07/29 14:35:49.753 11148 11232 Warn Unity Orientation Listener cannot detect orientation.
2025/07/29 14:35:49.753 11148 11232 Info Unity HasWindow = 1, HasFocus = 0
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_RESIZED(3)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_REDRAW_NEEDED(4)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_GAINED_FOCUS(7)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:49.753 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:50.122 11148 11232 Info Unity [MetaXRFeature] OnSessionCreate: 80
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.122 11148 11232 Info Unity Meta.XR.MetaXRFeature:OnSessionCreate(UInt64)
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.XR.OpenXR.Features.OpenXRFeature:ReceiveNativeEvent(NativeEvent, UInt64)
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:ReceiveNativeEvent(NativeEvent, UInt64)
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:Internal_CreateSessionIfNeeded()
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:StartInternal()
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.XR.OpenXR.OpenXRLoaderBase:Start()
2025/07/29 14:35:50.122 11148 11232 Info Unity UnityEngine.XR.Management.XRGeneralSettings:StartXRSDK()
2025/07/29 14:35:50.122 11148 11232 Info Unity
2025/07/29 14:35:50.524 11148 11232 Info Unity Applying Acoustic Propagation Settings: [acoustic model = Automatic], [diffraction = True],
2025/07/29 14:35:50.524 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.524 11148 11232 Info Unity MetaXRAcousticSettings:ApplyAllSettings()
2025/07/29 14:35:50.524 11148 11232 Info Unity
2025/07/29 14:35:50.543 11148 11232 Info Unity Meta XR Audio Native Interface initialized with Unity plugin
2025/07/29 14:35:50.543 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.543 11148 11232 Info Unity MetaXRAcousticNativeInterface:FindInterface()
2025/07/29 14:35:50.543 11148 11232 Info Unity MetaXRAcousticNativeInterface:get_Interface()
2025/07/29 14:35:50.543 11148 11232 Info Unity MetaXRAcousticSettings:ApplyAllSettings()
2025/07/29 14:35:50.543 11148 11232 Info Unity
2025/07/29 14:35:50.544 11148 11232 Info Unity Setting spatial voice limit: 64
2025/07/29 14:35:50.544 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.544 11148 11232 Info Unity MetaXRAudioSource:OnBeforeSceneLoadRuntimeMethod()
2025/07/29 14:35:50.544 11148 11232 Info Unity
2025/07/29 14:35:50.583 11148 11232 Info Unity Unity v6000.1.9f1, Oculus Utilities v1.109.0, OVRPlugin v1.109.0, SDK v1.1.46.
2025/07/29 14:35:50.583 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.583 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.583 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.583 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.583 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.583 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.583 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.583 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.583 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.583 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.583 11148 11232 Info Unity
2025/07/29 14:35:50.585 11148 11232 Info Unity SystemHeadset Meta_Quest_3, API OpenXR
2025/07/29 14:35:50.585 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.585 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.585 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.585 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.585 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.585 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.585 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.585 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.585 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.585 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.585 11148 11232 Info Unity
2025/07/29 14:35:50.586 11148 11232 Info Unity OpenXR instance 0x2 session 0x50
2025/07/29 14:35:50.586 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.586 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.586 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.586 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.586 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.586 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.586 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.586 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.586 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.586 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.586 11148 11232 Info Unity
2025/07/29 14:35:50.589 11148 11232 Info Unity OVRPlugin.Media not initialized
2025/07/29 14:35:50.589 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.589 11148 11232 Info Unity OVRManager:StaticInitializeMixedRealityCapture(OVRMixedRealityCaptureConfiguration)
2025/07/29 14:35:50.589 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.589 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.589 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.589 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.589 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.589 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.589 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.589 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.589 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.589 11148 11232 Info Unity
2025/07/29 14:35:50.593 11148 11232 Info Unity Current display frequency 72, available frequencies [72, 80, 90, 120]
2025/07/29 14:35:50.593 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.593 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.593 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.593 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.593 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.593 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.593 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.593 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.593 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.593 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.593 11148 11232 Info Unity
2025/07/29 14:35:50.599 11148 11232 Warn Unity Local Dimming feature is not supported
2025/07/29 14:35:50.599 11148 11232 Warn Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.599 11148 11232 Warn Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.599 11148 11232 Warn Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.599 11148 11232 Warn Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.599 11148 11232 Warn Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.599 11148 11232 Warn Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.599 11148 11232 Warn Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.599 11148 11232 Warn Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.599 11148 11232 Warn Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.599 11148 11232 Warn Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.599 11148 11232 Warn Unity
2025/07/29 14:35:50.600 11148 11232 Info Unity [OVRManager] Current hand skeleton version is OpenXR
2025/07/29 14:35:50.600 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.600 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.600 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.600 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.600 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.600 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.600 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.600 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.600 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.600 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.600 11148 11232 Info Unity
2025/07/29 14:35:50.601 11148 11232 Info Unity OpenXR Meta Quest Runtime Settings:
2025/07/29 14:35:50.601 11148 11232 Info Unity Depth Submission Mode - None
2025/07/29 14:35:50.601 11148 11232 Info Unity Rendering Mode - SinglePassInstanced
2025/07/29 14:35:50.601 11148 11232 Info Unity Optimize Buffer Discards - True
2025/07/29 14:35:50.601 11148 11232 Info Unity Symmetric Projection - False
2025/07/29 14:35:50.601 11148 11232 Info Unity Subsampled Layout - False
2025/07/29 14:35:50.601 11148 11232 Info Unity Space Warp - False
2025/07/29 14:35:50.601 11148 11232 Info Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
2025/07/29 14:35:50.601 11148 11232 Info Unity OVRManager:InitOVRManager()
2025/07/29 14:35:50.601 11148 11232 Info Unity UnityEngine.Object:Internal_CloneSingle(Object)
2025/07/29 14:35:50.601 11148 11232 Info Unity UnityEngine.Object:Instantiate(T)
2025/07/29 14:35:50.601 11148 11232 Info Unity Hyper.App.Factories.QuestPlatformComponentProviderFactory:Create(Action`1)
2025/07/29 14:35:50.601 11148 11232 Info Unity Hyper.App.Registrations.QuestRegistration:Register(IContainerBuilder)
2025/07/29 14:35:50.601 11148 11232 Info Unity Hyper.App.MainScope:Configure(IContainerBuilder)
2025/07/29 14:35:50.601 11148 11232 Info Unity VContainer.Unity.LifetimeScope:InstallTo(IContainerBuilder)
2025/07/29 14:35:50.601 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Build()
2025/07/29 14:35:50.601 11148 11232 Info Unity VContainer.Unity.LifetimeScope:Awake()
2025/07/29 14:35:50.601 11148 11232 Info Unity
2025/07/29 14:35:50.671 11148 11232 Warn Unity Layer Initial was not found. Return the whole final configuration.
2025/07/29 14:35:50.820 11148 11232 Warn Unity Layer Initial was not found. Return the whole final configuration.
2025/07/29 14:35:50.820 11148 11232 Warn Unity Layer Initial was not found. Return the whole final configuration.
2025/07/29 14:35:50.832 11148 11232 Warn Unity Layer User was not found. Return the whole final configuration.
2025/07/29 14:35:50.832 11148 11232 Warn Unity Layer User was not found. Return the whole final configuration.
2025/07/29 14:35:50.871 11148 11232 Info Unity SlrContext: SessionStoragePath: /storage/emulated/0/Android/data/com.DeoVR.Hyper/files/SessionStorage/SlrSession.json
2025/07/29 14:35:50.975 11148 11232 Warn Unity Layer User was not found. Return the whole final configuration.
2025/07/29 14:35:51.004 11148 11232 Warn Unity Layer Initial was not found. Return the whole final configuration.
2025/07/29 14:35:51.036 11148 11232 Warn Unity Layer Initial was not found. Return the whole final configuration.
2025/07/29 14:35:51.078 11148 11232 Info Unity No Meta XR Audio Room found, setting default room
2025/07/29 14:35:51.087 11148 11232 Info Unity Meta XR Audio Native Interface initialized with Unity plugin
2025/07/29 14:35:51.094 11148 11232 Info Unity [OVRManager] OnApplicationPause(false)
2025/07/29 14:35:51.094 11148 11232 Info Unity [OVRManager] OnApplicationFocus(true)
2025/07/29 14:35:51.151 11148 11232 Info Unity HyperAppEntryPoint: Initializing platform
2025/07/29 14:35:51.151 11148 11232 Info Unity Start QuestPlatform
2025/07/29 14:35:51.158 11148 11232 Info Unity [UI Styles] Set UI style: Deo. Previous style:
2025/07/29 14:35:51.289 11148 11232 Info Unity [UI Styles] Set UI style: Default. Previous style: Deo
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [05 NotoSansBengali-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [06 NotoSansMalayalam-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [07 NotoSansNewTaiLue-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [08 NotoSansThai-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [09 NotoSansArmenian-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [10 NotoSansGeorgian-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [11 NotoSansArabic-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [12 NotoSansEthiopic-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [13 NotoSansHebrew-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [14 NotoSansKhmer-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.572 11148 11232 Info Unity Font Asset [15 NotoSansLao-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.573 11148 11232 Info Unity Font Asset [16 NotoSansMyanmar-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.573 11148 11232 Info Unity Font Asset [17 NotoSansTamil-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.573 11148 11232 Info Unity Font Asset [18 NotoSerifTibetan-Bold SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.573 11148 11232 Info Unity Font Asset [98 NotoSansSymbols-Bold.ttf-subset SDF] Units Per EM set to 1000. Please commit the newly serialized value.
2025/07/29 14:35:51.629 11148 11232 Info Unity [AVProVideo] XR Device details: UnityEngine.XR.XRSettings.loadedDeviceName = OpenXR Display | supportedDevices = OpenXR Input, OpenXR Display | headDevice name = , manufacturer =
2025/07/29 14:35:51.647 11148 11232 Info Unity ActionSystem: Device added: Mouse2
2025/07/29 14:35:51.649 11148 11232 Info Unity ActionSystem: Device added: Mouse3
2025/07/29 14:35:51.653 11148 11232 Info Unity [OVRManager] HMDAcquired event
2025/07/29 14:35:51.654 11148 11232 Info Unity [OVRManager] VrFocusAcquired event
2025/07/29 14:35:51.654 11148 11232 Info Unity [OVRManager] InputFocusLost event
2025/07/29 14:35:51.722 11148 11232 Info Unity Unable to process a controller whose SampleRateHz is 0 now.
2025/07/29 14:35:51.722 11148 11232 Info Unity Unable to process a controller whose SampleRateHz is 0 now.
2025/07/29 14:35:51.725 11148 11232 Info Unity [XR] [499947678128] [14:35:51.725][Info ] OpenXRSession::HandleSessionStateChangedEvent: state XR_SESSION_STATE_UNKNOWN->XR_SESSION_STATE_IDLE session=80 time=71056617971720
2025/07/29 14:35:51.726 11148 11232 Info Unity [MetaXRFeature] OnSessionStateChange: 0 -> 1
2025/07/29 14:35:51.727 11148 11232 Info Unity [XR] [499947678128] [14:35:51.727][Info ] OpenXRSession::HandleSessionStateChangedEvent: state XR_SESSION_STATE_IDLE->XR_SESSION_STATE_READY session=80 time=71056618393907
2025/07/29 14:35:51.727 11148 11232 Info Unity [MetaXRFeature] OnSessionStateChange: 1 -> 2
2025/07/29 14:35:51.806 11148 11232 Info Unity [MetaXRFeature] OnSessionBegin: 80
2025/07/29 14:35:51.828 11148 11232 Info Unity [XR] [499947678128] [14:35:51.828][Error ] xrSuggestInteractionProfileBindings: XR_ERROR_PATH_UNSUPPORTED
2025/07/29 14:35:51.829 11148 11232 Info Unity [MetaXRFeature] OnAppSpaceChange: 102
2025/07/29 14:35:51.892 11148 11232 Info Unity ActionSystem: Device added: MetaAimHand
2025/07/29 14:35:51.897 11148 11232 Info Unity ActionSystem: Device added: MetaAimHand1
2025/07/29 14:35:51.905 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:51.905 11148 11232 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025/07/29 14:35:51.912 11148 11232 Info Unity ActionSystem: New layout XRInputV1::OpenXR::HeadTrackingOpenXR has been added
2025/07/29 14:35:51.920 11148 11232 Info Unity ActionSystem: Device added: HeadTrackingOpenXR
2025/07/29 14:35:51.920 11148 11232 Info Unity [MetaXRFeature] OnAppSpaceChange: 100
2025/07/29 14:35:51.921 11148 11232 Info Unity [OVRManager] HMDMounted event
2025/07/29 14:35:51.921 11148 11232 Info Unity Recenter event detected
2025/07/29 14:35:51.947 11148 11232 Info Unity [MetaXRFeature] OnAppSpaceChange: 100
2025/07/29 14:35:51.970 11148 11232 Info Unity [OVRManager] TrackingAcquired event
2025/07/29 14:35:51.976 11148 11232 Info Unity [XR] [499947678128] [14:35:51.976][Info ] OpenXRSession::HandleSessionStateChangedEvent: state XR_SESSION_STATE_READY->XR_SESSION_STATE_SYNCHRONIZED session=80 time=71056868843203
2025/07/29 14:35:51.976 11148 11232 Info Unity [MetaXRFeature] OnSessionStateChange: 2 -> 3
2025/07/29 14:35:51.977 11148 11232 Info Unity [XR] [499947678128] [14:35:51.977][Info ] OpenXRSession::HandleSessionStateChangedEvent: state XR_SESSION_STATE_SYNCHRONIZED->XR_SESSION_STATE_VISIBLE session=80 time=71056869297214
2025/07/29 14:35:51.977 11148 11232 Info Unity [MetaXRFeature] OnSessionStateChange: 3 -> 4
2025/07/29 14:35:51.977 11148 11232 Info Unity [XR] [499947678128] [14:35:51.977][Info ] OpenXRSession::HandleSessionStateChangedEvent: state XR_SESSION_STATE_VISIBLE->XR_SESSION_STATE_FOCUSED session=80 time=71056870215964
2025/07/29 14:35:51.977 11148 11232 Info Unity [MetaXRFeature] OnSessionStateChange: 4 -> 5
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity
2025/07/29 14:35:51.978 11148 11232 Info Unity ==== Start Unity OpenXR Diagnostic Report ====
2025/07/29 14:35:51.978 11148 11232 Info Unity
2025/07/29 14:35:51.978 11148 11232 Info Unity
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] ==== Report Reason: System Startup Completed ====
2025/07/29 14:35:51.978 11148 11232 Info Unity
2025/07/29 14:35:51.978 11148 11232 Info Unity
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] ==== OpenXR Runtime Info ====
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Available Runtime Extensions: (69)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_android_create_instance: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_android_surface_swapchain: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_android_thread_settings: Version=6
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_android_surface_swapchain_create: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_opengl_es_enable: Version=8
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_vulkan_enable: Version=8
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_vulkan_enable2: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_cube: Version=8
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_cylinder: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_equirect2: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_color_scale_bias: Version=5
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_depth: Version=6
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_color_space: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_performance_settings: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_tracking: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_debug_utils: Version=5
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_display_refresh_rate: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state_opengl_es: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state_vulkan: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state_android_surface: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_OCULUS_common_reference_spaces: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_image_layout: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_alpha_blend: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_composition_layer_inverted_alpha: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_common_events: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_hand_tracking_mesh: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_hand_tracking_aim: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_hand_tracking_capsules: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_hand_tracking_microgestures: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_foveation: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_foveation_configuration: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_foveation_vulkan: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_secure_content: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_convert_timespec_time: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_triangle_mesh: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_passthrough: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_passthrough_color_lut: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_passthrough_layer_resumed_event: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_passthrough_preferences: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_touch_controller_proximity: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_touch_controller_pro: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_touch_controller_plus: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_haptic_amplitude_envelope: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_haptic_pcm: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_spatial_entity_user: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_space_warp: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_vulkan_swapchain_create_info: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_settings: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_feature_fidelity: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_depth_test: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_joints_motion_range: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_tracking_data_source: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_performance_metrics: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_virtual_keyboard: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_detached_controllers: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_MSFT_hand_interaction: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_headset_id: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_recommended_layer_resolution: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_active_action_set_priority: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_automatic_layer_filter: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_simultaneous_hands_and_controllers: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_local_floor: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_interaction: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_boundary_visibility: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_user_presence: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_visibility_mask: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_LOGITECH_mx_ink_stylus_interaction: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_frame_synthesis: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Available Layers: (0)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Runtime Name: Oculus
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Runtime Version: 78.1028.0
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Form factor: XR_FORM_FACTOR_HEAD_MOUNTED_DISPLAY
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Runtime extensions enabled: (60)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_debug_utils: Version=5
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_interaction: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_joints_motion_range: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_tracking: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_hand_tracking_data_source: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_local_floor: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_performance_settings: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_EXT_user_presence: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_android_surface_swapchain_create: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_color_space: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_common_events: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_alpha_blend: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_depth_test: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_image_layout: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_composition_layer_settings: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_display_refresh_rate: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_foveation: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_foveation_configuration: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_foveation_vulkan: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_hand_tracking_aim: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_hand_tracking_capsules: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_hand_tracking_mesh: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_haptic_amplitude_envelope: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_haptic_pcm: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_passthrough: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_spatial_entity_user: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state_opengl_es: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_swapchain_update_state_vulkan: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_touch_controller_pro: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_touch_controller_proximity: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_FB_triangle_mesh: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_android_create_instance: Version=3
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_android_surface_swapchain: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_color_scale_bias: Version=5
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_cube: Version=8
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_cylinder: Version=4
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_depth: Version=6
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_composition_layer_equirect2: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_convert_timespec_time: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_opengl_es_enable: Version=8
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_visibility_mask: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_vulkan_enable: Version=8
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_LOGITECH_mx_ink_stylus_interaction: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_automatic_layer_filter: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_boundary_visibility: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_detached_controllers: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_hand_tracking_microgestures: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_headset_id: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_passthrough_color_lut: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_passthrough_layer_resumed_event: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_passthrough_preferences: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_performance_metrics: Version=2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_recommended_layer_resolution: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_simultaneous_hands_and_controllers: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_touch_controller_plus: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_META_virtual_keyboard: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_MSFT_hand_interaction: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_OCULUS_common_reference_spaces: Version=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_KHR_android_thread_settings: Version=6
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Available Reference Spaces: (4)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_REFERENCE_SPACE_TYPE_LOCAL
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_REFERENCE_SPACE_TYPE_LOCAL_FLOOR
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_REFERENCE_SPACE_TYPE_VIEW
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_REFERENCE_SPACE_TYPE_STAGE
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Instance Id : 0x2
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] System Id : 0xcccc0001
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Session Id : 0x50
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Available View Configuration Types: (1)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_VIEW_CONFIGURATION_TYPE_PRIMARY_STEREO (Selected): FovMutable=True
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] [0]: Recommended: Width=1680, Height=1760, SampleCount=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] [0]: Maximum: Width=8192, Height=8192, SampleCount=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] [1]: Recommended: Width=1680, Height=1760, SampleCount=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] [1]: Maximum: Width=8192, Height=8192, SampleCount=1
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Skip Present To Main Screen: Yes
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Available Environment Blend Modes: (1)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] XR_ENVIRONMENT_BLEND_MODE_OPAQUE (Selected)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ]
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Features requested to be enabled: (0)
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Hand Interaction Poses: Version=0.0.1, Company="Unity", Extensions="XR_EXT_hand_interaction"
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Hand Interaction Profile: Version=0.0.1, Company="Unity", Extensions="XR_EXT_hand_interaction"
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Meta Hand Tracking Aim: Version=0.0.1, Company="Unity", Extensions="XR_FB_hand_tracking_aim"
2025/07/29 14:35:51.978 11148 11232 Info Unity [XR] [499947678128] [14:35:51.978][Info ] Meta Quest Support: Version=1.0.0, Company="Unity", Extensions="XR_OCULUS_android_initialize_loader"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] Meta XR Feature: Version=0.0.1, Company="Meta", Extensions="XR_KHR_vulkan_enable XR_KHR_D3D11_enable XR_OCULUS_common_reference_spaces XR_FB_display_refresh_rate XR_EXT_performance_settings XR_FB_composition_layer_image_layout XR_KHR_android_surface_swapchain XR_FB_android_surface_swapchain_create XR_KHR_composition_layer_color_scale_bias XR_FB_color_space XR_EXT_hand_tracking XR_FB_swapchain_update_state XR_FB_swapchain_update_state_opengl_es XR_FB_swapchain_update_state_vulkan XR_FB_composition_layer_alpha_blend XR_KHR_composition_layer_depth XR_KHR_composition_layer_cylinder XR_KHR_composition_layer_cube XR_KHR_composition_layer_equirect2 XR_KHR_convert_timespec_time XR_KHR_visibility_mask XR_FB_render_model XR_FB_spatial_entity XR_FB_spatial_entity_user XR_FB_spatial_entity_query XR_FB_spatial_entity_storage XR_FB_spatial_entity_storage_batch XR_META_spatial_entity_mesh XR_META_performance_metrics XR_FB_spatial_entity_sharing XR_FB_scene XR_FB_spatial_entity_
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] Meta XR Foveation: Version=1.0.0, Company="Meta", Extensions="XR_FB_foveation XR_FB_foveation_configuration XR_FB_foveation_vulkan "
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] Oculus Touch Controller Profile: Version=0.0.1, Company="Unity"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] Palm Pose: Version=0.0.1, Company="Unity", Extensions="XR_EXT_palm_pose"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] Hand Tracking Subsystem: Version=0.0.1, Company="Unity", Extensions="XR_EXT_hand_tracking"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ]
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] Requested feature extensions not supported by runtime: (36)
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_OCULUS_android_initialize_loader: Feature="Meta Quest Support": Version=1.0.0, Company="Unity"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_KHR_D3D11_enable: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_render_model: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_spatial_entity: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_spatial_entity_query: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_spatial_entity_storage: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_spatial_entity_storage_batch: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_META_spatial_entity_mesh: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_spatial_entity_sharing: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_scene: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_spatial_entity_container: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_scene_capture: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_face_tracking: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_face_tracking2: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.979 11148 11232 Info Unity [XR] [499947678128] [14:35:51.979][Info ] XR_FB_eye_tracking: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_FB_eye_tracking_social: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_FB_body_tracking: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_META_body_tracking_full_body: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_META_body_tracking_calibration: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_META_body_tracking_fidelity: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_FB_keyboard_tracking: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_FB_passthrough_keyboard_hands: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_OCULUS_audio_device_guid: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_META_local_dimming: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"
2025/07/29 14:35:51.981 11148 11232 Info Unity [XR] [499947678128] [14:35:51.981][Info ] XR_META_hand_tracking_wide_motion_mode: Feature="Meta XR Feature": Version=0.0.1, Company="Meta"