コード例 #1
0
 public static Element Create(IBaseUIComponent component, PropCollection props = null)
 {
     return(new Element(component, props));
 }
コード例 #2
0
ファイル: Element.cs プロジェクト: mkmarek/unity-component-ui
        public static Element Create(IBaseUIComponent component, PropCollection props = null)
        {
            var id = "root";

            return(new Element(id, component, props));
        }
コード例 #3
0
 private Element(IBaseUIComponent component, PropCollection props = null)
 {
     this.Component = component;
     this.Props     = props;
 }
コード例 #4
0
ファイル: Element.cs プロジェクト: mkmarek/unity-component-ui
 private Element(string id, IBaseUIComponent component, PropCollection props = null)
 {
     this.Component = component;
     this.Props     = props;
     this.Id        = id;
 }