static void _image_anchor_added(UnityARImageAnchorData anchor)
 {
     if (ARImageAnchorAddedEvent != null)
     {
         ARImageAnchor arImageAnchor = new ARImageAnchor(anchor);
         ARImageAnchorAddedEvent(arImageAnchor);
     }
 }
Пример #2
0
 public ARImageAnchor(UnityARImageAnchorData uiad)
 {
     imageAnchorData = uiad;
 }