功能概述
儲值功能,點擊一個按鈕(mSprites["Recharge"]),實現儲值功能,在IOS平台上,該按鈕下的功能全部隱藏,在安卓平台上正常顯示按鈕,實現相應功能
#if UNITY_IOS
mSprites["Recharge"].gameObject.SetActive(false);
#elif UNITY_ANDROID
bool isOpen = Util.Verification.Verify(CONDITION_OPEN.VietnamRecahrge,PLAYER.CurrentActor);
mSprites["Recharge"].gameObject.SetActive(isOpen);
#endif
