Пример #1
0
 private void OnPlaneRemoved(ARPlaneRemovedEventArgs args)
 {
     if (activePlanes.Contains(args.plane))
     {
         activePlanes.Remove(args.plane);
     }
 }
Пример #2
0
 //To get the number of plane when plane removed
 void PlaneRemovedFunction(ARPlaneRemovedEventArgs planeUpdated_Args)
 {
     nPlane = m_PlaneManager.planeCount;
     displayCountText();
 }