cull(engine-cleanup): pass-8 phase-2 cascade round 1 after CardDetailUI stub
This commit is contained in:
@@ -12,9 +12,7 @@ public partial class BattleLogItem
|
||||
Null}
|
||||
private enum FrameType
|
||||
{
|
||||
Unit,
|
||||
Field,
|
||||
Spell }
|
||||
}
|
||||
private enum DescStyle
|
||||
{
|
||||
Normal }
|
||||
|
||||
@@ -13,10 +13,6 @@ namespace Wizard.Battle.View
|
||||
public partial class BattlePlayerView
|
||||
{
|
||||
public BattlePlayerView(BattlePlayer battlePlayer) { }
|
||||
public static bool HasKeyword(CardParameter cardParameter) => default!;
|
||||
public bool IsMoving() => default!;
|
||||
public static DialogBase CreateKeyPanel(string skillDescription, UILabel label, CardMaster.CardMasterId cardMasterId) => default!;
|
||||
public static void PressKeyWordColorChange(UILabel label, bool press) { }
|
||||
public static void SetKeyWordLabelColor(UILabel label, string colorCode = "[ffcd45]") { }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,7 +30,6 @@ public partial class UIManager
|
||||
Sealed,
|
||||
SealedCardPackOpen,
|
||||
SealedDeckEdit,
|
||||
Colosseum,
|
||||
Gacha,
|
||||
BuildDeckPurchasePage,
|
||||
CardSleevePurchasePage,
|
||||
@@ -38,8 +37,6 @@ public partial class UIManager
|
||||
Profile,
|
||||
Mission,
|
||||
BattlePass,
|
||||
LoginBonus,
|
||||
LotteryPage,
|
||||
Bingo,
|
||||
CrossoverPortal,
|
||||
NeutralPopularityVote,
|
||||
@@ -51,7 +48,6 @@ public partial class UIManager
|
||||
public bool isRetryProc;
|
||||
public bool isNoAvailMemory;
|
||||
public Footer _Footer { get; set; }
|
||||
public DialogManager DialogManager { get; set; }
|
||||
public ApplicationFinishManager ApplicationFinishManager { get; set; }
|
||||
public GameObject MyPageUICameraObj { get; set; }
|
||||
public NguiObjs TextInputDialogPrefab { get; set; }
|
||||
|
||||
@@ -94,6 +94,6 @@ namespace Wizard
|
||||
{
|
||||
public partial class DeckUpdateTask { }
|
||||
public partial class AccountTransferHelper { }
|
||||
public class DialogManager { public DialogBase CreateDialogBaseOpenCardDetail(CardDetailUI detailUI) => default!; }
|
||||
public class DialogManager { }
|
||||
public partial class ApplicationFinishManager { }
|
||||
}
|
||||
|
||||
@@ -55,7 +55,6 @@ namespace UnityEngine
|
||||
public static float SqrMagnitude(Vector3 a) => a.sqrMagnitude;
|
||||
public static float Dot(Vector3 a, Vector3 b) => a.x * b.x + a.y * b.y + a.z * b.z;
|
||||
public static Vector3 Scale(Vector3 a, Vector3 b) => new Vector3(a.x * b.x, a.y * b.y, a.z * b.z);
|
||||
public void Scale(Vector3 s) { x *= s.x; y *= s.y; z *= s.z; }
|
||||
public static Vector3 Lerp(Vector3 a, Vector3 b, float t) => new Vector3(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t, a.z + (b.z - a.z) * t);
|
||||
public static Vector3 operator +(Vector3 a, Vector3 b) => new Vector3(a.x + b.x, a.y + b.y, a.z + b.z);
|
||||
public static Vector3 operator -(Vector3 a, Vector3 b) => new Vector3(a.x - b.x, a.y - b.y, a.z - b.z);
|
||||
|
||||
@@ -271,11 +271,11 @@ namespace UnityEngine
|
||||
public class MeshFilter : Component { public Mesh mesh { get; set; } public Mesh sharedMesh { get; set; } }
|
||||
public class ParticleSystem : Component
|
||||
{
|
||||
public void Play() { } public int particleCount => 0;
|
||||
public int particleCount => 0;
|
||||
public MainModule main => default;
|
||||
public int GetParticles(Particle[] p) => 0;
|
||||
public void SetParticles(Particle[] p, int n) { }
|
||||
public struct MainModule { public bool playOnAwake; public MinMaxGradient startColor; }
|
||||
public struct MainModule { public MinMaxGradient startColor; }
|
||||
public struct MinMaxGradient { public Color color; public MinMaxGradient(Color c) { color = c; } public static implicit operator MinMaxGradient(Color c) => new MinMaxGradient(c); }
|
||||
public struct EmissionModule { }
|
||||
public struct Particle { public Vector3 position; public Color32 startColor; }
|
||||
|
||||
Reference in New Issue
Block a user