示例#1
0
 public GOPool Parent(GO parent)
 {
     base.parent = parent.transform;
     return(this);
 }
示例#2
0
文件: GO.cs 项目: PcloD/mlib
 public GO SetParent(GO parent, bool worldPositionStays = true)
 {
     current.transform.SetParent(parent.transform, worldPositionStays);
     return(this);
 }
示例#3
0
 public static GO Modify(this GameObject go)
 {
     return(GO.Modify(go));
 }