示例#1
0
    void UnityUICloudGoodsLogin_ResentAuthentication(CloudGoods.SDK.Models.StatusMessageResponse obj)
    {
        ResendAuthenticationPanel.SetActive(false);

        StatusPanel.SetActive(true);
        StatusText.text = "Authentication Email has been Sent.";
    }
 void OnSentPassword(StatusMessageResponse sentPasswordResponse)
 {
     if(PasswordResetSent != null)
         PasswordResetSent(sentPasswordResponse);
 }
 void OnResentAuthenticationEmail(StatusMessageResponse authenticationResponse)
 {
     if(ResentAuthentication != null)
         ResentAuthentication(authenticationResponse);
 }
示例#4
0
 void UnityUICloudGoodsLogin_PasswordResetSent(CloudGoods.SDK.Models.StatusMessageResponse obj)
 {
     StatusPanel.SetActive(true);
     StatusText.text = obj.message;
 }