Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Join us on March 30, 2023, between 5 am & 1 pm EST, in the Performance Profiling Dev Blitz Day 2023 - Q&A forum and Discord where you can connect with our teams behind the Memory and CPU Profilers.
    Dismiss Notice

Official 2019.3 Release - XR Updates

Discussion in 'AR/VR (XR) Discussion' started by mfuad, Feb 4, 2020.

  1. mfuad

    mfuad

    Unity Technologies

    Joined:
    Jun 12, 2018
    Posts:
    332
    Hi everyone, last week we released Unity 2019.3 which included several XR features. We've seen questions come up, and I wanted to address the common topics being raised.

    Vulkan with FFR for Oculus Quest (Experimental)
    Vulkan/FFR on Oculus Quest is currently an experimental release, in which we intend to gather valuable feedback from the community on its performance in real world situations. This feature is only available through the XR plugin framework using the Oculus XR Plugin and not available through the deprecated built-in XR pathway. The feature is also only supported for a limited set of configurations. Currently, the feature only works with the built-in rendering pipeline (using multipass with post processing disabled) but will soon work with URP when URP 7.2.0 is released. We will make sure our documentation is more explicit about the scope of this experimental feature, and include guides on how to get started.

    New XR Plugin Framework
    Over the past several years we realized that our approach in integrating XR platforms directly into Unity’s core engine was not going to scale well with the anticipated growth of new XR hardware/software providers. We realized we were getting in the way of innovation. So we decided to develop a new plugin framework (i.e. XR SDK) that opens up the door for XR providers to leverage our engine features & optimizations. This plugin-based approach improves our ability to make quick bug fixes, distribute SDK updates from our partners, and allows us to support new XR devices and runtimes without having to modify the core engine.

    Our new XR plugins released in 2019.2 as preview packages, with the intention of collecting user feedback and addressing bugs. The plugin packages were tested and verified by all of our platform partners to ensure feature parity and performance with their respective built-in version and compatibility with their own toolkits. During the 2019.2/2019.3 alpha and beta cycles, we received great feedback from the community. Combined with our own internal testing and testing by our platform partners, we made the decision to release our new XR plugins as verified packages in the 2019.3.

    We also marked the built-in integrations as deprecated. We understand why folks are concerned about not having clarity regarding the deprecation of the built-in integrations, and how this will impact their projects. It was never our intent to outright remove a path from users and we want to ensure you that we are committed to keeping it working through the 2019 release cycle. Deprecation means the built-in implementations are still available for use in 2019.3 and will remain functional in 2019 LTS with no new features, but essential bug fixes. We will only remove the built-in integrations in future releases once we are confident that the new plugin approach is working and stable for developers as intended.

    Migrating to the XR plugin framework has impacted how projects are configured in Player Preferences and how users manage the specific platform packages they are targeting. We realize this has added extra steps from the prior setup process. In the near term, we’re working on better documentation (e.g. migration guide and getting started guide). We’re also working on project templates and more samples for XR to help developers get started more easily. Additionally, we’re constantly working on improving the overall UX workflow for XR with regards to package discoverability and installation.

    XR Performance
    Most people find performance issues first with VR because it's felt most in VR, but the root of it may or may not be VR-related. From the XR side, we have not seen any noticeable performance regressions in our testing. Our XR tests evaluate many different scenarios, and we’re always expanding our test cases. As we head towards the 2019 LTS release, we are prioritizing performance over everything else to make sure it is on par with our community’s expectations. If you are running into issues, please file a bug so we can help identify the root cause and work towards resolving.
     
  2. ROBYER1

    ROBYER1

    Joined:
    Oct 9, 2015
    Posts:
    1,418
    Is there any guidance on how to use the Vulkan FFR through the Oculus XR Plugin?

    It is utilising the Vulkan Fragment Density map from what I can see in the android logcat logs in a build simply using the Oculus XR Plugin without the OVRPlugin from Oculus Integration Assets off the Asset store.

    The documentation for this functionality is lacking through the Oculus XR Plugin manual as I cannot see any mention of the Vulkan FFR Fragment Density Map there or how to change the scale of it https://docs.unity3d.com/Packages/com.unity.xr.oculus@1.0/api/Unity.XR.Oculus.Utils.html
     
    gjf likes this.
  3. daves

    daves

    Unity Technologies

    Joined:
    Oct 18, 2018
    Posts:
    22
    Yes; there are three ways that you can set the foveation level (in order of goodness):
    • Through our XR Plugin for Oculus, there's a new API function
      Code (CSharp):
      1. Unity.XR.Oculus.Utils.SetFoveationLevel(level)
    • Specifying the level using adb to set a debug property,
      Code (shell):
      1. adb shell setprop debug.oculus.foveation.level <level>
    • Oculus' OVRManager asset package which provides functions for managing the appropriate levels. Details can be found in the Oculus developer pages (for example, here) and other Oculus developer blogs.
    Foveation has five levels from zero (0) which disables the feature, to four (4) which maximizes the rasterization control (see here for details).



    Apologies on that part. We're working to include all the new changes in our documentation but haven't gotten that quite completed yet.
     
    Last edited: Feb 4, 2020
  4. ROBYER1

    ROBYER1

    Joined:
    Oct 9, 2015
    Posts:
    1,418
    Thanks for the speedy response to this here, apologies for my constant asking about this, I knew we could activate it through the Oculus XR Plugin somewhere. Great news that it is using the Vulkan Fragment Density map as there is potential for FFR to be more cross platform as Vulkan Fragment Density map works on any supported platform (PC, mobile etc)
     
    daves likes this.
  5. petergraham003

    petergraham003

    Joined:
    May 5, 2018
    Posts:
    14

    I have been using Unity 2019.3.0f6 with XR plugin system and my Oculus XR Plugin version is 1.1.5
    When I tried to use this Unity.XR.Oculus.Utils.SetFoveationLevel(level) for setting FFR, there is no "SetFoveationLevel" method in Utils. Can you let me know whether I missed something ?
     
  6. ROBYER1

    ROBYER1

    Joined:
    Oct 9, 2015
    Posts:
    1,418
    It may not be released yet in the current Oculus XR Plugin I believe
     
  7. petergraham003

    petergraham003

    Joined:
    May 5, 2018
    Posts:
    14
    So if I want to use Vulkan Graphics API and FixedFoveatRendering in the new XR Plugin system. Can't I do it ?
     
  8. fherbst

    fherbst

    Joined:
    Jun 24, 2012
    Posts:
    800
    @daves which package version is Unity.XR.Oculus.Utils.SetFoveationLevel(level) supposed to be in? Doesn't seem to be in 1.1.5 (the 2019.3 verified version).
     
  9. daves

    daves

    Unity Technologies

    Joined:
    Oct 18, 2018
    Posts:
    22
    I just noticed that myself :(. It should be in the next release of the Oculus XR Plugin. I'm verifying with our internal teams on when that'll be.

    In the meantime, please use the
    adb shell setprop debug.oculus.foveation.level <level>
    version.

    Sorry about that everyone; I should have checked before posting.
     
    ROBYER1 likes this.
  10. daves

    daves

    Unity Technologies

    Joined:
    Oct 18, 2018
    Posts:
    22
    @petergraham003 You can use Vulkan and FFR with the XR Plugin system. You'll just need to set the foveation level using the adb command version. As mentioned, we do have an API for setting the values from script, but it hasn't been released yet.
     
  11. hippocoder

    hippocoder

    Digital Ape Moderator

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    Sounds promising. Do you think URP will drop on Friday (7.2.0) ?
     
  12. fherbst

    fherbst

    Joined:
    Jun 24, 2012
    Posts:
    800
    Foveation can also be set using the regular OVRPlugin call, no need to go the ADB way. Fortunately Oculus Utilities are still working with the new Oculus XR Plugin (even hand tracking, I was pretty surprised).
     
    Last edited: Feb 6, 2020
    ROBYER1 likes this.
  13. Brady

    Brady

    Joined:
    Sep 25, 2008
    Posts:
    2,447
    Perhaps I'm doing something wrong, but exclusively using the new XR system with the Oculus Loader, everything tracks and works correctly in editor, but after building a player, there is no tracking at all and the headset does not initialize (never leaves the OVR compositor/home). Is there an obvious thing that would make it work perfectly in-editor but not at all in a build?
     
  14. Brady

    Brady

    Joined:
    Sep 25, 2008
    Posts:
    2,447
    I just updated to XR Management 3.0.6 as well as disabled the Shared Depth Buffer setting in the Oculus loader and now it's working. So if anyone else has the same problem, try one or both of those.
     
  15. FullMe7alJacke7

    FullMe7alJacke7

    Joined:
    Dec 17, 2013
    Posts:
    55
    I'm also not sure what I am doing wrong either. I've followed the directions provided to use the new system and all the required packages appear to be present in the project.

    Tried again on a blank project and have the same results, I can not get XR working at all with my Oculus

    I tried it both with and without the Oculus home running. If I disable the Initialize at start the errors go away but that would obviously not be ideal.

    I added the XR Interaction Subsystems just to see what would happen and I still get the errors.

    Unity 2019.3.1f1 All packages included:
     
    Last edited: Feb 17, 2020
    neurograph likes this.
  16. ROBYER1

    ROBYER1

    Joined:
    Oct 9, 2015
    Posts:
    1,418
    Please report this using Bug Reporter
     
    neurograph likes this.
  17. neurograph

    neurograph

    Joined:
    Jun 8, 2010
    Posts:
    24


    I'm having the exact same issue… any updates?
    I followed all the instructions but I can not get XR working at all with my Oculus Rift S!

    Windows 10
    Unity 2019.3.2f1
    XR Management 3.06
    Oculus XR Plugin 1.1.5

    Thank you for any help. We are stuck...
    G.
     
  18. ROBYER1

    ROBYER1

    Joined:
    Oct 9, 2015
    Posts:
    1,418
    Install the Oculus app, verify it works
     
  19. avandenberg

    avandenberg

    Joined:
    Nov 22, 2018
    Posts:
    23
    Any hint on how to use culling for different eyes (for the purpose of stereo rendering of render textures)?

    When setting up an XR Rig, it creates a single camera, and I have no clue on how to do eye-specific culling.
     
  20. Skaltum

    Skaltum

    Joined:
    Nov 1, 2013
    Posts:
    27
    I had this problem after a fresh install of the oculus app.
    Rebooted the PC. Allowed unkown sources in oculus settings -> general. Then it works.
     
  21. FullMe7alJacke7

    FullMe7alJacke7

    Joined:
    Dec 17, 2013
    Posts:
    55
    Hey, following up. I noticed the fix only after several days later there was an Oculus firmware update that popped up on the app. I also updated my current version of unity to 2019.3.3f1. I'm not sure if the version of unity matters though because I 'think' I had it working prior to the update by the time I noticed it.

    Perhaps looking more into finding out if you have the newest Oculus firmware is a solution.

    @neurograph @Skaltum
     
  22. atomicjoe

    atomicjoe

    Joined:
    Apr 10, 2013
    Posts:
    1,710
    Since I updated to Unity 2019.3.5f1 and the latest Oculus XR plugin, my project crashes on the Oculus Quest unless I set it to "development build".
    If I set it to build a development build, then it doesn't crash and works fine, it's only when making a release build that it crashes on the device.
    The project is just the oculus locomotion test scene and it was working perfectly until the last Unity/Oculus update.
    The project gets built correctly and is sent to the Oculus Quest correctly, but when it starts, if it's a release build it crashes consistently at launch.
    Nothing very exciting happens in the android log either:
    Code (CSharp):
    1. 0001/01/01 00:00:00.000 -1 -1 Info  --------- beginning of main
    2. 2020/03/17 01:16:23.156 3536 3536 Warn IInputConnectionWrapper reportFullscreenMode on inexistent InputConnection
    3. 2020/03/17 01:16:23.171 3536 3550 Info Unity    SystemInfo CPU = ARM64, Cores = 8, Memory = 3790mb
    4. 2020/03/17 01:16:23.171 3536 3550 Info Unity   : SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask 0xf)
    5. 2020/03/17 01:16:23.171 3536 3550 Info Unity   : XR UsableCoreMask 0xffffffff
    6. 2020/03/17 01:16:23.172 3536 3550 Info Unity    ApplicationInfo com.DefaultCompany.Heritage version 0.1 build a8fe29dd-1fc3-4974-93ee-b2dcd043983f
    7. 2020/03/17 01:16:23.172 3536 3550 Info Unity    Built from '2019.3/staging' branch, Version '2019.3.5f1 (d691e07d38ef)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Disabled'#0 0x7f967399e8 (libunity.so) ? 0x0
    8. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    9. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    10. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    11. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #4 0x7f939dfd48 (libil2cpp.so) ? 0x0
    12. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #5 0x7f9235259c (libil2cpp.so) ? 0x0
    13. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #6 0x7f922225c4 (libil2cpp.so) ? 0x0
    14. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #7 0x7f96946c1c (libunity.so) ? 0x0
    15. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #8 0x7f96953524 (libunity.so) ? 0x0
    16. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #9 0x7f96955a78 (libunity.so) ? 0x0
    17. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #10 0x7f9698a220 (libunity.so) ? 0x0
    18. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #11 0x7f9695e444 (libunity.so) ? 0x0
    19. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #12 0x7f9695e330 (libunity.so) ? 0x0
    20. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #13 0x7f96999778 (libunity.so) ? 0x0
    21. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #14 0x7f9699963c (libunity.so) ? 0x0
    22. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #15 0x7f969995a0 (libunity.so) ? 0x0
    23. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #16 0x7f9698b6c0 (libunity.so) ? 0x0
    24. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #17 0x7f9698d448 (libunity.so) ? 0x0
    25. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #18 0x7f9679b418 (libunity.so) ? 0x0
    26. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #19 0x7f96888fb8 (libunity.so) ? 0x0
    27. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #20 0x7f969bb514 (libunity.so) ? 0x0
    28. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #21 0x7f969bbeac (libunity.so) ? 0x0
    29. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #22 0x7f969cfa8c (libunity.so) ? 0x0
    30. 2020/03/17 01:16:23.818 3536 3550 Info Unity     #23 0x7fb0f8fa30 (base.odex) ? 0x0
    31. 2020/03/17 01:16:23.818 3536 3550 Info Unity  
    32. 2020/03/17 01:16:23.818 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    33. 2020/03/17 01:16:23.818 3536 3550 Info Unity  
    34. 2020/03/17 01:16:23.835 3536 3550 Info OVRPlugin: CompositorVRAPI::PreInitialize use default UnityPlayer activity
    35. 2020/03/17 01:16:23.835 3536 3550 Info VrApiLoader: VrApi Loader Version 1.1.31.0-0-0 Feb 24 2020 14:17:57
    36. 2020/03/17 01:16:23.837 3536 3550 Warn System  : ClassLoader referenced unknown path /system/priv-app/VrDriver/lib/arm64
    37. 2020/03/17 01:16:23.838 3536 3550 Debug ApplicationLoaders ignored Vulkan layer search path /system/priv-app/VrDriver/lib/arm64:/system/priv-app/VrDriver/VrDriver.apk!/lib/arm64-v8a:/system/lib64:/vendor/lib64 for namespace 0x7fb66540f0
    38. 2020/03/17 01:16:23.839 3536 3550 Verbose VrDriver Loading 64-bit VrDriver.
    39. 2020/03/17 01:16:23.842 3536 3550 Info Distortion SetLensPositions - iad=0.063, left offset=0.000250001,0, right offset=-0.000250001,0
    40. 2020/03/17 01:16:23.842 3536 3550 Info Distortion SetLensPositions - iad=0.063, left offset=0.000250001,0, right offset=-0.000250001,0
    41. 2020/03/17 01:16:23.842 3536 3550 Info VrApi_DriverLoader: *Adding Layer GoCompatibility
    42. 2020/03/17 01:16:23.842 3536 3550 Info VrApi_DriverLoader About to call StartLayer in vrapilayers.GoCompatibility
    43. 2020/03/17 01:16:23.842 3536 3550 Debug GoCompatibility: GoCompatibility StartLayer Loading libgocompatibility.so
    44. 2020/03/17 01:16:23.843 3536 3550 Info GoCompatibility JNI_OnLoad() for GoCompatibility
    45. 2020/03/17 01:16:23.843 3536 3550 Info GoCompatibility: VrApiLayer GoCompatibility
    46. 2020/03/17 01:16:23.843 3536 3550 Info VrApiLayers Initializing VrApiLayer
    47. 2020/03/17 01:16:23.843 3536 3550 Info VrApi_DriverLoader VrapiLayer GoCompatibility started
    48. 2020/03/17 01:16:23.843 3536 3550 Info GoCompatibility: GoCompatibility vrapi_Initialize_Hooked(1 1 31 0 0x10200)
    49. 2020/03/17 01:16:23.844 3536 3550 Info VrApi    ----------- vrapi_Initialize [start] ----------
    50. 2020/03/17 01:16:23.846 3536 3550 Info VrRuntimeClient: VrRuntimeClient Init
    51. 2020/03/17 01:16:23.846 3536 3550 Info DeviceProperties_Android ovrDeviceProperties::Initialize
    52. 2020/03/17 01:16:23.847 3536 3550 Info DeviceProperties_Android: Headset Model 'monterey:SDC:H28S8Q302CMR    '
    53. 2020/03/17 01:16:23.848 3536 3550 Info DeviceProperties_Android: Device Model 'monterey'
    54. 2020/03/17 01:16:23.848 3536 3550 Info DeviceProperties_Android: Device Region 'US'
    55. 2020/03/17 01:16:23.849 3536 3550 Info DeviceProperties_Android: GPU Type 'ADRENO_540'
    56. 2020/03/17 01:16:23.852 3536 3550 Info DeviceProperties_Android Num Refresh Rates Supported 2
    57. 2020/03/17 01:16:23.852 3536 3550 Info DeviceProperties_Android: Refresh Rate (0) 60.000000Hz
    58. 2020/03/17 01:16:23.852 3536 3550 Info DeviceProperties_Android: Refresh Rate (1) 72.000000Hz
    59. 2020/03/17 01:16:23.854 3536 3550 Info DeviceProperties_Android DisplayParms.ScanoutDirection = 3
    60. 2020/03/17 01:16:23.854 3536 3550 Info DeviceProperties_Android DisplayParms.ShutterType = 0
    61. 2020/03/17 01:16:23.854 3536 3550 Info DeviceProperties_Android DisplayParms.timing = 0.500000 1.000000
    62. 2020/03/17 01:16:23.854 3536 3550 Info DeviceProperties_Android DisplayParms.prediction = (1.000000 1.500000) (1.500000 2.000000)
    63. 2020/03/17 01:16:23.855 3536 3550 Info DeviceProperties_Android: getDisplayDimensions returned 2880, 1600
    64. 2020/03/17 01:16:23.855 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_POSITIONAL_TRACKING_BIT
    65. 2020/03/17 01:16:23.855 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_DYNAMIC_DISPLAY_REFRESH_RATE_BIT
    66. 2020/03/17 01:16:23.855 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_MEMORY_EXPORT_BIT
    67. 2020/03/17 01:16:23.855 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_FIXED_FOVEATED_RENDERING_BIT
    68. 2020/03/17 01:16:23.855 3536 3550 Info VrRuntimeClient RuntimeService Enabled
    69. 2020/03/17 01:16:23.855 3536 3550 Info RuntimeHelpers: ShouldEnableOOPComposition oopc_enabled_prop = -1
    70. 2020/03/17 01:16:23.855 3536 3550 Info RuntimeHelpers: ShouldEnableOOPComposition enabled 1
    71. 2020/03/17 01:16:23.855 3536 3550 Info RuntimeHelpers: IsOopCompositionEnabled enabled
    72. 2020/03/17 01:16:23.855 3536 3550 Info VrRuntimeClient PhaseSync disabled
    73. 2020/03/17 01:16:23.859 3536 3550 Info VrRuntimeClient: IsFocusAware 0
    74. 2020/03/17 01:16:23.868 3536 3550 Info VrRuntimeClient spaceWarpGateKeeper 0
    75. 2020/03/17 01:16:23.868 3536 3550 Info AudioCapture AudioCapture::Init
    76. 2020/03/17 01:16:23.870 3536 3550 Info AudioCapture AudioCapture::Init -> Initializing audio capture using direct OS Callbacks
    77. 2020/03/17 01:16:23.870 3536 3550 Info AudioCapture AudioCapture::Init COMPLETE
    78. 2020/03/17 01:16:23.877 3536 3550 Debug VrRuntimeClient: VrRuntimeClient: initialize. inContext com.unity3d.player.UnityPlayerActivity@63b3859
    79. 2020/03/17 01:16:23.878 3536 3550 Debug VrGuardianClient: VrGuardianClient: initialize. inContext com.unity3d.player.UnityPlayerActivity@63b3859
    80. 2020/03/17 01:16:23.880 3536 3550 Info VrGuardianClient Init SUCCESS
    81. 2020/03/17 01:16:23.880 3536 3550 Warn VrGuardianClient EnsureServiceConnection.
    82. 2020/03/17 01:16:23.880 3536 3550 Debug VrGuardianClient connectToService
    83. 2020/03/17 01:16:23.880 3536 3550 Debug VrGuardianClient: VrGuardianClient creating new service
    84. 2020/03/17 01:16:23.882 3536 3550 Debug VrGuardianClient: VrGuardianClient Waiting on guardian connection...
    85. 2020/03/17 01:16:23.882 3536 3582 Debug VrGuardianClient: VrGuardianClient Service connected.android.os.BinderProxy@3140901
    86. 2020/03/17 01:16:23.884 3536 3582 Info VrGuardianClient: nativeGuardianServiceConnected: publicReadOnlyFd 60
    87. 2020/03/17 01:16:23.884 3536 3550 Debug VrGuardianClient: VrGuardianClient: guardian connectionIsReady true
    88. 2020/03/17 01:16:23.885 3536 3550 Debug VrGuardianClient: VrGuardianClient guardian context.bindService SUCCESS
    89. 2020/03/17 01:16:23.885 3536 3550 Debug VrRuntimeClient connectToService
    90. 2020/03/17 01:16:23.885 3536 3550 Debug VrRuntimeClient: VrRuntimeClient creating new service
    91. 2020/03/17 01:16:23.886 3536 3550 Debug VrRuntimeClient: VrRuntimeClient Waiting on connection...
    92. 2020/03/17 01:16:23.887 3536 3581 Debug VrRuntimeClient: VrRuntimeClient Service connected.
    93. 2020/03/17 01:16:23.891 3536 3581 Info VrRuntimeClient: nativeRuntimeServiceConnected publicReadOnlyFd=61, privateReadWriteFd=62, bufferObjectFd=63
    94. 2020/03/17 01:16:23.892 3536 3550 Debug VrRuntimeClient: VrRuntimeClient: connectionIsReady true
    95. 2020/03/17 01:16:23.892 3536 3550 Debug VrGuardianClient: VrGuardianClient initialize. cachedContext != nul
    96. 2020/03/17 01:16:23.892 3536 3550 Debug VrRuntimeClient: VrRuntimeClient context.bindService SUCCESS
    97. 2020/03/17 01:16:23.892 3536 3550 Info VrApi   : vrapi_Initialize Connected to VrRuntimeService after 0.011425s
    98. 2020/03/17 01:16:23.892 3536 3550 Debug SystemActivitiesReceiver Registering Oculus System Activity receiver
    99. 2020/03/17 01:16:23.894 3536 3550 Info SystemUtils_Internal: ShellSystemUtilsAnytimeUICapability 2
    100. 2020/03/17 01:16:23.895 3536 3550 Info Distortion SetLensPositions - iad=0.0635, left offset=-0.002986,-0.00272, right offset=0.002986,-0.00272
    101. 2020/03/17 01:16:23.895 3536 3550 Info Distortion SetLensPositions - iad=0.0635, left offset=-0.002986,-0.00272, right offset=0.002986,-0.00272
    102. 2020/03/17 01:16:23.897 3536 3550 Info Distortion Loaded distortion file from Calibration Manager
    103. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::magic = 0x56347807
    104. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::deviceModel = 0x101
    105. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::headsetModel = 0x103
    106. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeBlocksWide = 32
    107. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeBlocksHigh = 32
    108. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::lensSeparationMeters = 0.053428
    109. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::horizontalOffsetMeters = 0.000000
    110. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::displayWidthMeters = 0.118800
    111. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::displayHeightMeters = 0.066000
    112. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::displayWidthPixels = 2880
    113. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::displayHeightPixels = 1600
    114. 2020/03/17 01:16:23.897 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeTextureWidthPixels = 1216
    115. 2020/03/17 01:16:23.898 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeTextureHeightPixels = 1344
    116. 2020/03/17 01:16:23.898 3536 3550 Info Distortion ovrDistortionMeshHeader::leftEye = up 47.000000 / down 53.000000 / left 52.000000 / right 42.000000
    117. 2020/03/17 01:16:23.898 3536 3550 Info Distortion ovrDistortionMeshHeader::rightEye = up 47.000000 / down 53.000000 / left 42.000000 / right 52.000000
    118. 2020/03/17 01:16:23.898 3536 3550 Info TrackingServiceClient initialize
    119. 2020/03/17 01:16:23.898 3536 3550 Debug TrackingServiceClient onInitialize
    120. 2020/03/17 01:16:23.906 3536 3550 Info ClientInputSettings: Flail Lockout Hand 'combined'
    121. 2020/03/17 01:16:23.906 3536 3550 Info ClientInputSettings: Flail Lockout Slow Test '50'  Change '0.05'
    122. 2020/03/17 01:16:23.906 3536 3550 Info ClientInputSettings: Flail Lockout Fast Test '100'  Change '0.1'
    123. 2020/03/17 01:16:23.906 3536 3550 Info ClientInputSettings: Flail Lockout Menu button 1
    124. 2020/03/17 01:16:23.906 3536 3550 Info InputHooks InitializeInputHooks
    125. 2020/03/17 01:16:23.906 3536 3550 Info InputHooks InitializeInputHooks create
    126. 2020/03/17 01:16:23.906 3536 3550 Info InputHooks InitializeInputHookscreated calling init
    127. 2020/03/17 01:16:23.906 3536 3550 Debug VrRuntimeClient getClient6dofEntitlementMode for com.DefaultCompany.Heritage
    128. 2020/03/17 01:16:23.911 3536 3550 Info VrApi    ----------- vrapi_Initialize [end] ----------
    129. 2020/03/17 01:16:23.911 3536 3550 Info GoCompatibility Determining Emulation mode for com.DefaultCompany.Heritage
    130. 2020/03/17 01:16:23.911 3536 3550 Info GoCompatibility enitlement mode unkown so checking manifest for Go Compatibility
    131. 2020/03/17 01:16:23.911 3536 3550 Debug GoCompatibility: PackageName com.DefaultCompany.Heritage
    132. 2020/03/17 01:16:23.912 3536 3550 Info GoCompatibility headtracking feature in manifest, GoCompatibility disabled.
    133. 2020/03/17 01:16:23.912 3536 3550 Info GoCompatibility: GoCompatibility Unregistering functions
    134. 2020/03/17 01:16:23.912 3536 3550 Info GoCompatibility: GoCompatibility After Unregistering functions
    135. 2020/03/17 01:16:23.912 3536 3550 Info GoCompatibility: GoCompatibility after GoCompatibility initialize
    136. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin VkInstanceExtensions:
    137. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_surface
    138. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_android_surface
    139. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_external_memory_capabilities
    140. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_get_physical_device_properties2
    141. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin VkDeviceExtensions:
    142. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_swapchain
    143. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_external_memory
    144. 2020/03/17 01:16:23.912 3536 3550 Info OVRPlugin   VK_KHR_external_memory_fd
    145. 2020/03/17 01:16:23.912 3536 3550 Info GoCompatibility: GoCompatibility vrapi_shutdown_Hooked()
    146. 2020/03/17 01:16:23.912 3536 3550 Info VrApi    ------------ vrapi_Shutdown [start] -----------
    147. 2020/03/17 01:16:23.912 3536 3550 Debug TrackingServiceClient onShutdown
    148. 2020/03/17 01:16:23.912 3536 3550 Debug SystemActivitiesReceiver Unregistering Oculus System Activity receiver
    149. 2020/03/17 01:16:23.914 3536 3550 Info AudioCapture AudioCapture::Shutdown
    150. 2020/03/17 01:16:23.914 3536 3550 Info AudioCapture AudioCapture::StopAudioConsumerThread
    151. 2020/03/17 01:16:23.914 3536 3550 Info AudioCapture AudioCapture::StopAudioConsumerThread COMPLETE
    152. 2020/03/17 01:16:23.914 3536 3550 Info AudioCapture AudioCapture::Shutdown COMPLETE
    153. 2020/03/17 01:16:23.914 3536 3550 Info VrRuntimeClient DisableGlFunctionHooks
    154. 2020/03/17 01:16:23.914 3536 3550 Info BufferObject ovrBufferObjectFactory::Shutdown
    155. 2020/03/17 01:16:23.914 3536 3550 Info BufferObject: ovrBufferObjectFactory closing fd=63
    156. 2020/03/17 01:16:23.914 3536 3550 Info RenderUtils ovrRenderUtils::Shutdown - not initialized
    157. 2020/03/17 01:16:23.914 3536 3550 Debug VrRuntimeClient: VrRuntimeClient shutdown.
    158. 2020/03/17 01:16:23.914 3536 3550 Debug VrRuntimeClient: VrRuntimeClient Performing disconnect
    159. 2020/03/17 01:16:23.916 3536 3550 Info VrRuntimeClient: nativeRuntimeServiceConnected publicReadOnlyFd=-1, privateReadWriteFd=-1, bufferObjectFd=-1
    160. 2020/03/17 01:16:23.916 3536 3550 Debug VrGuardianClient: VrGuardianClient shutdown.
    161. 2020/03/17 01:16:23.916 3536 3550 Debug VrGuardianClient: VrGuardianClient Performing disconnect
    162. 2020/03/17 01:16:23.917 3536 3550 Info VrGuardianClient: nativeGuardianServiceConnected: publicReadOnlyFd -1
    163. 2020/03/17 01:16:23.917 3536 3550 Info VrGuardianClient Shutdown
    164. 2020/03/17 01:16:23.917 3536 3550 Info VrApi    ------------ vrapi_Shutdown [end] -----------
    165. 2020/03/17 01:16:23.919 3536 3550 Info OVRPlugin: ProfilerSystem verbose mode 0
    166. 2020/03/17 01:16:23.919 3536 3550 Info OVRPlugin OVRPlugin 1.46.0 ... preinitialized
    167. 2020/03/17 01:16:23.940 3536 3550 Debug OVRPlugin CompositorVRAPI::InitializeSystemVolume()
    168. 2020/03/17 01:16:23.941 3536 3550 Debug OVRPlugin: Current system volume level 12
    169. 2020/03/17 01:16:23.941 3536 3550 Error libEGL   call to OpenGL ES API with no current context (logged once per thread)
    170. 2020/03/17 01:16:23.941 3536 3550 Debug OVRPlugin Initializing VR.
    171. 2020/03/17 01:16:23.941 3536 3550 Info VrApiLoader: VrApi Loader Version 1.1.31.0-0-0 Feb 24 2020 14:17:57
    172. 2020/03/17 01:16:23.944 3536 3550 Verbose VrDriver Loading 64-bit VrDriver.
    173. 2020/03/17 01:16:23.944 3536 3550 Info VrApi_DriverLoader: *Adding Layer GoCompatibility
    174. 2020/03/17 01:16:23.944 3536 3550 Info VrApi_DriverLoader About to call StartLayer in vrapilayers.GoCompatibility
    175. 2020/03/17 01:16:23.944 3536 3550 Debug GoCompatibility: GoCompatibility StartLayer Loading libgocompatibility.so
    176. 2020/03/17 01:16:23.944 3536 3550 Info GoCompatibility: VrApiLayer GoCompatibility
    177. 2020/03/17 01:16:23.944 3536 3550 Info VrApiLayers Initializing VrApiLayer
    178. 2020/03/17 01:16:23.945 3536 3550 Info VrApi_DriverLoader VrapiLayer GoCompatibility started
    179. 2020/03/17 01:16:23.945 3536 3550 Info GoCompatibility: GoCompatibility vrapi_Initialize_Hooked(1 1 31 0 0x10200)
    180. 2020/03/17 01:16:23.945 3536 3550 Info VrApi    ----------- vrapi_Initialize [start] ----------
    181. 2020/03/17 01:16:23.945 3536 3550 Info VrRuntimeClient: VrRuntimeClient Init
    182. 2020/03/17 01:16:23.945 3536 3550 Info DeviceProperties_Android ovrDeviceProperties::Initialize
    183. 2020/03/17 01:16:23.946 3536 3550 Info DeviceProperties_Android: Headset Model 'monterey:SDC:H28S8Q302CMR    '
    184. 2020/03/17 01:16:23.946 3536 3550 Info DeviceProperties_Android: Device Model 'monterey'
    185. 2020/03/17 01:16:23.947 3536 3550 Info DeviceProperties_Android: Device Region 'US'
    186. 2020/03/17 01:16:23.947 3536 3550 Info DeviceProperties_Android: GPU Type 'ADRENO_540'
    187. 2020/03/17 01:16:23.948 3536 3550 Info DeviceProperties_Android Num Refresh Rates Supported 2
    188. 2020/03/17 01:16:23.948 3536 3550 Info DeviceProperties_Android: Refresh Rate (0) 60.000000Hz
    189. 2020/03/17 01:16:23.948 3536 3550 Info DeviceProperties_Android: Refresh Rate (1) 72.000000Hz
    190. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android DisplayParms.ScanoutDirection = 3
    191. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android DisplayParms.ShutterType = 0
    192. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android DisplayParms.timing = 0.500000 1.000000
    193. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android DisplayParms.prediction = (1.000000 1.500000) (1.500000 2.000000)
    194. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android: getDisplayDimensions returned 2880, 1600
    195. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_POSITIONAL_TRACKING_BIT
    196. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_DYNAMIC_DISPLAY_REFRESH_RATE_BIT
    197. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_MEMORY_EXPORT_BIT
    198. 2020/03/17 01:16:23.951 3536 3550 Info DeviceProperties_Android: ovrDeviceProperties OVR_DEVICE_CAPABILITY_FIXED_FOVEATED_RENDERING_BIT
    199. 2020/03/17 01:16:23.952 3536 3550 Info VrRuntimeClient RuntimeService Enabled
    200. 2020/03/17 01:16:23.952 3536 3550 Info RuntimeHelpers: ShouldEnableOOPComposition oopc_enabled_prop = -1
    201. 2020/03/17 01:16:23.952 3536 3550 Info RuntimeHelpers: ShouldEnableOOPComposition enabled 1
    202. 2020/03/17 01:16:23.952 3536 3550 Info RuntimeHelpers: IsOopCompositionEnabled enabled
    203. 2020/03/17 01:16:23.952 3536 3550 Info VrRuntimeClient PhaseSync disabled
    204. 2020/03/17 01:16:23.952 3536 3550 Info VrRuntimeClient: IsFocusAware 0
    205. 2020/03/17 01:16:23.959 3536 3550 Info VrRuntimeClient spaceWarpGateKeeper 0
    206. 2020/03/17 01:16:23.959 3536 3550 Info AudioCapture AudioCapture::Init
    207. 2020/03/17 01:16:23.959 3536 3550 Info AudioCapture AudioCapture::Init -> Initializing audio capture using direct OS Callbacks
    208. 2020/03/17 01:16:23.959 3536 3550 Info AudioCapture AudioCapture::Init COMPLETE
    209. 2020/03/17 01:16:23.966 3536 3550 Debug VrRuntimeClient: VrRuntimeClient: initialize. inContext com.unity3d.player.UnityPlayerActivity@63b3859
    210. 2020/03/17 01:16:23.968 3536 3550 Debug VrGuardianClient: VrGuardianClient: initialize. inContext com.unity3d.player.UnityPlayerActivity@63b3859
    211. 2020/03/17 01:16:23.971 3536 3550 Info VrGuardianClient Init SUCCESS
    212. 2020/03/17 01:16:23.971 3536 3550 Warn VrGuardianClient EnsureServiceConnection.
    213. 2020/03/17 01:16:23.971 3536 3550 Debug VrGuardianClient connectToService
    214. 2020/03/17 01:16:23.971 3536 3550 Debug VrGuardianClient: VrGuardianClient creating new service
    215. 2020/03/17 01:16:23.973 3536 3550 Debug VrGuardianClient: VrGuardianClient Waiting on guardian connection...
    216. 2020/03/17 01:16:23.973 3536 3584 Debug VrGuardianClient: VrGuardianClient Service connected.android.os.BinderProxy@3140901
    217. 2020/03/17 01:16:23.975 3536 3584 Info VrGuardianClient: nativeGuardianServiceConnected: publicReadOnlyFd 62
    218. 2020/03/17 01:16:23.975 3536 3550 Debug VrGuardianClient: VrGuardianClient: guardian connectionIsReady true
    219. 2020/03/17 01:16:23.976 3536 3550 Debug VrGuardianClient: VrGuardianClient guardian context.bindService SUCCESS
    220. 2020/03/17 01:16:23.976 3536 3550 Debug VrRuntimeClient connectToService
    221. 2020/03/17 01:16:23.976 3536 3550 Debug VrRuntimeClient: VrRuntimeClient creating new service
    222. 2020/03/17 01:16:23.978 3536 3583 Debug VrRuntimeClient: VrRuntimeClient Service connected.
    223. 2020/03/17 01:16:23.978 3536 3550 Debug VrRuntimeClient: VrRuntimeClient Waiting on connection...
    224. 2020/03/17 01:16:23.984 3536 3583 Info VrRuntimeClient: nativeRuntimeServiceConnected publicReadOnlyFd=63, privateReadWriteFd=64, bufferObjectFd=65
    225. 2020/03/17 01:16:23.984 3536 3550 Debug VrRuntimeClient: VrRuntimeClient: connectionIsReady true
    226. 2020/03/17 01:16:23.985 3536 3550 Debug VrGuardianClient: VrGuardianClient initialize. cachedContext != nul
    227. 2020/03/17 01:16:23.985 3536 3550 Debug VrRuntimeClient: VrRuntimeClient context.bindService SUCCESS
    228. 2020/03/17 01:16:23.985 3536 3550 Info VrApi   : vrapi_Initialize Connected to VrRuntimeService after 0.013699s
    229. 2020/03/17 01:16:23.985 3536 3550 Debug SystemActivitiesReceiver Registering Oculus System Activity receiver
    230. 2020/03/17 01:16:23.988 3536 3550 Info SystemUtils_Internal: ShellSystemUtilsAnytimeUICapability 2
    231. 2020/03/17 01:16:23.989 3536 3550 Info Distortion SetLensPositions - iad=0.0635, left offset=-0.002986,-0.00272, right offset=0.002986,-0.00272
    232. 2020/03/17 01:16:23.989 3536 3550 Info Distortion SetLensPositions - iad=0.0635, left offset=-0.002986,-0.00272, right offset=0.002986,-0.00272
    233. 2020/03/17 01:16:23.993 3536 3550 Info Distortion Loaded distortion file from Calibration Manager
    234. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::magic = 0x56347807
    235. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::deviceModel = 0x101
    236. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::headsetModel = 0x103
    237. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeBlocksWide = 32
    238. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeBlocksHigh = 32
    239. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::lensSeparationMeters = 0.053428
    240. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::horizontalOffsetMeters = 0.000000
    241. 2020/03/17 01:16:23.993 3536 3550 Info Distortion ovrDistortionMeshHeader::displayWidthMeters = 0.118800
    242. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::displayHeightMeters = 0.066000
    243. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::displayWidthPixels = 2880
    244. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::displayHeightPixels = 1600
    245. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeTextureWidthPixels = 1216
    246. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::eyeTextureHeightPixels = 1344
    247. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::leftEye = up 47.000000 / down 53.000000 / left 52.000000 / right 42.000000
    248. 2020/03/17 01:16:23.994 3536 3550 Info Distortion ovrDistortionMeshHeader::rightEye = up 47.000000 / down 53.000000 / left 42.000000 / right 52.000000
    249. 2020/03/17 01:16:23.994 3536 3550 Info TrackingServiceClient initialize
    250. 2020/03/17 01:16:23.995 3536 3550 Debug TrackingServiceClient onInitialize
    251. 2020/03/17 01:16:24.006 3536 3550 Info ClientInputSettings: Flail Lockout Hand 'combined'
    252. 2020/03/17 01:16:24.006 3536 3550 Info ClientInputSettings: Flail Lockout Slow Test '50'  Change '0.05'
    253. 2020/03/17 01:16:24.006 3536 3550 Info ClientInputSettings: Flail Lockout Fast Test '100'  Change '0.1'clientWindow=android.os.BinderProxy@9d5bb5c
    254. 2020/03/17 01:16:24.131 3536 3576 Info ScreenCaptureHelper Advertising com.DefaultCompany.Heritage as streamable
    255. 2020/03/17 01:16:24.132 3536 3576 Info VrApi    OVR::Stats thread started
    256. 2020/03/17 01:16:24.134 3536 3576 Info VrApi    System brightness = 255
    257. 2020/03/17 01:16:24.135 3536 3576 Info VrApi    Set brightness to 255
    258. 2020/03/17 01:16:24.136 3536 3576 Info VrApi    Set DND mode to false
    259. 2020/03/17 01:16:24.146 3536 3536 Debug MetricsService: Connected to metrics service ComponentInfo{com.oculus.ovrmonitormetricsservice/com.oculus.ovrmonitormetricsservice.MetricsService}
    260. 2020/03/17 01:16:24.149 3536 3588 Debug VrApi   : VrApi::isWifiConnected exception Make sure android.permission.ACCESS_NETWORK_STATE is set in the manifest.
    261. 2020/03/17 01:16:24.150 3536 3588 Debug VrApi    targetSDKVersion 28
    262. 2020/03/17 01:16:24.152 3536 3588 Info JniUtils ovr_GetCurrentPackageSignature
    263. 2020/03/17 01:16:24.153 3536 3588 Info Metrics  device name = Oculus Quest
    264. 2020/03/17 01:16:24.218 3536 3576 Info VrApi    System DND mode = false
    265. 2020/03/17 01:16:24.218 3536 3576 Info VrApi    ---------- vrapi_EnterVrMode [end] ----------
    266. 2020/03/17 01:16:24.218 3536 3576 Info ClientInputSettings LatchBackButtonEntireFrame = false
    267. 2020/03/17 01:16:24.218 3536 3576 Info ClientInputSettings BlockRemoteButtonsWhenNotEmulatingHMT = true
    268. 2020/03/17 01:16:24.218 3536 3576 Info ClientInputSettings EatNativeGamepadEvents = false
    269. 2020/03/17 01:16:24.219 3536 3576 Debug OVRPlugin Registering utility receivers.
    270. 2020/03/17 01:16:24.219 3536 3576 Debug OVRPlugin: Developer mode 1
    271. 2020/03/17 01:16:24.219 3536 3576 Info OVRPlugin: HandleVrapiEvents Unknown Event.
    272. 2020/03/17 01:16:24.219 3536 3550 Debug OVRPlugin: HMD present 1
    273. 2020/03/17 01:16:25.243 3536 3588 Info Telemetry: App memory usage PSS=901MB
    274. 2020/03/17 01:16:25.253 3536 3588 Info VrApi    FPS=0,Prd=0ms,Tear=0,Early=0,Stale=0,VSnc=1,Lat=0,Fov=0,CPU4/GPU=0/0,2304/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=1017MHz,Free=1410MB,PSM=0,PLS=0,Temp=0.0C/0.0C,TW=0.00ms,App=0.00ms,GD=0.00ms,CPU&GPU=0.00ms,LCnt=0,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    275. 2020/03/17 01:16:26.160 3536 3588 Info VrApi    FPS=0,Prd=0ms,Tear=0,Early=0,Stale=0,VSnc=1,Lat=0,Fov=0,CPU4/GPU=0/0,2304/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=680MHz,Free=1293MB,PSM=0,PLS=0,Temp=0.0C/0.0C,TW=0.00ms,App=0.00ms,GD=0.00ms,CPU&GPU=0.00ms,LCnt=0,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    276. 2020/03/17 01:16:26.929 3536 3576 Warn VrApi   : Time to first swap 3.088 seconds
    277. 2020/03/17 01:16:26.930 3536 3593 Info VrRuntimeClient FenceChecker::MainLoop - started
    278. 2020/03/17 01:16:26.991 3536 3576 Warn TimeWarp: MakeNonblockingRequest request for frame 1 is still invalid for com.DefaultCompany.Heritage after 25 tries.
    279. 2020/03/17 01:16:26.991 3536 3576 Warn VrRuntimeClient: WarpSwap MakeRequest failed
    280. 2020/03/17 01:16:27.049 3536 3576 Warn TimeWarp: MakeNonblockingRequest request for frame 2 is still invalid for com.DefaultCompany.Heritage after 25 tries.
    281. 2020/03/17 01:16:27.049 3536 3576 Warn VrRuntimeClient: WarpSwap MakeRequest failed
    282. 2020/03/17 01:16:27.101 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 25 msec for frame to retire
    283. 2020/03/17 01:16:27.154 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 51 msec for frame to retire
    284. 2020/03/17 01:16:27.165 3536 3588 Info VrApi    FPS=0,Prd=0ms,Tear=0,Early=0,Stale=0,VSnc=1,Lat=0,Fov=0,CPU4/GPU=0/0,300/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=200MHz,Free=1268MB,PSM=0,PLS=0,Temp=32.0C/0.0C,TW=0.00ms,App=0.00ms,GD=0.00ms,CPU&GPU=0.00ms,LCnt=0,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    285. 2020/03/17 01:16:27.209 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 76 msec for frame to retire
    286. 2020/03/17 01:16:27.261 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 102 msec for frame to retire
    287. 2020/03/17 01:16:27.314 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 127 msec for frame to retire
    288. 2020/03/17 01:16:27.367 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 153 msec for frame to retire
    289. 2020/03/17 01:16:27.421 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 179 msec for frame to retire
    290. 2020/03/17 01:16:27.473 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 204 msec for frame to retire
    291. 2020/03/17 01:16:27.526 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 230 msec for frame to retire
    292. 2020/03/17 01:16:27.579 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 255 msec for frame to retire
    293. 2020/03/17 01:16:27.632 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 281 msec for frame to retire
    294. 2020/03/17 01:16:27.685 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 307 msec for frame to retire
    295. 2020/03/17 01:16:27.737 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 332 msec for frame to retire
    296. 2020/03/17 01:16:27.790 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 358 msec for frame to retire
    297. 2020/03/17 01:16:27.843 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 383 msec for frame to retire
    298. 2020/03/17 01:16:27.895 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 409 msec for frame to retire
    299. 2020/03/17 01:16:27.950 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 435 msec for frame to retire
    300. 2020/03/17 01:16:28.002 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 460 msec for frame to retire
    301. 2020/03/17 01:16:28.055 3536 3576 Warn VrApi    FrameIndex = 2, LatestRetiredFrameIndex = -1, waited for 486 msec for frame to retire
    302. 2020/03/17 01:16:28.084 3536 3576 Warn VrApi   : ovr_SubmitFrameInternal UseNonblockingCall has not returned in 500 msec, unblocking
    303. 2020/03/17 01:16:28.123 3536 3576 Warn TimeWarp: MakeNonblockingRequest request for frame 3 is still invalid for com.DefaultCompany.Heritage after 25 tries.
    304. 2020/03/17 01:16:28.124 3536 3576 Warn VrRuntimeClient: WarpSwap MakeRequest failed
    305. 2020/03/17 01:16:28.162 3536 3588 Info VrApi    FPS=1,Prd=0ms,Tear=0,Early=0,Stale=0,VSnc=0,Lat=1,Fov=0,CPU4/GPU=0/0,300/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=200MHz,Free=1273MB,PSM=0,PLS=0,Temp=32.0C/0.0C,TW=0.00ms,App=0.00ms,GD=0.00ms,CPU&GPU=0.00ms,LCnt=1,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    306. 2020/03/17 01:16:28.182 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 25 msec for frame to retire
    307. 2020/03/17 01:16:28.235 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 51 msec for frame to retire
    308. 2020/03/17 01:16:28.288 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 76 msec for frame to retire
    309. 2020/03/17 01:16:28.341 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 102 msec for frame to retire
    310. 2020/03/17 01:16:28.394 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 127 msec for frame to retire
    311. 2020/03/17 01:16:28.447 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 153 msec for frame to retire
    312. 2020/03/17 01:16:28.501 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 179 msec for frame to retire
    313. 2020/03/17 01:16:28.554 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 204 msec for frame to retire
    314. 2020/03/17 01:16:28.606 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 230 msec for frame to retire
    315. 2020/03/17 01:16:28.649 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 255 msec for frame to retire
    316. 2020/03/17 01:16:28.695 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 281 msec for frame to retire
    317. 2020/03/17 01:16:28.748 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 307 msec for frame to retire
    318. 2020/03/17 01:16:28.801 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 332 msec for frame to retire
    319. 2020/03/17 01:16:28.854 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 358 msec for frame to retire
    320. 2020/03/17 01:16:28.907 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 383 msec for frame to retire
    321. 2020/03/17 01:16:28.960 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 409 msec for frame to retire
    322. 2020/03/17 01:16:29.013 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 435 msec for frame to retire
    323. 2020/03/17 01:16:29.066 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 460 msec for frame to retire
    324. 2020/03/17 01:16:29.115 3536 3576 Warn VrApi    FrameIndex = 3, LatestRetiredFrameIndex = -1, waited for 486 msec for frame to retire
    325. 2020/03/17 01:16:29.140 3536 3576 Warn VrApi   : ovr_SubmitFrameInternal UseNonblockingCall has not returned in 500 msec, unblocking
    326. 2020/03/17 01:16:29.158 3536 3588 Info VrApi    FPS=3,Prd=6ms,Tear=0,Early=0,Stale=0,VSnc=0,Lat=1,Fov=0,CPU4/GPU=0/0,1651/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=411MHz,Free=1311MB,PSM=0,PLS=0,Temp=32.0C/0.0C,TW=0.00ms,App=0.53ms,GD=0.00ms,CPU&GPU=923.06ms,LCnt=1,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    327. 2020/03/17 01:16:29.170 3536 3576 Warn TimeWarp: MakeNonblockingRequest request for frame 4 is still invalid for com.DefaultCompany.Heritage after 25 tries.
    328. 2020/03/17 01:16:29.170 3536 3576 Warn VrRuntimeClient: WarpSwap MakeRequest failed
    329. 2020/03/17 01:16:29.214 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 25 msec for frame to retire
    330. 2020/03/17 01:16:29.263 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 51 msec for frame to retire
    331. 2020/03/17 01:16:29.306 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 76 msec for frame to retire
    332. 2020/03/17 01:16:29.352 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 102 msec for frame to retire
    333. 2020/03/17 01:16:29.404 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 127 msec for frame to retire
    334. 2020/03/17 01:16:29.456 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 153 msec for frame to retire
    335. 2020/03/17 01:16:29.509 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 179 msec for frame to retire
    336. 2020/03/17 01:16:29.562 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 204 msec for frame to retire
    337. 2020/03/17 01:16:29.614 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 230 msec for frame to retire
    338. 2020/03/17 01:16:29.667 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 255 msec for frame to retire
    339. 2020/03/17 01:16:29.720 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 281 msec for frame to retire
    340. 2020/03/17 01:16:29.773 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 307 msec for frame to retire
    341. 2020/03/17 01:16:29.825 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 332 msec for frame to retire
    342. 2020/03/17 01:16:29.878 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 358 msec for frame to retire
    343. 2020/03/17 01:16:29.931 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 383 msec for frame to retire
    344. 2020/03/17 01:16:29.984 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 409 msec for frame to retire
    345. 2020/03/17 01:16:30.037 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 435 msec for frame to retire
    346. 2020/03/17 01:16:30.089 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 460 msec for frame to retire
    347. 2020/03/17 01:16:30.142 3536 3576 Warn VrApi    FrameIndex = 4, LatestRetiredFrameIndex = -1, waited for 486 msec for frame to retire
    348. 2020/03/17 01:16:30.167 3536 3588 Info VrApi    FPS=3,Prd=6ms,Tear=0,Early=0,Stale=0,VSnc=0,Lat=1,Fov=0,CPU4/GPU=0/0,300/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=200MHz,Free=1315MB,PSM=0,PLS=0,Temp=32.0C/0.0C,TW=0.00ms,App=0.53ms,GD=0.00ms,CPU&GPU=923.06ms,LCnt=1,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    349. 2020/03/17 01:16:30.177 3536 3576 Warn VrApi   : ovr_SubmitFrameInternal UseNonblockingCall has not returned in 500 msec, unblocking
    350. 2020/03/17 01:16:30.212 3536 3576 Warn TimeWarp: MakeNonblockingRequest request for frame 5 is still invalid for com.DefaultCompany.Heritage after 25 tries.
    351. 2020/03/17 01:16:30.212 3536 3576 Warn VrRuntimeClient: WarpSwap MakeRequest failed
    352. 2020/03/17 01:16:30.255 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 25 msec for frame to retire
    353. 2020/03/17 01:16:30.259 3536 3550 Info Unity    Unity v2019.3.5f1, Oculus Utilities v1.46.0, OVRPlugin v1.46.0, SDK v1.1.31.0.
    354. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    355. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    356. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    357. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    358. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #4 0x7f92fd6440 (libil2cpp.so) ? 0x0
    359. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #5 0x7f9235259c (libil2cpp.so) ? 0x0
    360. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #6 0x7f922225c4 (libil2cpp.so) ? 0x0
    361. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #7 0x7f96946c1c (libunity.so) ? 0x0
    362. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #8 0x7f96953524 (libunity.so) ? 0x0
    363. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #9 0x7f96955a78 (libunity.so) ? 0x0
    364. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #10 0x7f9698a220 (libunity.so) ? 0x0
    365. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #11 0x7f9695e444 (libunity.so) ? 0x0
    366. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #12 0x7f9695e828 (libunity.so) ? 0x0
    367. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #13 0x7f9695e3ac (libunity.so) ? 0x0
    368. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #14 0x7f96999778 (libunity.so) ? 0x0
    369. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #15 0x7f9699963c (libunity.so) ? 0x0
    370. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #16 0x7f969995a0 (libunity.so) ? 0x0
    371. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #17 0x7f968925e0 (libunity.so) ? 0x0
    372. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #18 0x7f968927dc (libunity.so) ? 0x0
    373. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #19 0x7f968922d0 (libunity.so) ? 0x0
    374. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #20 0x7f96892390 (libunity.so) ? 0x0
    375. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #21 0x7f96891ffc (libunity.so) ? 0x0
    376. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #22 0x7f96892ed4 (libunity.so) ? 0x0
    377. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #23 0x7f9689356c (libunity.so) ? 0x0
    378. 2020/03/17 01:16:30.259 3536 3550 Info Unity     #24 0x7f96885900 (libunity.so) ? 0x0
    379. 2020/03/17 01:16:30.259 3536 3550 Info Unity  
    380. 2020/03/17 01:16:30.262 3536 3550 Debug OVRPlugin: ovrp_Media_Initialize call ovrm_Initialize()
    381. 2020/03/17 01:16:30.262 3536 3550 Debug OVRMrcLib [MediaManager] Set JavaVM to 0x7fb22e9040
    382. 2020/03/17 01:16:30.264 3536 3550 Info OVRMrcLib GetExternalAppFilesPath() returns /storage/emulated/0/Android/data/com.DefaultCompany.Heritage/files
    383. 2020/03/17 01:16:30.264 3536 3550 Debug OVRMrcLib: MRC config file can't be opened tried /storage/emulated/0/Android/data/com.DefaultCompany.Heritage/files/mrc.xml
    384. 2020/03/17 01:16:30.264 3536 3550 Debug OVRMrcLib [MediaManager] InitConfiguration()
    385. 2020/03/17 01:16:30.264 3536 3550 Debug OVRMrcLib m_externalCameraCount 0, m_isDefaultExternalCameraAvailable 0
    386. 2020/03/17 01:16:30.264 3536 3550 Info OVRMrcLib: [MediaManager] MrcConfig enabled 0 hq_mode 0, frame 2560 x 1080 image 1920 x 1080 tcp_port 28734 debugcamera 0 bitrate 8000000
    387. 2020/03/17 01:16:30.264 3536 3550 Info OVRMrcLib [MediaManager] GraphicsAPI set to GLES
    388. 2020/03/17 01:16:30.264 3536 3550 Debug OVRPlugin ovrp_Media_Initialize(), new counter 1
    389. 2020/03/17 01:16:30.264 3536 3550 Info Unity    OVRPlugin.Media initialized
    390. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    391. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    392. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    393. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    394. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #4 0x7f92fd68b8 (libil2cpp.so) ? 0x0
    395. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #5 0x7f92fd64e8 (libil2cpp.so) ? 0x0
    396. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #6 0x7f9235259c (libil2cpp.so) ? 0x0
    397. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #7 0x7f922225c4 (libil2cpp.so) ? 0x0
    398. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #8 0x7f96946c1c (libunity.so) ? 0x0
    399. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #9 0x7f96953524 (libunity.so) ? 0x0
    400. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #10 0x7f96955a78 (libunity.so) ? 0x0
    401. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #11 0x7f9698a220 (libunity.so) ? 0x0
    402. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #12 0x7f9695e444 (libunity.so) ? 0x0
    403. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #13 0x7f9695e828 (libunity.so) ? 0x0
    404. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #14 0x7f9695e3ac (libunity.so) ? 0x0
    405. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #15 0x7f96999778 (libunity.so) ? 0x0
    406. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #16 0x7f9699963c (libunity.so) ? 0x0
    407. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #17 0x7f969995a0 (libunity.so) ? 0x0
    408. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #18 0x7f968925e0 (libunity.so) ? 0x0
    409. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #19 0x7f968927dc (libunity.so) ? 0x0
    410. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #20 0x7f968922d0 (libunity.so) ? 0x0
    411. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #21 0x7f96892390 (libunity.so) ? 0x0
    412. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #22 0x7f96891ffc (libunity.so) ? 0x0
    413. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #23 0x7f96892ed4 (libunity.so) ? 0x0
    414. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #24 0x7f9689356c (libunity.so) ? 0x0
    415. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #25 0x7f96885900 (libunity.so) ? 0x0
    416. 2020/03/17 01:16:30.264 3536 3550 Info Unity     #26 0x7f9688
    417. 2020/03/17 01:16:30.266 3536 3550 Info Unity    [MRC] SetMrcAudioSampleRate(48000)
    418. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    419. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    420. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    421. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    422. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #4 0x7f92fd6994 (libil2cpp.so) ? 0x0
    423. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #5 0x7f92fd64e8 (libil2cpp.so) ? 0x0
    424. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #6 0x7f9235259c (libil2cpp.so) ? 0x0
    425. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #7 0x7f922225c4 (libil2cpp.so) ? 0x0
    426. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #8 0x7f96946c1c (libunity.so) ? 0x0
    427. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #9 0x7f96953524 (libunity.so) ? 0x0
    428. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #10 0x7f96955a78 (libunity.so) ? 0x0
    429. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #11 0x7f9698a220 (libunity.so) ? 0x0
    430. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #12 0x7f9695e444 (libunity.so) ? 0x0
    431. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #13 0x7f9695e828 (libunity.so) ? 0x0
    432. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #14 0x7f9695e3ac (libunity.so) ? 0x0
    433. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #15 0x7f96999778 (libunity.so) ? 0x0
    434. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #16 0x7f9699963c (libunity.so) ? 0x0
    435. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #17 0x7f969995a0 (libunity.so) ? 0x0
    436. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #18 0x7f968925e0 (libunity.so) ? 0x0
    437. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #19 0x7f968927dc (libunity.so) ? 0x0
    438. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #20 0x7f968922d0 (libunity.so) ? 0x0
    439. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #21 0x7f96892390 (libunity.so) ? 0x0
    440. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #22 0x7f96891ffc (libunity.so) ? 0x0
    441. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #23 0x7f96892ed4 (libunity.so) ? 0x0
    442. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #24 0x7f9689356c (libunity.so) ? 0x0
    443. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #25 0x7f96885900 (libunity.so) ? 0x0
    444. 2020/03/17 01:16:30.266 3536 3550 Info Unity     #26 0
    445. 2020/03/17 01:16:30.269 3536 3550 Info Unity    [MRC] Active InputVideoBufferType:TextureHandle
    446. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    447. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    448. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    449. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    450. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #4 0x7f92fd6a24 (libil2cpp.so) ? 0x0
    451. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #5 0x7f92fd64e8 (libil2cpp.so) ? 0x0
    452. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #6 0x7f9235259c (libil2cpp.so) ? 0x0
    453. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #7 0x7f922225c4 (libil2cpp.so) ? 0x0
    454. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #8 0x7f96946c1c (libunity.so) ? 0x0
    455. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #9 0x7f96953524 (libunity.so) ? 0x0
    456. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #10 0x7f96955a78 (libunity.so) ? 0x0
    457. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #11 0x7f9698a220 (libunity.so) ? 0x0
    458. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #12 0x7f9695e444 (libunity.so) ? 0x0
    459. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #13 0x7f9695e828 (libunity.so) ? 0x0
    460. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #14 0x7f9695e3ac (libunity.so) ? 0x0
    461. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #15 0x7f96999778 (libunity.so) ? 0x0
    462. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #16 0x7f9699963c (libunity.so) ? 0x0
    463. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #17 0x7f969995a0 (libunity.so) ? 0x0
    464. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #18 0x7f968925e0 (libunity.so) ? 0x0
    465. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #19 0x7f968927dc (libunity.so) ? 0x0
    466. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #20 0x7f968922d0 (libunity.so) ? 0x0
    467. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #21 0x7f96892390 (libunity.so) ? 0x0
    468. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #22 0x7f96891ffc (libunity.so) ? 0x0
    469. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #23 0x7f96892ed4 (libunity.so) ? 0x0
    470. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #24 0x7f9689356c (libunity.so) ? 0x0
    471. 2020/03/17 01:16:30.269 3536 3550 Info Unity     #25 0x7f96885900 (libunity.so)
    472. 2020/03/17 01:16:30.271 3536 3550 Debug OVRMrcLib [MediaManager] SetMrcActivationMode(Automatic) has no effect, because MRC is currently disabled.
    473. 2020/03/17 01:16:30.271 3536 3550 Debug OVRMrcLib [MediaManager] SetMrcActivationMode 0 listening 0
    474. 2020/03/17 01:16:30.271 3536 3550 Info Unity   : [MRC] ActivateMode Automatic
    475. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    476. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    477. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    478. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    479. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #4 0x7f92fd6bec (libil2cpp.so) ? 0x0
    480. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #5 0x7f92fd64e8 (libil2cpp.so) ? 0x0
    481. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #6 0x7f9235259c (libil2cpp.so) ? 0x0
    482. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #7 0x7f922225c4 (libil2cpp.so) ? 0x0
    483. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #8 0x7f96946c1c (libunity.so) ? 0x0
    484. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #9 0x7f96953524 (libunity.so) ? 0x0
    485. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #10 0x7f96955a78 (libunity.so) ? 0x0
    486. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #11 0x7f9698a220 (libunity.so) ? 0x0
    487. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #12 0x7f9695e444 (libunity.so) ? 0x0
    488. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #13 0x7f9695e828 (libunity.so) ? 0x0
    489. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #14 0x7f9695e3ac (libunity.so) ? 0x0
    490. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #15 0x7f96999778 (libunity.so) ? 0x0
    491. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #16 0x7f9699963c (libunity.so) ? 0x0
    492. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #17 0x7f969995a0 (libunity.so) ? 0x0
    493. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #18 0x7f968925e0 (libunity.so) ? 0x0
    494. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #19 0x7f968927dc (libunity.so) ? 0x0
    495. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #20 0x7f968922d0 (libunity.so) ? 0x0
    496. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #21 0x7f96892390 (libunity.so) ? 0x0
    497. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #22 0x7f96891ffc (libunity.so) ? 0x0
    498. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #23 0x7f96892ed4 (libunity.so) ? 0x0
    499. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #24 0x7f9689356c (libunity.so) ? 0x0
    500. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #25 0x7f96885900 (libunity.so) ? 0x0
    501. 2020/03/17 01:16:30.271 3536 3550 Info Unity     #26 0x7f96
    502. 2020/03/17 01:16:30.278 3536 3550 Info ClientInputSettings ReorientHMDOnControllerRecenter = true
    503. 2020/03/17 01:16:30.299 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 51 msec for frame to retire
    504. 2020/03/17 01:16:30.312 3536 3550 Info Unity    Activate TeleportInputHandlerTouch derived from TeleportInputHandler[2]
    505. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    506. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    507. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    508. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    509. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #4 0x7f9290d464 (libil2cpp.so) ? 0x0
    510. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #5 0x7f9277a1d8 (libil2cpp.so) ? 0x0
    511. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    512. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    513. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    514. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    515. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    516. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    517. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    518. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    519. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    520. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    521. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    522. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    523. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    524. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    525. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    526. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    527. 2020/03/17 01:16:30.312 3536 3550 Info Unity  
    528. 2020/03/17 01:16:30.312 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    529. 2020/03/17 01:16:30.312 3536 3550 Info Unity  
    530. 2020/03/17 01:16:30.312 3536 3550 Info Unity    TeleportInputHandlerHMD is TeleportInputHandlerTouch = False
    531. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    532. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    533. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    534. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    535. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    536. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #5 0x7f9277a1d8 (libil2cpp.so) ? 0x0
    537. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    538. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    539. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    540. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    541. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    542. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    543. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    544. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    545. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    546. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    547. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    548. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    549. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    550. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    551. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    552. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    553. 2020/03/17 01:16:30.312 3536 3550 Info Unity  
    554. 2020/03/17 01:16:30.312 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    555. 2020/03/17 01:16:30.312 3536 3550 Info Unity  
    556. 2020/03/17 01:16:30.312 3536 3550 Info Unity    TeleportInputHandlerTouch is TeleportInputHandlerTouch = True
    557. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    558. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    559. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    560. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    561. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    562. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #5 0x7f9277a1d8 (libil2cpp.so) ? 0x0
    563. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    564. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    565. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    566. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    567. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    568. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    569. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    570. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    571. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    572. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    573. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    574. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    575. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    576. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    577. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    578. 2020/03/17 01:16:30.312 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    579. 2020/03/17 01:16:30.312 3536 3550 Info Unity  
    580. 2020/03/17 01:16:30.312 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    581. 2020/03/17 01:16:30.312 3536 3550 Info Unity  
    582. 2020/03/17 01:16:30.313 3536 3550 Info Unity    Activate TeleportAimHandlerParabolic derived from TeleportAimHandler[2]
    583. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    584. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    585. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    586. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    587. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #4 0x7f9290d464 (libil2cpp.so) ? 0x0
    588. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #5 0x7f9277a1ec (libil2cpp.so) ? 0x0
    589. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    590. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    591. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    592. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    593. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    594. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    595. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    596. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    597. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    598. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    599. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    600. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    601. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    602. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    603. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    604. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    605. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    606. 2020/03/17 01:16:30.313 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    607. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    608. 2020/03/17 01:16:30.313 3536 3550 Info Unity    TeleportAimHandlerLaser is TeleportAimHandlerParabolic = False
    609. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    610. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    611. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    612. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    613. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    614. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #5 0x7f9277a1ec (libil2cpp.so) ? 0x0
    615. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    616. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    617. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    618. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    619. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    620. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    621. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    622. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    623. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    624. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    625. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    626. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    627. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    628. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    629. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    630. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    631. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    632. 2020/03/17 01:16:30.313 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    633. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    634. 2020/03/17 01:16:30.313 3536 3550 Info Unity    TeleportAimHandlerParabolic is TeleportAimHandlerParabolic = True
    635. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    636. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    637. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    638. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    639. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    640. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #5 0x7f9277a1ec (libil2cpp.so) ? 0x0
    641. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    642. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    643. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    644. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    645. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    646. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    647. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    648. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    649. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    650. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    651. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    652. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    653. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    654. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    655. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    656. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    657. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    658. 2020/03/17 01:16:30.313 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    659. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    660. 2020/03/17 01:16:30.313 3536 3550 Info Unity    Activate TeleportTargetHandlerPhysical derived from TeleportTargetHandler[3]
    661. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    662. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    663. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    664. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    665. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #4 0x7f9290d464 (libil2cpp.so) ? 0x0
    666. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #5 0x7f9277a200 (libil2cpp.so) ? 0x0
    667. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    668. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    669. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    670. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    671. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    672. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    673. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    674. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    675. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    676. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    677. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    678. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    679. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    680. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    681. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    682. 2020/03/17 01:16:30.313 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    683. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    684. 2020/03/17 01:16:30.313 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    685. 2020/03/17 01:16:30.313 3536 3550 Info Unity  
    686. 2020/03/17 01:16:30.314 3536 3550 Info Unity    TeleportTargetHandlerNavMesh is TeleportTargetHandlerPhysical = False
    687. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    688. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    689. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    690. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    691. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    692. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #5 0x7f9277a200 (libil2cpp.so) ? 0x0
    693. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    694. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    695. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    696. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    697. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    698. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    699. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    700. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    701. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    702. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    703. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    704. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    705. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    706. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    707. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    708. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    709. 2020/03/17 01:16:30.314 3536 3550 Info Unity  
    710. 2020/03/17 01:16:30.314 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    711. 2020/03/17 01:16:30.314 3536 3550 Info Unity  
    712. 2020/03/17 01:16:30.314 3536 3550 Info Unity    TeleportTargetHandlerNode is TeleportTargetHandlerPhysical = False
    713. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    714. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    715. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    716. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    717. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    718. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #5 0x7f9277a200 (libil2cpp.so) ? 0x0
    719. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    720. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    721. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    722. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    723. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    724. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    725. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    726. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    727. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    728. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    729. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    730. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    731. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    732. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    733. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    734. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    735. 2020/03/17 01:16:30.314 3536 3550 Info Unity  
    736. 2020/03/17 01:16:30.314 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    737. 2020/03/17 01:16:30.314 3536 3550 Info Unity  
    738. 2020/03/17 01:16:30.314 3536 3550 Info Unity    TeleportTargetHandlerPhysical is TeleportTargetHandlerPhysical = True
    739. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    740. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    741. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    742. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    743. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    744. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #5 0x7f9277a200 (libil2cpp.so) ? 0x0
    745. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    746. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    747. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    748. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    749. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    750. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    751. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    752. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    753. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    754. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    755. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    756. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    757. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    758. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    759. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    760. 2020/03/17 01:16:30.314 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    761. 2020/03/17 01:16:30.314 3536 3550 Info Unity  
    762. 2020/03/17 01:16:30.314 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    763. 2020/03/17 01:16:30.314 3536 3550 Info Unity  
    764. 2020/03/17 01:16:30.315 3536 3550 Info Unity    Activate TeleportOrientationHandlerThumbstick derived from TeleportOrientationHandler[3]
    765. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    766. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    767. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    768. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    769. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #4 0x7f9290d464 (libil2cpp.so) ? 0x0
    770. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #5 0x7f9277a214 (libil2cpp.so) ? 0x0
    771. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    772. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    773. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    774. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    775. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    776. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    777. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    778. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    779. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    780. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    781. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    782. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    783. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    784. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    785. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    786. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    787. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    788. 2020/03/17 01:16:30.315 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    789. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    790. 2020/03/17 01:16:30.315 3536 3550 Info Unity    TeleportOrientationHandler360 is TeleportOrientationHandlerThumbstick = False
    791. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    792. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    793. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    794. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    795. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    796. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #5 0x7f9277a214 (libil2cpp.so) ? 0x0
    797. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    798. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    799. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    800. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    801. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    802. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    803. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    804. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    805. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    806. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    807. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    808. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    809. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    810. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    811. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    812. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    813. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    814. 2020/03/17 01:16:30.315 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    815. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    816. 2020/03/17 01:16:30.315 3536 3550 Info Unity    TeleportOrientationHandlerHMD is TeleportOrientationHandlerThumbstick = False
    817. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    818. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    819. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    820. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    821. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    822. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #5 0x7f9277a214 (libil2cpp.so) ? 0x0
    823. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    824. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    825. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    826. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    827. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    828. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    829. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    830. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    831. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    832. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    833. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    834. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    835. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    836. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    837. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    838. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    839. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    840. 2020/03/17 01:16:30.315 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    841. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    842. 2020/03/17 01:16:30.315 3536 3550 Info Unity    TeleportOrientationHandlerThumbstick is TeleportOrientationHandlerThumbstick = True
    843. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    844. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    845. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    846. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    847. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    848. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #5 0x7f9277a214 (libil2cpp.so) ? 0x0
    849. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #6 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    850. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #7 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    851. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #8 0x7f9235259c (libil2cpp.so) ? 0x0
    852. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #9 0x7f922225c4 (libil2cpp.so) ? 0x0
    853. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #10 0x7f96946c1c (libunity.so) ? 0x0
    854. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #11 0x7f96953524 (libunity.so) ? 0x0
    855. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #12 0x7f9695d6fc (libunity.so) ? 0x0
    856. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #13 0x7f9695d928 (libunity.so) ? 0x0
    857. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #14 0x7f9695c6b0 (libunity.so) ? 0x0
    858. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #15 0x7f967b308c (libunity.so) ? 0x0
    859. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #16 0x7f96885900 (libunity.so) ? 0x0
    860. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #17 0x7f96885934 (libunity.so) ? 0x0
    861. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #18 0x7f96885b6c (libunity.so) ? 0x0
    862. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #19 0x7f969bc0d4 (libunity.so) ? 0x0
    863. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #20 0x7f969cfa8c (libunity.so) ? 0x0
    864. 2020/03/17 01:16:30.315 3536 3550 Info Unity     #21 0x7fb0f8fa30 (base.odex) ? 0x0
    865. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    866. 2020/03/17 01:16:30.315 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    867. 2020/03/17 01:16:30.315 3536 3550 Info Unity  
    868. 2020/03/17 01:16:30.316 3536 3550 Info Unity    Activate TeleportTransitionBlink derived from TeleportTransition[3]
    869. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    870. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    871. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    872. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    873. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #4 0x7f9290d464 (libil2cpp.so) ? 0x0
    874. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #5 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    875. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #6 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    876. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #7 0x7f9235259c (libil2cpp.so) ? 0x0
    877. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #8 0x7f922225c4 (libil2cpp.so) ? 0x0
    878. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #9 0x7f96946c1c (libunity.so) ? 0x0
    879. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #10 0x7f96953524 (libunity.so) ? 0x0
    880. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #11 0x7f9695d6fc (libunity.so) ? 0x0
    881. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #12 0x7f9695d928 (libunity.so) ? 0x0
    882. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #13 0x7f9695c6b0 (libunity.so) ? 0x0
    883. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #14 0x7f967b308c (libunity.so) ? 0x0
    884. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #15 0x7f96885900 (libunity.so) ? 0x0
    885. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #16 0x7f96885934 (libunity.so) ? 0x0
    886. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #17 0x7f96885b6c (libunity.so) ? 0x0
    887. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #18 0x7f969bc0d4 (libunity.so) ? 0x0
    888. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #19 0x7f969cfa8c (libunity.so) ? 0x0
    889. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #20 0x7fb0f8fa30 (base.odex) ? 0x0
    890. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    891. 2020/03/17 01:16:30.316 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    892. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    893. 2020/03/17 01:16:30.316 3536 3550 Info Unity    TeleportTransitionInstant is TeleportTransitionBlink = False
    894. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    895. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    896. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    897. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    898. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    899. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #5 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    900. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #6 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    901. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #7 0x7f9235259c (libil2cpp.so) ? 0x0
    902. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #8 0x7f922225c4 (libil2cpp.so) ? 0x0
    903. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #9 0x7f96946c1c (libunity.so) ? 0x0
    904. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #10 0x7f96953524 (libunity.so) ? 0x0
    905. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #11 0x7f9695d6fc (libunity.so) ? 0x0
    906. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #12 0x7f9695d928 (libunity.so) ? 0x0
    907. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #13 0x7f9695c6b0 (libunity.so) ? 0x0
    908. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #14 0x7f967b308c (libunity.so) ? 0x0
    909. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #15 0x7f96885900 (libunity.so) ? 0x0
    910. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #16 0x7f96885934 (libunity.so) ? 0x0
    911. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #17 0x7f96885b6c (libunity.so) ? 0x0
    912. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #18 0x7f969bc0d4 (libunity.so) ? 0x0
    913. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #19 0x7f969cfa8c (libunity.so) ? 0x0
    914. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #20 0x7fb0f8fa30 (base.odex) ? 0x0
    915. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    916. 2020/03/17 01:16:30.316 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    917. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    918. 2020/03/17 01:16:30.316 3536 3550 Info Unity    TeleportTransitionBlink is TeleportTransitionBlink = True
    919. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    920. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    921. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    922. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    923. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    924. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #5 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    925. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #6 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    926. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #7 0x7f9235259c (libil2cpp.so) ? 0x0
    927. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #8 0x7f922225c4 (libil2cpp.so) ? 0x0
    928. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #9 0x7f96946c1c (libunity.so) ? 0x0
    929. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #10 0x7f96953524 (libunity.so) ? 0x0
    930. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #11 0x7f9695d6fc (libunity.so) ? 0x0
    931. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #12 0x7f9695d928 (libunity.so) ? 0x0
    932. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #13 0x7f9695c6b0 (libunity.so) ? 0x0
    933. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #14 0x7f967b308c (libunity.so) ? 0x0
    934. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #15 0x7f96885900 (libunity.so) ? 0x0
    935. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #16 0x7f96885934 (libunity.so) ? 0x0
    936. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #17 0x7f96885b6c (libunity.so) ? 0x0
    937. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #18 0x7f969bc0d4 (libunity.so) ? 0x0
    938. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #19 0x7f969cfa8c (libunity.so) ? 0x0
    939. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #20 0x7fb0f8fa30 (base.odex) ? 0x0
    940. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    941. 2020/03/17 01:16:30.316 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    942. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    943. 2020/03/17 01:16:30.316 3536 3550 Info Unity    TeleportTransitionWarp is TeleportTransitionBlink = False
    944. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    945. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    946. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    947. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    948. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #4 0x7f9290d674 (libil2cpp.so) ? 0x0
    949. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #5 0x7f928b3ba8 (libil2cpp.so) ? 0x0
    950. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #6 0x7f928b3ac8 (libil2cpp.so) ? 0x0
    951. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #7 0x7f9235259c (libil2cpp.so) ? 0x0
    952. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #8 0x7f922225c4 (libil2cpp.so) ? 0x0
    953. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #9 0x7f96946c1c (libunity.so) ? 0x0
    954. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #10 0x7f96953524 (libunity.so) ? 0x0
    955. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #11 0x7f9695d6fc (libunity.so) ? 0x0
    956. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #12 0x7f9695d928 (libunity.so) ? 0x0
    957. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #13 0x7f9695c6b0 (libunity.so) ? 0x0
    958. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #14 0x7f967b308c (libunity.so) ? 0x0
    959. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #15 0x7f96885900 (libunity.so) ? 0x0
    960. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #16 0x7f96885934 (libunity.so) ? 0x0
    961. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #17 0x7f96885b6c (libunity.so) ? 0x0
    962. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #18 0x7f969bc0d4 (libunity.so) ? 0x0
    963. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #19 0x7f969cfa8c (libunity.so) ? 0x0
    964. 2020/03/17 01:16:30.316 3536 3550 Info Unity     #20 0x7fb0f8fa30 (base.odex) ? 0x0
    965. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    966. 2020/03/17 01:16:30.316 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    967. 2020/03/17 01:16:30.316 3536 3550 Info Unity  
    968. 2020/03/17 01:16:30.335 3536 3550 Info Unity    [OVRManager] HMDAcquired event
    969. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    970. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    971. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    972. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    973. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #4 0x7f92fd7b34 (libil2cpp.so) ? 0x0
    974. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #5 0x7f9235259c (libil2cpp.so) ? 0x0
    975. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #6 0x7f922225c4 (libil2cpp.so) ? 0x0
    976. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #7 0x7f96946c1c (libunity.so) ? 0x0
    977. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #8 0x7f96953524 (libunity.so) ? 0x0
    978. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #9 0x7f9695c9fc (libunity.so) ? 0x0
    979. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #10 0x7f967b47dc (libunity.so) ? 0x0
    980. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #11 0x7f96885900 (libunity.so) ? 0x0
    981. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #12 0x7f96885934 (libunity.so) ? 0x0
    982. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #13 0x7f96885b6c (libunity.so) ? 0x0
    983. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #14 0x7f969bc0d4 (libunity.so) ? 0x0
    984. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #15 0x7f969cfa8c (libunity.so) ? 0x0
    985. 2020/03/17 01:16:30.335 3536 3550 Info Unity     #16 0x7fb0f8fa30 (base.odex) ? 0x0
    986. 2020/03/17 01:16:30.335 3536 3550 Info Unity  
    987. 2020/03/17 01:16:30.335 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    988. 2020/03/17 01:16:30.335 3536 3550 Info Unity  
    989. 2020/03/17 01:16:30.338 3536 3550 Info Unity    [OVRManager] VrFocusAcquired event
    990. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #0 0x7f967399e8 (libunity.so) ? 0x0
    991. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #1 0x7f96f972d8 (libunity.so) ? 0x0
    992. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #2 0x7f969e9e1c (libunity.so) ? 0x0
    993. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #3 0x7f969e9d4c (libunity.so) ? 0x0
    994. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #4 0x7f92fd7ecc (libil2cpp.so) ? 0x0
    995. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #5 0x7f9235259c (libil2cpp.so) ? 0x0
    996. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #6 0x7f922225c4 (libil2cpp.so) ? 0x0
    997. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #7 0x7f96946c1c (libunity.so) ? 0x0
    998. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #8 0x7f96953524 (libunity.so) ? 0x0
    999. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #9 0x7f9695c9fc (libunity.so) ? 0x0
    1000. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #10 0x7f967b47dc (libunity.so) ? 0x0
    1001. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #11 0x7f96885900 (libunity.so) ? 0x0
    1002. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #12 0x7f96885934 (libunity.so) ? 0x0
    1003. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #13 0x7f96885b6c (libunity.so) ? 0x0
    1004. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #14 0x7f969bc0d4 (libunity.so) ? 0x0
    1005. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #15 0x7f969cfa8c (libunity.so) ? 0x0
    1006. 2020/03/17 01:16:30.338 3536 3550 Info Unity     #16 0x7fb0f8fa30 (base.odex) ? 0x0
    1007. 2020/03/17 01:16:30.338 3536 3550 Info Unity  
    1008. 2020/03/17 01:16:30.338 3536 3550 Info Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line 35)
    1009. 2020/03/17 01:16:30.338 3536 3550 Info Unity  
    1010. 2020/03/17 01:16:30.343 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 76 msec for frame to retire
    1011. 2020/03/17 01:16:30.347 3536 3550 Info OVRMrcLib: ProfilerSystem verbose mode 0
    1012. 2020/03/17 01:16:30.386 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 102 msec for frame to retire
    1013. 2020/03/17 01:16:30.432 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 127 msec for frame to retire
    1014. 2020/03/17 01:16:30.485 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 153 msec for frame to retire
    1015. 2020/03/17 01:16:30.537 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 179 msec for frame to retire
    1016. 2020/03/17 01:16:30.590 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 204 msec for frame to retire
    1017. 2020/03/17 01:16:30.643 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 230 msec for frame to retire
    1018. 2020/03/17 01:16:30.695 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 255 msec for frame to retire
    1019. 2020/03/17 01:16:30.748 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 281 msec for frame to retire
    1020. 2020/03/17 01:16:30.801 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 307 msec for frame to retire
    1021. 2020/03/17 01:16:30.854 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 332 msec for frame to retire
    1022. 2020/03/17 01:16:30.906 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 358 msec for frame to retire
    1023. 2020/03/17 01:16:30.959 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 383 msec for frame to retire
    1024. 2020/03/17 01:16:31.012 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 409 msec for frame to retire
    1025. 2020/03/17 01:16:31.064 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 435 msec for frame to retire
    1026. 2020/03/17 01:16:31.117 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 460 msec for frame to retire
    1027. 2020/03/17 01:16:31.166 3536 3588 Info VrApi    FPS=1,Prd=9ms,Tear=0,Early=0,Stale=0,VSnc=1,Lat=1,Fov=0,CPU4/GPU=0/0,300/257MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=200MHz,Free=1309MB,PSM=0,PLS=0,Temp=32.0C/0.0C,TW=0.00ms,App=0.54ms,GD=0.00ms,CPU&GPU=695.63ms,LCnt=1,GPU%=-1.00,CPU%=-1.00(W-1.00),DSF=1.00
    1028. 2020/03/17 01:16:31.175 3536 3576 Warn VrApi    FrameIndex = 5, LatestRetiredFrameIndex = -1, waited for 486 msec for frame to retire
    1029. 2020/03/17 01:16:31.204 3536 3576 Warn VrApi   : ovr_SubmitFrameInternal UseNonblockingCall has not returned in 500 msec, unblocking
    1030. 2020/03/17 01:16:31.224 3536 3550 Error CRASH    *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    1031. 2020/03/17 01:16:31.224 3536 3550 Error CRASH    Version '2019.3.5f1 (d691e07d38ef)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
    1032. 2020/03/17 01:16:31.224 3536 3550 Error CRASH   : Build fingerprint 'oculus/vr_monterey/monterey:7.1.1/NGI77B/507240.20940.0:user/release-keys'
    1033. 2020/03/17 01:16:31.224 3536 3550 Error CRASH   : Revision '0'
    1034. 2020/03/17 01:16:31.224 3536 3550 Error CRASH   : ABI 'arm64'
    1035. 2020/03/17 01:16:31.224 3536 3550 Error CRASH   : Timestamp 2020-03-17 01:16:31+0100
    1036. 2020/03/17 01:16:31.224 3536 3550 Error CRASH   : pid: 3536, tid: 3550, name UnityMain  >>> com.DefaultCompany.Heritage <<<
    1037. 2020/03/17 01:16:31.225 3536 3550 Error CRASH   : uid 10070
    1038. 2020/03/17 01:16:31.225 3536 3550 Error CRASH    signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x800000b0e125fc
    1039. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x0  0000007fa9a3f680  x1  3f800000b0e125fc  x2  0000007f501b1030  x3  0000000000000000
    1040. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x4  0000000000000000  x5  0000007fb0e12450  x6  0000007f975d2351  x7  0000000000000000
    1041. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x8  0000000000000000  x9  000000020003c002  x10 0000007fb0e27450  x11 00000000000002b0
    1042. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x12 0000000000000001  x13 0000007f30000b80  x14 fffffffffffffff0  x15 0000000000200000
    1043. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x16 0000007f97941a38  x17 0000007fb5843b88  x18 0000007f50190398  x19 0000000000000000
    1044. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x20 0000007f501b1030  x21 0000007f501b077c  x22 000000000000008b  x23 0000007f50190398
    1045. 2020/03/17 01:16:31.225 3536 3550 Error CRASH        x24 0000007f501ac1e0  x25 0000000000000091  x26 0000007f501b1000  x27 0000000000000000
    1046. 2020/03/17 01:16:31.226 3536 3550 Error CRASH        x28 0000000000000004  x29 000000000000ffff
    1047. 2020/03/17 01:16:31.226 3536 3550 Error CRASH        sp  0000007fb0e12440  lr  0000007f96b750bc  pc  0000007f96b5a78c
    1048. 2020/03/17 01:16:31.226 3536 3550 Error CRASH  
    1049. 2020/03/17 01:16:31.226 3536 3550 Error CRASH    backtrace:
    1050. 2020/03/17 01:16:31.226 3536 3550 Error CRASH   :       #00 pc 00000000007d178c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1051. 2020/03/17 01:16:31.226 3536 3550 Error CRASH   :       #01 pc 00000000007ec0b8  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1052. 2020/03/17 01:16:31.227 3536 3550 Error CRASH   :       #02 pc 000000000086bcc0  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1053. 2020/03/17 01:16:31.227 3536 3550 Error CRASH   :       #03 pc 00000000007eaf1c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1054. 2020/03/17 01:16:31.227 3536 3550 Error CRASH   :       #04 pc 00000000007ec52c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1055. 2020/03/17 01:16:31.228 3536 3550 Error CRASH   :       #05 pc 00000000007ed3b8  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1056. 2020/03/17 01:16:31.228 3536 3550 Error CRASH   :       #06 pc 00000000007e4208  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1057. 2020/03/17 01:16:31.228 3536 3550 Error CRASH   :       #07 pc 00000000007ad47c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1058. 2020/03/17 01:16:31.228 3536 3550 Error CRASH   :       #08 pc 00000000007ae72c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1059. 2020/03/17 01:16:31.229 3536 3550 Error CRASH   :       #09 pc 00000000007c2064  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1060. 2020/03/17 01:16:31.229 3536 3550 Error CRASH   :       #10 pc 00000000007b16fc  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1061. 2020/03/17 01:16:31.229 3536 3550 Error CRASH   :       #11 pc 00000000007bdf70  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1062. 2020/03/17 01:16:31.230 3536 3550 Error CRASH   :       #12 pc 0000000000500654  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1063. 2020/03/17 01:16:31.230 3536 3550 Error CRASH   :       #13 pc 00000000004fc900  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1064. 2020/03/17 01:16:31.230 3536 3550 Error CRASH   :       #14 pc 00000000004fc934  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1065. 2020/03/17 01:16:31.231 3536 3550 Error CRASH   :       #15 pc 00000000004fcb6c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1066. 2020/03/17 01:16:31.231 3536 3550 Error CRASH   :       #16 pc 00000000006330d4  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1067. 2020/03/17 01:16:31.231 3536 3550 Error CRASH   :       #17 pc 0000000000646a8c  /data/app/com.DefaultCompany.Heritage-1/lib/arm64/libunity.so (BuildId 17af801b5d4c59c1f8572d2392b8c4812cd1be49)
    1068. 2020/03/17 01:16:31.231 3536 3550 Error CRASH          #18 pc 0000000000025a30  /data/app/com.DefaultCompany.Heritage-1/oat/arm64/base.odex
    1069. 2020/03/17 01:16:31.378 3536 3550 Error CRASH   : Tombstone written to /storage/emulated/0/Android/data/com.DefaultCompany.Heritage/files/tombstone_02
    1070. 2020/03/17 01:16:31.378 3536 3550 Error CRASH    chained_signal_handler 575 got 11
    1071. 0001/01/01 00:00:00.000 -1 -1 Info  --------- beginning of crash
    1072. 2020/03/17 01:16:31.378 3536 3550 Fatal libc     Fatal signal 11 (SIGSEGV), code 1, fault addr 0x800000b0e125fc in tid 3550 (UnityMain)
    1073. 2020/03/17 01:16:31.886 3536 3550 Error crash-reporter-support: read() failed, reason Connection reset by peer
    1074. 2020/03/17 01:16:31.886 3536 3550 Error crash-reporter-support native-crash64 client could not receive the status of the request from the crash server
    1075. 2020/03/17 01:16:31.886 3536 3550 Info crash-reporter failed to capture minidump crash
    1076.  
     
    Last edited: Mar 17, 2020
    fherbst likes this.
  23. atomicjoe

    atomicjoe

    Joined:
    Apr 10, 2013
    Posts:
    1,710
    The release build is only crashing with IL2CPP + ARM64 builds, with and without incremental GC.
    Both mono and IL2CPP ARMv7 release builds work without issues.
    (Oculus mandates 64bit builds)

    Unity 2019.3.5f1
    XR Plugin Manager v3.0.6
    Oculus XR plugin v1.2.0
    Oculus Integration asset v14.0
     
  24. ibyte

    ibyte

    Joined:
    Aug 14, 2009
    Posts:
    1,036
    Trying to migrate my app from VRTK to Unity XR system. Is there any out of the box support for headset collision detection?
     
  25. atomicjoe

    atomicjoe

    Joined:
    Apr 10, 2013
    Posts:
    1,710
    I found the issue: it was caused by putting anything other than "-1" on LightBakingOutput.occlusionMaskChannel when the baker is not using Shadowmask mode.
    It is weird that it crashes and only with IL2CPP on ARM64 though.
     
  26. CharlieBudd

    CharlieBudd

    Joined:
    Jul 24, 2017
    Posts:
    17
    Are there any plans to include hand bone pose estimation in the XR integration package?
     
  27. Wattosan

    Wattosan

    Joined:
    Mar 22, 2013
    Posts:
    433
    How can I have my project support both the Oculus Quest and HTC Vive?
     
    iQuentin and atomicjoe like this.
  28. pixelone

    pixelone

    Joined:
    Apr 16, 2010
    Posts:
    157
    Does the integration include custom hand models with configurable pose/animations for Unity XR? Or was it there all along and I missed it?
     
  29. Noob_Vulcan

    Noob_Vulcan

    Joined:
    Mar 20, 2014
    Posts:
    14
    Sadly Unity's new XR system has very bad performance.

    Unity 2019.3 Versions (Unity XR) - Blank scene FPS on Oculus Rift S is max 40 FPS
    Any version below Unity 2019.3 (Oculus SDK) - Blank scene FPS on Oculus Rift S is max 80 FPS

    I want to use URP but because this XR performance issue i cant....Please help me out here
     
    ROBYER1 likes this.
  30. ROBYER1

    ROBYER1

    Joined:
    Oct 9, 2015
    Posts:
    1,418
    Please submit a bug report of this using Unity Bug Reporter.
     
    a436t4ataf likes this.
  31. iQuentin

    iQuentin

    Joined:
    Jan 18, 2017
    Posts:
    3
    Is there a way today to build for a simple Android phone (without any specific headset) using this new XR Plugins system ?
    Details : i have an app that i'm developing for Oculus Go (it's working well), but i need to build a version for Android (and later for iOs, by the way). If someone can enlighten me on this it would be appreciated. I'm afraid to have to go back to the old system...
     
  32. Wattosan

    Wattosan

    Joined:
    Mar 22, 2013
    Posts:
    433
    How can we migrate from the Oculus Integration asset to using the new XR system without changing all of the prefabs etc?
     
  33. mfuad

    mfuad

    Unity Technologies

    Joined:
    Jun 12, 2018
    Posts:
    332
    Hi @Noob_Vulcan, thanks for bringing this up. We do extensive testing and have not noticed any regressions between the built-in Oculus integration vs. the new Oculus XR plug-in. We definitely need some more details from you (graphics API, stereo render mode, etc.), so if you could submit a bug report with those details, we'll investigate and try to figure out the root cause of the issues you're seeing.
     
    a436t4ataf likes this.
  34. LooperXS

    LooperXS

    Joined:
    Jan 8, 2021
    Posts:
    2
    Hi, sorry for the really dumb question but i'm totally new with these things.
    Where should I put the .SetFoveationLevel in order for it to correctly work?