You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
We have a hololens 2 project using the advised combination of MRTK 2.4.0 and Unity 2019.4.5f1. I recently wanted to add SpectatorView such that we could make promotional content using an ARCore or ARKit enabled phone. I followed the setup steps under "Build a package to share with your team", compiling the master branch codebase which resulted in the "com.microsoft.spectatorview.1.2.0" package. I then added this local package to my existing hololens 2 project. This resulted in errors in various classes of arsubsystem such as
Library\PackageCache\[email protected]\Runtime\ImageTrackingSubsystem\XRImageTrackingSubsystem.cs(57,30): error CS0506: 'XRImageTrackingSubsystem.Destroy()': cannot override inherited member 'Subsystem.Destroy()' because it is not marked virtual, abstract, or override
Library\PackageCache\[email protected]\Runtime\SessionSubsystem\XRSessionSubsystem.cs(123,30): error CS0506: 'XRSessionSubsystem.Destroy()': cannot override inherited member 'Subsystem.Destroy()' because it is not marked virtual, abstract, or override
This shows me that SpectatorView is running on an older version of ARFoundation, checking the Spectatorview package json I find that it uses;
I have tried updating the AR packages here to newer versions but that just results in different errors. So before finding myself too deep into this potential rabbithole I just want to check what is the right course of action here. I am guessing im running into problems since I am using 2019.4.5f1 (as advised for MRTK) while SpectatorView is not compatible with this version of Unity 2019. Correct? Is there a way of making SpectatorView work with MRTK 2.4.0 and Unity 2019.4.5f1?
The text was updated successfully, but these errors were encountered:
Hello,
We have a hololens 2 project using the advised combination of MRTK 2.4.0 and Unity 2019.4.5f1. I recently wanted to add SpectatorView such that we could make promotional content using an ARCore or ARKit enabled phone. I followed the setup steps under "Build a package to share with your team", compiling the master branch codebase which resulted in the "com.microsoft.spectatorview.1.2.0" package. I then added this local package to my existing hololens 2 project. This resulted in errors in various classes of arsubsystem such as
Library\PackageCache\[email protected]\Runtime\ImageTrackingSubsystem\XRImageTrackingSubsystem.cs(57,30): error CS0506: 'XRImageTrackingSubsystem.Destroy()': cannot override inherited member 'Subsystem.Destroy()' because it is not marked virtual, abstract, or override
Library\PackageCache\[email protected]\Runtime\SessionSubsystem\XRSessionSubsystem.cs(123,30): error CS0506: 'XRSessionSubsystem.Destroy()': cannot override inherited member 'Subsystem.Destroy()' because it is not marked virtual, abstract, or override
This shows me that SpectatorView is running on an older version of ARFoundation, checking the Spectatorview package json I find that it uses;
"com.unity.xr.arcore": "2.2.0-preview.2",
"com.unity.xr.arfoundation": "2.1.4",
"com.unity.xr.arkit": "2.1.1"
I have tried updating the AR packages here to newer versions but that just results in different errors. So before finding myself too deep into this potential rabbithole I just want to check what is the right course of action here. I am guessing im running into problems since I am using 2019.4.5f1 (as advised for MRTK) while SpectatorView is not compatible with this version of Unity 2019. Correct? Is there a way of making SpectatorView work with MRTK 2.4.0 and Unity 2019.4.5f1?
The text was updated successfully, but these errors were encountered: