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

This commit is contained in:
gamer147
2026-07-03 21:55:58 -04:00
parent b404ff40c0
commit 200b865728
3 changed files with 2 additions and 41 deletions

View File

@@ -178,11 +178,6 @@ public abstract class UITweener : MonoBehaviour
}
}
public void SetOnFinished(EventDelegate.Callback del)
{
EventDelegate.Set(onFinished, del);
}
public void SetOnFinished(EventDelegate del)
{
EventDelegate.Set(onFinished, del);

View File

@@ -7,5 +7,4 @@ public enum DeckAttributeType
BuildDeck,
TrialDeck,
DefaultDeck,
SampleDeck,
QuestSecretBoss}
SampleDeck}

View File

@@ -15,8 +15,7 @@ public class DeckSelectUI : MonoBehaviour
private enum ChangeMoveDirection
{
NONE,
RIGHT }
NONE}
public class PageData
{
@@ -64,39 +63,7 @@ public class DeckSelectUI : MonoBehaviour
Obj = uiGrid.gameObject;
Obj.SetActive(value: true);
}
public void UpdateDeckViewList(List<DeckUI.DeckViewData> deckViewList, bool canUseNonPossessionCard)
{
for (int i = 0; i < _deckUIList.Count; i++)
{
if (deckViewList.Count > i)
{
DeckUI deckUI = _deckUIList[i];
deckUI.gameObject.SetActive(value: true);
deckUI.UpdateView(deckViewList[i], canUseNonPossessionCard);
_onUpdateDeckUICustomize.Call(deckUI);
}
else
{
_deckUIList[i].gameObject.SetActive(value: false);
}
}
}
}
private static readonly Vector3 VIEW_PAGE_POSITION = Vector3.zero;
private static readonly Vector3 OUTSIDE_RIGHT_PAGE_POSITION = VIEW_PAGE_POSITION + Vector3.right * 1400f;
private static readonly Vector3 OUTSIDE_LEFT_PAGE_POSITION = VIEW_PAGE_POSITION + Vector3.left * 1400f;
private DeckTable[] _deckTables = new DeckTable[2];
private int _deckTableIndex;
private List<PageData> _pageList;
private bool _canUseNonPossessionCard;
public bool IsPageMoving { get; private set; }
}