Esempio n. 1
0
 public bool Save(string id, WorldAnchor anchor)
 {
     if (string.IsNullOrEmpty(id))
     {
         throw new ArgumentException("id must not be null or empty", "id");
     }
     if (anchor == null)
     {
         throw new ArgumentNullException("anchor");
     }
     return(WorldAnchorStore.Save_Internal(this.m_NativePtr, id, anchor));
 }