protected void Select_Event(object sender, DirectEventArgs e) { if (TagSelect != null) { TagSelect.Invoke(sender, new TagSelect_EventArgs(e.ExtraParams)); } }
private void Awake() { if (tagSelect == null) { tagSelect = FindObjectOfType <TagSelect>(); } toggle = GetComponent <Toggle>(); nameText = GetComponentInChildren <Text>(); toggle.onValueChanged.RemoveAllListeners(); toggle.onValueChanged.AddListener(SelectTag); }
public static TagSelect onchange(this TagSelect tag, string value) { tag.OnChange = value; return(tag); }
public static TagSelect onfocus(this TagSelect tag, string value) { tag.OnFocus = value; return(tag); }
public static TagSelect onblur(this TagSelect tag, string value) { tag.OnBlur = value; return(tag); }
public static TagSelect onmousedown(this TagSelect tag, string value) { tag.OnMouseDown = value; return(tag); }
public static TagSelect tabindex(this TagSelect tag, int value) { tag.TabIndex = value; return(tag); }
public static TagSelect title(this TagSelect tag, string value) { tag.Title = value; return(tag); }
public static TagSelect xmllang(this TagSelect tag, string value) { tag.XmlLang = value; return(tag); }
public static TagSelect onkeyup(this TagSelect tag, string value) { tag.OnKeyUp = value; return(tag); }
public static TagSelect name(this TagSelect tag, string value) { tag.Name = value; return(tag); }
public static TagSelect onkeypress(this TagSelect tag, string value) { tag.OnKeyPress = value; return(tag); }
public static TagSelect onkeydown(this TagSelect tag, string value) { tag.OnKeyDown = value; return(tag); }
public static TagSelect onmouseout(this TagSelect tag, string value) { tag.OnMouseOut = value; return(tag); }
public static TagSelect onmousemove(this TagSelect tag, string value) { tag.OnMouseMove = value; return(tag); }
public static TagSelect onmouseup(this TagSelect tag, string value) { tag.OnMouseUp = value; return(tag); }
public static TagSelect id(this TagSelect tag, string value) { tag.Id = value; return(tag); }
public static TagSelect size(this TagSelect tag, int value) { tag.Size = value; return(tag); }
public static TagSelect @class(this TagSelect tag, string value) { tag.Class = value; return(tag); }
public static TagSelect dir(this TagSelect tag, Dir value) { tag.Dir = value; return(tag); }
public static TagSelect lang(this TagSelect tag, LangCode value) { tag.Lang = value; return(tag); }
public static TagSelect disabled(this TagSelect tag, Disabled value) { tag.Disabled = value; return(tag); }
public static TagSelect multiple(this TagSelect tag, Multiple value) { tag.Multiple = value; return(tag); }
public static TagSelect ondblclick(this TagSelect tag, string value) { tag.OnDblClick = value; return(tag); }