| | |
| | | [SerializeField] GroupButtonEx starBtn; |
| | | [SerializeField] Button seeAttrBtn; |
| | | [SerializeField] ScrollerController scroller; |
| | | [SerializeField] Transform emptyRect; |
| | | |
| | | protected override void InitComponent() |
| | | { |
| | |
| | | |
| | | void Display() |
| | | { |
| | | if (GubaoManager.Instance.gubaoCollectDict.IsNullOrEmpty()) |
| | | { |
| | | emptyRect.SetActive(true); |
| | | scroller.SetActive(false); |
| | | return; |
| | | } |
| | | |
| | | emptyRect.SetActive(false); |
| | | scroller.SetActive(true); |
| | | |
| | | |
| | | scroller.Refresh(); |
| | | var keys = GubaoManager.Instance.gubaoCollectDict.Keys.ToList(); |
| | | keys.OrderByDescending(x => x); |