cull(engine-cleanup): pass-8 phase-2 cascade round 2 after MyPageItemBattle stub

This commit is contained in:
gamer147
2026-07-03 21:52:04 -04:00
parent 006a6ae7ab
commit 22ef593593
26 changed files with 1 additions and 769 deletions

View File

@@ -191,9 +191,6 @@ public class UICardList : MonoBehaviour
private bool _isLabelMoved;
[NonSerialized]
public bool _loadingEnd;
public Action OnCardDetailOpen { get; set; }
public Action OnCardDetailClose { get; set; }
@@ -678,30 +675,6 @@ public class UICardList : MonoBehaviour
}));
}
public void SetQRSmallTexture()
{
if (PlayerDataIds.Count != 40 || !_formatBehavior.CanShowQRCode || (_formatBehavior.UseSubClass && !CanShowQRCodeUseSubclass()) || (_format == Format.MyRotation && _deck != null && !IsAllCardCorrectMyRotation()))
{
return;
}
if (PlayerPrefsWrapper.GetValue(PlayerPrefsWrapper.SHOWQRCODE) == 0)
{
_showQRCodeButton.gameObject.SetActive(value: true);
UIManager.SetObjectToGrey(_showQRCodeButton.gameObject, b: false);
_qrCodeRoot.gameObject.SetActive(value: false);
_showQRCodeButton.onClick.Add(new EventDelegate(delegate
{
ShowQRCode();
}));
}
else
{
ShowQRCode();
}
ChangeBlueUtilButtonPosToRightSide();
}
public bool CanShowQRCodeUseSubclass()
{
CardMaster cardMaster = CardMaster.GetInstance(_formatBehavior.CardMasterId);