void OnValidate() { if (Application.isPlaying) { return; } rect = GetComponent <RectTransform>(); col = GetComponent <UICollider>(); }
public TTUIPage(UIType type, UIMode mod, UICollider col) { this.type = type; this.mode = mod; this.collider = col; this.name = this.GetType().ToString(); //bind special delegate . TTUIBind.Bind(); }
public WTUIPage(UIType type, UIMode mod, UICollider col) { this.type = type; this.mode = mod; this.collider = col; this.name = this.GetType().ToString(); WTUIBind.Bind(); }
public TTUIPage(UIType type, UIMode mod, UICollider col) { this.type = type; this.mode = mod; this.collider = col; this.name = this.GetType().ToString(); //when create one page. //bind special delegate . TTUIBind.Bind(); //Debug.LogWarning("[UI] create page:" + ToString()); }
public UIPage(UIType type, UIMode mod, UICollider col) { this.type = type; this.mode = mod; }
public BasePage(UIType type, UIMode mod, UICollider col) : base(type, mod, col) { }