Include the following details (edit as applicable):
- Issue category: VPS
- Device type & OS version: Android / iOS
- Host machine & OS version: Windows
- Issue Environment : Unity Remote
- Xcode version:
- ARDK version: 2.0.0
- Unity version: 2021.1.15f1
Description of the issue:
In the tutorial Building with VPS, there are several issues.
First issue
In the SaveLocalReference() function, wayspotAnchors does not contain ‘Select’ and it gives me an error. However in Tricia’s video, Select is found and she has no error.
Second issue
The type or namespace name ‘Serializable’ could not be found and gave me an error. However in Tricia’s video, She has no problem with Serializable.
Third issue
Under tutorial Step 5: Connection to Wayspot Service,
in the youtube video (timestamp - 15:15), Tricia states the bottom code
var locationService = LocationServiceFactory.Create(session.RuntimeEnvironment);
However in the documents, the code in the image is as follow
var locationService = LocationServiceFactory.Create(Manager. ARSession.RuntimeEnvironment);
wayspotAnchorService = new WayspotAnchorService(Manager. ARSession, locationService, wayspotAnchorsConfiguration);
additional manager and ARSession is found, whereas in Tricia’s code, there is no manager and ARSession.
I tried using the following solution
using System; ← to remove first issue error
using System.Linq; ← to remove second error
However
I am unable to instantiate mushrooms in the environment.
I have no idea where the problem lies now, hope someone can help me.
Thank you