示例#1
0
文件: UIItem.cs 项目: hvp/Gemgine
 public void Destroy()
 {
     if (parent != null)
         parent.RemoveChild(this);
     parent = null;
 }
示例#2
0
文件: UIItem.cs 项目: hvp/Gemgine
 public virtual void RemoveChild(UIItem child)
 {
     children.Remove(child);
 }
示例#3
0
文件: UIItem.cs 项目: hvp/Gemgine
 public virtual void AddChild(UIItem child)
 {
     children.Add(child);
     child.defaults = defaults;
     child.parent = this;
 }