Ejemplo n.º 1
0
 public static void GetAsync(GetAsyncDelegate onCompleted)
 {
     if (s_Instance != null)
     {
         onCompleted(s_Instance);
     }
     else
     {
         GetAsync_Internal(onCompleted);
     }
 }
Ejemplo n.º 2
0
 private static void InvokeGetAsyncDelegate(GetAsyncDelegate handler, IntPtr nativePtr)
 {
     s_Instance = new WorldAnchorStore(nativePtr);
     handler(s_Instance);
 }
Ejemplo n.º 3
0
 public static void GetAsync(GetAsyncDelegate onCompleted)
 {
 }
Ejemplo n.º 4
0
 public static void GetAsync(GetAsyncDelegate onCompleted)
 {
     if (s_Instance != null)
     {
         onCompleted(s_Instance);
     }
     else
     {
         GetAsync_Internal(onCompleted);
     }
 }
Ejemplo n.º 5
0
 private static void InvokeGetAsyncDelegate(GetAsyncDelegate handler, IntPtr nativePtr)
 {
     s_Instance = new WorldAnchorStore(nativePtr);
     handler(s_Instance);
 }
Ejemplo n.º 6
0
 private static extern void GetAsync_Internal(GetAsyncDelegate onCompleted);
Ejemplo n.º 7
0
 private static extern void GetAsync_Internal(GetAsyncDelegate onCompleted);