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:
-
Change session.Ran += OnSessionRan
-
To session.Ran += OnSessionStarted
-
Remove the additional session.Ran += OnSessionStarted line or change it to
session.Ran -= OnSessionStarted.