Replaces partial EffectMgr.EffectType with all 226 decomp values; copies the IsNotNullOrEmpty/EquelsID/FindFromCardId/GetAllFuncVfxResults extension files + UI extensions; adds Renderer/MeshFilter shared-material/mesh/sortingOrder. Compile loop then closed the revealed deps (3242 files). 9.1k -> 18 errors.
53 lines
966 B
C#
53 lines
966 B
C#
using UnityEngine;
|
|
|
|
public class ArenaEntryDialogData : MonoBehaviour
|
|
{
|
|
public GameObject BuyDialogObject;
|
|
|
|
public UILabel _mainText;
|
|
|
|
public UISprite _ticketSprite;
|
|
|
|
public UIButton _ticketButton;
|
|
|
|
public UIButton _rupyButton;
|
|
|
|
public UIButton _crystalButton;
|
|
|
|
public UILabel _ticketHaveTitle;
|
|
|
|
public UILabel _ticketHaveNum;
|
|
|
|
public UILabel _ticketHaveUnit;
|
|
|
|
public UILabel _ticketButtonTitle;
|
|
|
|
public UILabel _ticketButtonSubTitle;
|
|
|
|
public UILabel _ticketButtonUseNum;
|
|
|
|
public UILabel _rupyHaveTitle;
|
|
|
|
public UILabel _rupyHaveNum;
|
|
|
|
public UILabel _rupyHaveUnit;
|
|
|
|
public UILabel _rupyButtonTitle;
|
|
|
|
public UILabel _rupyButtonSubTitle;
|
|
|
|
public UILabel _rupyButtonUseNum;
|
|
|
|
public UILabel _crystalHaveTitle;
|
|
|
|
public UILabel _crystalHaveNum;
|
|
|
|
public UILabel _crystalHaveUnit;
|
|
|
|
public UILabel _crystalButtonTitle;
|
|
|
|
public UILabel _crystalButtonSubTitle;
|
|
|
|
public UILabel _crystalButtonUseNum;
|
|
}
|