| | |
| | | [SerializeField] Text nameText;
|
| | | [SerializeField] OfficialTitleCell officialTitleCell;
|
| | | [SerializeField] Button queryPlayerBtn; //后续添加点击查看玩家详情
|
| | | [SerializeField] UIHeroController model;
|
| | | [SerializeField] HorseController model;
|
| | |
|
| | | public void Display(int rankType, int rank, string valueFormat = "{0}")
|
| | | {
|
| | |
| | | rankValueText.text = RankModel.Instance.GetStoryInfo(rankData.cmpValue);
|
| | | nameText.text = rankData.name1;
|
| | | officialTitleCell.InitUI((int)rankData.value1, (int)rankData.value2);
|
| | | model.Create((int)rankData.value5, 1);
|
| | | model.Create(HorseManager.Instance.GetOtherPlayerHorseSkinID((int)rankData.value6), (int)rankData.value5, 1);
|
| | | }
|
| | |
|
| | |
|