コード例 #1
0
ファイル: exTransform.cs プロジェクト: egod1537/YLibrary
 public static void InPool(this Transform transform) => YObjectPool.InPool(transform.gameObject.name, transform.gameObject);
コード例 #2
0
 public static void InPool(this GameObject gameobject) => YObjectPool.InPool(gameobject.name, gameobject);
コード例 #3
0
ファイル: exTransform.cs プロジェクト: egod1537/YLibrary
 public static void InPool(this Transform transform, string name) => YObjectPool.InPool(name, transform.gameObject);
コード例 #4
0
 public static void InPool(this GameObject gameobject, string name) => YObjectPool.InPool(name, gameobject);