Пример #1
0
 void Awake()
 {
     _instance = this;
     if (startupPoolMode == StartupPoolMode.Awake)
     {
         CreateStartupPools();
     }
 }
Пример #2
0
 public static void RecycleAll(this GameObject prefab)
 {
     NetObjectPool.RecycleAll(prefab);
 }
Пример #3
0
 public static void RecycleAll <T>(this T prefab) where T : Component
 {
     NetObjectPool.RecycleAll(prefab);
 }
Пример #4
0
 public static void CreatePool <T>(this T prefab) where T : Component
 {
     NetObjectPool.CreatePool(prefab, 0);
 }
Пример #5
0
 public static void DestroyAll(this GameObject prefab)
 {
     NetObjectPool.DestroyAll(prefab);
 }
Пример #6
0
 public static List <T> GetPooled <T>(this T prefab, List <T> list, bool appendList) where T : Component
 {
     return(NetObjectPool.GetPooled(prefab, list, appendList));
 }
Пример #7
0
 public static List <GameObject> GetPooled(this GameObject prefab, List <GameObject> list)
 {
     return(NetObjectPool.GetPooled(prefab, list, false));
 }
Пример #8
0
 public static List <T> GetSpawned <T>(this T prefab, List <T> list) where T : Component
 {
     return(NetObjectPool.GetSpawned(prefab, list, false));
 }
Пример #9
0
 public static GameObject Spawn(this GameObject prefab, Transform parent, Vector3 position, Quaternion rotation)
 {
     return(NetObjectPool.Spawn(prefab, parent, position, rotation));
 }
Пример #10
0
 public static T Spawn <T>(this T prefab) where T : Component
 {
     return(NetObjectPool.Spawn(prefab, null, Vector3.zero, Quaternion.identity));
 }
Пример #11
0
 public static T Spawn <T>(this T prefab, Transform parent) where T : Component
 {
     return(NetObjectPool.Spawn(prefab, parent, Vector3.zero, Quaternion.identity));
 }
Пример #12
0
 public static T Spawn <T>(this T prefab, Vector3 position, Quaternion rotation) where T : Component
 {
     return(NetObjectPool.Spawn(prefab, null, position, rotation));
 }
Пример #13
0
 public static void CreatePool(this GameObject prefab, int initialPoolSize)
 {
     NetObjectPool.CreatePool(prefab, initialPoolSize);
 }
Пример #14
0
 public static void CreatePool(this GameObject prefab)
 {
     NetObjectPool.CreatePool(prefab, 0);
 }
Пример #15
0
 public static void CreatePool <T>(this T prefab, int initialPoolSize) where T : Component
 {
     NetObjectPool.CreatePool(prefab, initialPoolSize);
 }
Пример #16
0
 public static int CountSpawned <T>(this T prefab) where T : Component
 {
     return(NetObjectPool.CountSpawned(prefab));
 }
Пример #17
0
 public static int CountSpawned(this GameObject prefab)
 {
     return(NetObjectPool.CountSpawned(prefab));
 }
Пример #18
0
 public static GameObject Spawn(this GameObject prefab, Vector3 position)
 {
     return(NetObjectPool.Spawn(prefab, null, position, Quaternion.identity));
 }
Пример #19
0
 public static List <GameObject> GetPooled(this GameObject prefab, List <GameObject> list, bool appendList)
 {
     return(NetObjectPool.GetPooled(prefab, list, appendList));
 }
Пример #20
0
 public static GameObject Spawn(this GameObject prefab, Transform parent)
 {
     return(NetObjectPool.Spawn(prefab, parent, Vector3.zero, Quaternion.identity));
 }
Пример #21
0
 public static List <GameObject> GetPooled(this GameObject prefab)
 {
     return(NetObjectPool.GetPooled(prefab, null, false));
 }
Пример #22
0
 public static GameObject Spawn(this GameObject prefab)
 {
     return(NetObjectPool.Spawn(prefab, null, Vector3.zero, Quaternion.identity));
 }
Пример #23
0
 public static List <T> GetPooled <T>(this T prefab) where T : Component
 {
     return(NetObjectPool.GetPooled(prefab, null, false));
 }
Пример #24
0
 public static void Recycle <T>(this T obj) where T : Component
 {
     NetObjectPool.Recycle(obj);
 }
Пример #25
0
 public static void DestroyAll <T>(this T prefab) where T : Component
 {
     NetObjectPool.DestroyAll(prefab.gameObject);
 }
Пример #26
0
 public static void Recycle(this GameObject obj)
 {
     NetObjectPool.Recycle(obj);
 }