| | |
| | | |
| | | public class FirstChargeWin : FunctionsBaseWin |
| | | { |
| | | [SerializeField] float lhScale = 0.6f; |
| | | [SerializeField] ButtonEx btnClose; |
| | | [Header("标签页")] |
| | | [SerializeField] TextEx[] txtTabTitles; |
| | |
| | | txtDesc.text = heroInfo.heroConfig.Desc; |
| | | imgCountry.SetSprite(HeroUIManager.Instance.GetCountryIconName(heroInfo.heroConfig.Country)); |
| | | imgJob.SetSprite(HeroUIManager.Instance.GetJobIconName(heroInfo.heroConfig.Class)); |
| | | roleLhModel.Create(heroInfo.SkinID, 0.6f, motionName: "", isLh: true); |
| | | roleLhModel.transform.localScale = new Vector3(0.6f, 0.6f, 0.6f); |
| | | roleLhModel.Create(heroInfo.SkinID, lhScale, motionName: "", isLh: true); |
| | | roleLhModel.transform.localScale = new Vector3(lhScale, lhScale, lhScale); |
| | | } |
| | | |
| | | public void DisplayAward(int firstId) |