Esempio n. 1
0
 // Token: 0x06001F43 RID: 8003 RVA: 0x003BD660 File Offset: 0x003BB860
 private void UpdateSendBtnType(UIRewardsSelect.eRewardsSelectType type)
 {
     if (type == UIRewardsSelect.eRewardsSelectType.Preview)
     {
         this.m_OverText.gameObject.SetActive(true);
         this.m_Send.gameObject.SetActive(false);
         this.m_FlashImage.gameObject.SetActive(false);
     }
     else if (type == UIRewardsSelect.eRewardsSelectType.Selection)
     {
         this.m_Send.image.sprite = this.m_SpArray.GetSprite(1);
         this.m_Send.ForTextChange(e_BtnType.e_ChangeText);
         this.m_Send.gameObject.SetActive(true);
         this.m_OverText.gameObject.SetActive(false);
         this.m_FlashImage.gameObject.SetActive(false);
     }
     else if (type == UIRewardsSelect.eRewardsSelectType.Decide)
     {
         this.m_Send.image.sprite = this.m_SpArray.GetSprite(0);
         this.m_Send.ForTextChange(e_BtnType.e_Normal);
         this.m_Send.gameObject.SetActive(true);
         this.m_OverText.gameObject.SetActive(false);
         this.m_FlashImage.gameObject.SetActive(true);
     }
 }
Esempio n. 2
0
 // Token: 0x06001F44 RID: 8004 RVA: 0x003BD774 File Offset: 0x003BB974
 private void SetType(UIRewardsSelect.eRewardsSelectType type)
 {
     this.m_Type = type;
     this.UpdateSendBtnType(this.m_Type);
 }