Closed Kyle0936 closed 2 years ago
ImageTrackingObjectManager.cs
Found a potential typo on line 158: else if (image.referenceImage.guid == s_FirstImageGUID)
else if (image.referenceImage.guid == s_FirstImageGUID)
It should be else if (image.referenceImage.guid == s_SecondImageGUID) to match the second image's guid instead of the first image's.
else if (image.referenceImage.guid == s_SecondImageGUID)
Good catch, thanks for the report. I've changed the line and pushed an update. https://github.com/Unity-Technologies/arfoundation-demos/commit/e621654cf94bdc4f012693a1573c74434eb8d0d8
ImageTrackingObjectManager.cs
Found a potential typo on line 158:
else if (image.referenceImage.guid == s_FirstImageGUID)
It should be
else if (image.referenceImage.guid == s_SecondImageGUID)
to match the second image's guid instead of the first image's.