Hello Lightship community!
We’re aware that the Building with VPS guide contains some missing information that can cause errors and unexpected behavior that can block progress.
We’re working on a fix, but in the meantime you can include the following changes to the ARGameLogic.cs script in order to continue making progress with the tutorial.
- In the
OnSessionInitialized()
method, replace thesession.Ran += OnSessionRan;
statement with asession.Ran += OnSessionStarted;
statement. - At the top of the script, include a
using System;
statement. - At the top of the script, include a
using System.Linq;
statement.