Example #1
0
 public static void Recycle(this PrefabPool pool, string name)
 {
     SpacePool.Recycle(pool, name);
 }
Example #2
0
 public static void Recycle(this GameObject obj, string name)
 {
     SpacePool.Recycle(name);
 }
Example #3
0
 public static void Recycle <T>(this T obj) where T : Component
 {
     SpacePool.Recycle(obj);
 }
Example #4
0
 public static void Recycle(this GameObject obj)
 {
     SpacePool.Recycle(obj);
 }