Example #1
0
 private void Awake()
 {
     label  = this.transform.Find("Text").GetComponent <Text>();
     button = this.GetComponent <Button>();
     button.onClick.AddListener(OnClick);
     scrollSystem = GetComponentInParent <ScrollSystem>();
 }
Example #2
0
 public void Init(ScrollSystem scrollSystem)
 {
     this.scrollSystem = scrollSystem;
 }