| | |
| | | public TipEquipBaseInfoWidget baseInfoWidget; |
| | | public TipBasePropertyWidget basePropertyWidget; |
| | | public TipLegendPropertyWidget legendPropertyWidget; |
| | | public TipSkillInfoWidget skillInfoWidget; |
| | | public TipSuitBriefWidget suitBriefWidget; |
| | | public TipSuitPropertyWidget suitPropertyWidget; |
| | | public TipGemInfoWidget gemInfoWidget; |
| | |
| | | legendPropertyWidget.Display(data.legendProperty); |
| | | } |
| | | |
| | | var hasSkill = !data.skillInfo.skills.IsNullOrEmpty(); |
| | | skillInfoWidget.gameObject.SetActive(hasSkill); |
| | | if (hasSkill) |
| | | { |
| | | skillInfoWidget.Display(data.skillInfo); |
| | | } |
| | | |
| | | var hasSuit = data.suitInfo.places != null; |
| | | if (hasSuit) |
| | | { |