About YouTube "Building with VPS: Getting Started with Lightship"

Hi,

In the previous message there was an error stating a duplicate, but it appears to be disregarded already.

As for ARGameLogic.cs: session.Ran += OnSessionRan is causing an issue because OnSessionRan is an empty function.

Try the solution below:

  1. Change session.Ran += OnSessionRan

  2. To session.Ran += OnSessionStarted

  3. Remove the additional session.Ran += OnSessionStarted line or change it to

session.Ran -= OnSessionStarted.

1 Like