cull(engine-cleanup): pass-8 phase-2 cascade round 1

[trim] fully-unreachable files deleted: 6
[trim] files edited: 55, files deleted: 0, nodes removed: 244
[type-trim] files edited: 1, types removed: 1

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-07-03 21:18:18 -04:00
parent 3fb37f0249
commit c9628dee01
61 changed files with 4 additions and 1109 deletions

View File

@@ -563,27 +563,6 @@ public abstract class MyPageBannerBase : MonoBehaviour
dialogBase.SetOnClickUrl();
}
private void OnSelectPost(int voteId, GameObject cardObject, Action callback)
{
int voteTargetId = int.Parse(cardObject.name);
DialogBase dialogBase = UIManager.GetInstance().CreateDialogClose(isSystem: true);
dialogBase.SetSize(DialogBase.Size.S);
dialogBase.SetTitleLabel(Data.VoteInfo.title_text);
dialogBase.SetButtonLayout(DialogBase.ButtonLayout.OkBtn);
dialogBase.SetFadeButtonEnabled(flag: true);
dialogBase.SetPanelDepth(2000);
dialogBase.SetText(string.Format(Data.SystemText.Get("Dia_Vote_001"), Data.VoteInfo.vote_target_list[voteTargetId]));
dialogBase.onPushButton1 = delegate
{
VoteTask voteTask = new VoteTask();
voteTask.SetParameter(voteId, voteTargetId);
StartCoroutine(Toolbox.NetworkManager.Connect(voteTask, delegate
{
callback.Call();
}));
};
}
private static void StartTransititonTask()
{
TransitionInfoTask task = new TransitionInfoTask();