Commit ecd6769f authored by SherryChaos's avatar SherryChaos

.gitignore update

parent df15d9b5
...@@ -22,8 +22,7 @@ ExportedObj/ ...@@ -22,8 +22,7 @@ ExportedObj/
[Ll]ibrary/ [Ll]ibrary/
[Tt]emp/ [Tt]emp/
[Oo]bj/ [Oo]bj/
[Bb]uild/ /[Bb]uild/
[Bb]uilds/
Logs/ Logs/
UserSettings/ UserSettings/
*.pidb.meta *.pidb.meta
...@@ -35,22 +34,21 @@ sysinfo.txt ...@@ -35,22 +34,21 @@ sysinfo.txt
*.unitypackage *.unitypackage
# MDPro3 Assets # MDPro3 Assets
Android/ /Android/
Art/ /Art/
Art2/ /Art2/
AssetsUnused/ /AssetsUnused/
CardGenerated/ /CardGenerated/
[Dd]ata/ /[Dd]ata/
[Dd]eck/ /[Dd]eck/
[Dd]IY/ /[Dd]IY/
[Ee]xpansions/ /[Ee]xpansions/
[Pp]uzzle/ /[Pp]uzzle/
[Rr]eplay/ /[Rr]eplay/
StandaloneWindows64/ /StandaloneWindows64/
Tools/YGO Classes/build/android/obj/ /TempFolder/
Tools/YGO Classes/build/windows/build/
Tools/YGO Classes/build/android/libs/ Tools/YGO Classes/build/android/libs/
Tools/YGO Classes/windows/build/
TempFolder/
Assets/Spine/ Assets/Spine/
Assets/SpineWallpaper/ Assets/SpineWallpaper/
......
fileFormatVersion: 2
guid: 2da5ac4ef8e33234f826ef84915b7e04
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
apply plugin: 'com.android.library'
**APPLY_PLUGINS**
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
**DEPS**}
android {
compileSdkVersion **APIVERSION**
buildToolsVersion '**BUILDTOOLS**'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
minSdkVersion **MINSDKVERSION**
targetSdkVersion **TARGETSDKVERSION**
ndk {
abiFilters **ABIFILTERS**
}
versionCode **VERSIONCODE**
versionName '**VERSIONNAME**'
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
}
lintOptions {
abortOnError false
}
aaptOptions {
noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
}**PACKAGING_OPTIONS**
}**REPOSITORIES**
**IL_CPP_BUILD_SETUP**
**SOURCE_BUILD_SETUP**
**EXTERNAL_SOURCES**
fileFormatVersion: 2
guid: e63635bc7e5c63a48bf3e94ff30035dd
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Collections.Generic;
using UnityEngine;
using YgomGame.Card;
using YgomGame.Menu;
using YgomSystem.UI;
using YgomSystem.YGomTMPro;
namespace YgomGame.Deck
{
public class BatchDismantleDialog : SelectDialogViewControllerBase<bool>, IBokeSupported
{
private const string PREFAB_PATH_BATCHDISMANTLEDIALOG = "DeckEdit/BatchDismantleDialog";
private const string LABEL_SBN_CANCELBUTTON = "ButtonFooter0";
private const string LABEL_SBN_DISMANTLEBUTTON = "ButtonFooter1";
private const string LABEL_EOM_TEMPLATE = "Template";
private const string LABEL_TXT_CANCELBUTTONLABEL = "TextButtonFooter0";
private const string LABEL_TXT_DISMANTLEBUTTONLABEL = "TextButtonFooter1";
private const string LABEL_TXT_POINTSGAINEDHEADER = "TextGetCP";
private const string LABEL_TXT_NPOINTSGAINED = "TextGetCPNum0";
private const string LABEL_TXT_RPOINTSGAINED = "TextGetCPNum1";
private const string LABEL_TXT_SRPOINTSGAINED = "TextGetCPNum2";
private const string LABEL_TXT_URPOINTSGAINED = "TextGetCPNum3";
private const string LABEL_TXT_TOTALPOINTSHEADER = "TextCP";
private const string LABEL_TXT_NTOTALPOINTS = "TextCPNum0";
private const string LABEL_TXT_RTOTALPOINTS = "TextCPNum1";
private const string LABEL_TXT_SRTOTALPOINTS = "TextCPNum2";
private const string LABEL_TXT_URTOTALPOINTS = "TextCPNum3";
private const string LABEL_TXT_DESC0 = "TextDescription0";
private const string LABEL_TXT_DESC1 = "TextDescription1";
private const string LABEL_TXT_DESC2 = "TextDescription2";
private const string LABEL_TXT_DIALOGTITLE = "TextTitle";
private const string LABEL_RT_LISTAREA = "ListArea";
private const string LABEL_TXT_TEXTNUM = "TextCardNum";
private const string LABEL_TXT_TEXTRARITY = "TextRarity";
private ExtendedTextMeshProUGUI m_CancelButtonLabel;
private ExtendedTextMeshProUGUI m_DismanlteButtonLabel;
private ExtendedTextMeshProUGUI m_PointsGainedHeader;
private ExtendedTextMeshProUGUI m_NPointsGained;
private ExtendedTextMeshProUGUI m_RPointsGained;
private ExtendedTextMeshProUGUI m_SRPointsGained;
private ExtendedTextMeshProUGUI m_URPointsGained;
private ExtendedTextMeshProUGUI m_TotalPointsHeader;
private ExtendedTextMeshProUGUI m_NTotalPoints;
private ExtendedTextMeshProUGUI m_RTotalPoints;
private ExtendedTextMeshProUGUI m_SRTotalPoints;
private ExtendedTextMeshProUGUI m_URTotalPoints;
private ExtendedTextMeshProUGUI m_Desc0;
private ExtendedTextMeshProUGUI m_Desc1;
private ExtendedTextMeshProUGUI m_Desc2;
private ExtendedTextMeshProUGUI m_DialogTitle;
private SelectionButton m_DismantleButton;
private SelectionButton m_CancelButton;
private RectTransform m_ListArea;
private Dictionary<int, CraftCompensation> m_CraftCompensations;
private Dictionary<string, object> m_Compensations;
private Dictionary<int, int> m_CompensationsRarities;
private List<int> m_CompensationIds;
public const string k_ArgKeyDialogTitle = "title";
public const string k_ArgKeyDismantleCards = "dismantleCards";
public const string k_ArgKeyOnCompleteCallback = "onCompleteCallback";
public const string k_ArgKeyCreateCards = "createCards";
public const string k_ArgKeyCreateCardsMessage = "createCardsMessage";
private const string CP_TEXT_MAX = "99999+";
private const string CP_TEXT_MIN = "0";
private string m_Title;
private List<CardBaseData> m_DismantleCards;
private Action<bool> OnCompleteCallback;
private Dictionary<int, int> m_CreateCards;
private string m_CreatedCardsMessage;
private Dictionary<string, object> formatedCards;
private bool isSelectMode;
private bool isCreateMode;
private Dictionary<CardCollectionInfo.Rarity, bool> SufficientCheck;
private void InitializeElements()
{
}
public static void Open(Action<bool> callback = null)
{
}
public static void Open(Dictionary<string, object> args = null)
{
}
public override void NotificationStackEntry()
{
}
private void InitCompensation()
{
}
protected override void OnCreatedView()
{
}
private void InitilizeCreateMode()
{
}
private void Dismauntle()
{
}
private void Create()
{
}
private List<CardBaseData> FormatCreateCards(Dictionary<int, int> lackCards)
{
return null;
}
private bool CompensationCheck(Dictionary<string, object> data)
{
return false;
}
public BatchDismantleDialog()
{
//((SelectDialogViewControllerBase<>)(object)this)._002Ector();
}
}
}
fileFormatVersion: 2
guid: 2e4d76e1b63d126e677262762b76ed51
timeCreated: 1698741461
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: fb59c200a09521a4ef08b9d02c2da4a3
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Runtime.CompilerServices;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;
using YgomSystem.ElementSystem;
using YgomSystem.UI;
namespace YgomGame.Deck
{
public class CardBase : MonoBehaviour
{
protected ElementObjectManager m_eom;
protected const string LABEL_IMG_CARDIMAGE = "ImageCard";
protected const string LABEL_IMG_NOCARD = "NoCard";
protected const string LABEL_IMG_RENTALCARD = "RentalCard";
public SelectionButton m_ImageCardButton;
public Image m_ImageNoCard;
public Image m_ImageRentalCard;
protected RawImage m_CardImage;
protected UnityAction m_OnClickAction;
protected UnityAction m_OnSelectedAction;
protected UnityAction m_OnDeselectedAction;
protected UnityAction<bool> m_OnRightClickAction;
protected UnityAction m_SelectedKeyL2Action;
protected UnityAction<Vector2> m_DragBeginAction;
protected UnityAction<Vector2> m_DragAction;
protected UnityAction<Vector2> m_DragEndAction;
private bool isIni;
public CardBaseData m_BaseData
{
[CompilerGenerated]
get
{
return default(CardBaseData);
}
[CompilerGenerated]
set
{
}
}
protected void InitializeElemnts()
{
}
private void Awake()
{
}
private void Start()
{
}
public virtual void SetData(CardBaseData data, int regulationID = -1)
{
}
public void SetCardImage(Texture image)
{
}
public void SetCardImageMaterial(Material mat)
{
}
public void SetMonochrome(bool b)
{
}
public void SetRentalImage(bool b)
{
}
public void UnsetCardImagTexture()
{
}
public void SetDisp(bool disp)
{
}
public void SetOnSelectedCallback(UnityAction callback)
{
}
public void SetOnDeselectedCallback(UnityAction callback)
{
}
public void SetOnClickCallback(UnityAction callback)
{
}
public void SetOnRightClickCallback(UnityAction<bool> callback)
{
}
public void SetOnSelectedKeyL2Callback(UnityAction callback)
{
}
public void SetDragBeginCallback(UnityAction<Vector2> callback)
{
}
public void SetDragCallback(UnityAction<Vector2> callback)
{
}
public void SetDragEndCallback(UnityAction<Vector2> callback)
{
}
public void InvokeDragBeginCallback(Vector2 screenPoint)
{
}
public void InvokeDragCallback(Vector2 screenPoint)
{
}
public void InvokeDragEndCallback(Vector2 screenPoint)
{
}
}
}
fileFormatVersion: 2
guid: 4a5df1c1d921b0764af7742051f71688
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Runtime.CompilerServices;
namespace YgomGame.Deck
{
[Serializable]
public struct CardBaseData : IEquatable<CardBaseData>
{
public int CardID
{
[CompilerGenerated]
readonly get
{
return 0;
}
[CompilerGenerated]
set
{
}
}
public int PremiumID
{
[CompilerGenerated]
readonly get
{
return 0;
}
[CompilerGenerated]
set
{
}
}
public bool IsOwned
{
[CompilerGenerated]
readonly get
{
return false;
}
[CompilerGenerated]
set
{
}
}
public int Obtained
{
[CompilerGenerated]
readonly get
{
return 0;
}
[CompilerGenerated]
set
{
}
}
public int Inventory
{
[CompilerGenerated]
readonly get
{
return 0;
}
[CompilerGenerated]
set
{
}
}
public int Rarity
{
[CompilerGenerated]
readonly get
{
return 0;
}
[CompilerGenerated]
set
{
}
}
public bool IsRental
{
[CompilerGenerated]
readonly get
{
return false;
}
[CompilerGenerated]
set
{
}
}
public CardBaseData(int c_id = 0, int p_id = 0, bool owned = true, bool rental = false)
{
}
public static bool operator ==(CardBaseData a, CardBaseData b)
{
return false;
}
public static bool operator !=(CardBaseData a, CardBaseData b)
{
return false;
}
public override bool Equals(object obj)
{
return false;
}
public bool Equals(CardBaseData data)
{
return false;
}
public override int GetHashCode()
{
return 0;
}
}
}
fileFormatVersion: 2
guid: fbee7d21b9f351f478943e1e3d14f66a
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: 33aefb08308b86c0cd539344139ad1d6
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using TMPro;
using UnityEngine.UI;
using YgomGame.Card;
using YgomGame.Menu;
using YgomSystem.ElementSystem;
using YgomSystem.UI;
namespace YgomGame.Deck
{
public class CardCraftDialog : SelectDialogViewControllerBase<CardCraftDialog.CraftMode, int, CardCollectionInfo.Premium, int>, IBokeSupported
{
public enum CraftMode
{
Create = 0,
Dismantle = 1
}
private class CraftGroup : ElementWidget
{
private ElementObjectManager m_OperationEom;
private ElementObjectManager m_ResultEom;
//public RawImage m_CardImage
//{
// [CompilerGenerated]
// get
// {
// return null;
// }
// [CompilerGenerated]
// private set
// {
// }
//}
//public Image m_Rarity
//{
// [CompilerGenerated]
// get
// {
// return null;
// }
// [CompilerGenerated]
// private set
// {
// }
//}
public SelectionButton m_IncrementButton
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public SelectionButton m_DecrementButton
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public TMP_Text m_TextNum
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public TMP_Text m_TextBeforeNum
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public TMP_Text m_TextAfterNum
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public TMP_Text m_TextPremiumNum
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
//public Image m_CPIcon
//{
// [CompilerGenerated]
// get
// {
// return null;
// }
// [CompilerGenerated]
// private set
// {
// }
//}
public TMP_Text m_TextBeforeCP
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public TMP_Text m_TextAfterCP
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
public TMP_Text m_TextCompensation
{
[CompilerGenerated]
get
{
return null;
}
[CompilerGenerated]
private set
{
}
}
private void InitializeOperationUI()
{
}
private void InitializeResultUI()
{
}
protected override void InitializeElements()
{
}
}
private const string PREFAB_PATH_CARDCRAFTDIALOG = "DeckEdit/CraftDialog";
private CraftMode mode;
private int currentCardNum;
private int currentCraftPoint;
private int createPoint;
private int dismantlePoint;
private int craftNum;
private bool isCompensation;
private int compensationId;
private int compensationPoint;
private int compensationNumMax;
private string strEndTime;
private Dictionary<int, CraftCompensation> m_CraftCompensations;
private Dictionary<string, object> m_Compensations;
private const string LABEL_SBN_CANCELBUTTON = "ButtonFooter0";
private const string LABEL_SBN_CRAFTBUTTON = "ButtonFooter1";
private const string LABEL_TXT_CRAFTBUTTONLABEL = "TextButtonFooter1";
private const string LABEL_TXT_CANCELBUTTONLABEL = "TextButtonFooter0";
private const string LABEL_TXT_CONFIRMATIONPROMPT = "TextDescription";
private const string LABEL_TXT_CONFIRMATIONMESSAGE1 = "TextMessage1";
private const string LABEL_TXT_CONFIRMATIONMESSAGE2 = "TextMessage2";
private const string LABEL_TXT_DIALOGTITLE = "TextTitle";
private TMP_Text m_Title;
private TMP_Text m_CraftPrompt;
private TMP_Text m_CraftMessage1;
private TMP_Text m_CraftMessage2;
private TMP_Text m_CraftButtonLabel;
private TMP_Text m_CancelButtonLabel;
private SelectionButton m_CraftButton;
private SelectionButton m_CancelButton;
private const int CREATE_NUM_MIN = 1;
private const int CREATE_NUM_MAX = 3;
private const int DISMANTLE_NUM_MIN = 1;
private const int DISMANTLE_NUM_MAX = 99;
private Action<int, int> OnDicidedCallback;
private CraftGroup m_CraftGroup;
private int m_CurrentCardID
{
[CompilerGenerated]
get
{
return 0;
}
[CompilerGenerated]
set
{
}
}
private CardCollectionInfo.Premium m_CurrentPremium
{
[CompilerGenerated]
get
{
return default(CardCollectionInfo.Premium);
}
[CompilerGenerated]
set
{
}
}
private void InitializeElements()
{
}
public static void Open(CraftMode mode, int cardID, CardCollectionInfo.Premium prem, Action<int, int> callback = null)
{
}
public override void NotificationStackEntry()
{
}
protected override void OnCreatedView()
{
}
private void SetCraftNum(int craftNum)
{
}
private void SetNumPremiums()
{
}
private void CompensationCheck()
{
}
public CardCraftDialog()
{
//((SelectDialogViewControllerBase<, , , >)(object)this)._002Ector();
}
}
}
fileFormatVersion: 2
guid: b3d79c341466dd34509efea7b804c4b6
timeCreated: 1698741461
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections.Generic;
using YgomGame.Card;
namespace YgomGame.Deck
{
public static class CardData
{
public enum INFOKIND
{
Monster = 0,
Spell = 1,
Trap = 2,
ExMon = 3,
Error = 4
}
private static int refCount;
private static bool created;
private static List<int> allCardList;
private static bool allCardListReq;
public static bool IsValid => false;
public static bool IsReady => false;
public static void AddRef()
{
}
public static void Release()
{
}
public static Content.Frame GetFrame(int mrk)
{
return default(Content.Frame);
}
public static Content.Attribute GetAttr(int mrk)
{
return default(Content.Attribute);
}
public static Content.Type GetType(int mrk)
{
return default(Content.Type);
}
public static int GetStar(int mrk)
{
return 0;
}
public static Content.Icon GetIcon(int mrk)
{
return default(Content.Icon);
}
public static int GetOriginalID2(int mrk)
{
return 0;
}
public static bool IsMainDeck(int mrk)
{
return false;
}
public static bool IsMainDeck(Content.Frame f, int mrk = -1)
{
return false;
}
public static bool IsMonster(int mrk)
{
return false;
}
public static bool IsMonster(Content.Frame f, int mrk = -1)
{
return false;
}
public static bool HasLevel(int mrk)
{
return false;
}
public static bool HasLevel(Content.Frame f, int mrk = -1)
{
return false;
}
public static bool IsValidCard(int mrk)
{
return false;
}
public static INFOKIND GetInfoKind(int mrk)
{
return default(INFOKIND);
}
public static INFOKIND GetInfoKind(Content.Frame f, int mrk = -1)
{
return default(INFOKIND);
}
public static List<int> GetAllCardList()
{
return null;
}
}
}
fileFormatVersion: 2
guid: 01005bf21a6402bce569fb53fbdcad81
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: 33aa1b8739945af4570c851124aba40b
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using UnityEngine.UI;
using YgomGame.Card;
using YgomSystem.UI;
using YgomSystem.YGomTMPro;
namespace YgomGame.Deck
{
public abstract class CardParameterWidget : CardBase
{
public SelectionButton m_BodyButton;
protected CardIconSprites m_CardIconSprites;
protected static Content m_cci => null;
protected abstract Image m_AttrIcon { get; }
protected abstract Image m_TunerIcon { get; }
protected abstract Image m_PendScaleIcon { get; }
protected abstract ExtendedTextMeshProUGUI m_PendScaleText { get; }
protected abstract Image m_LvlIcon { get; }
protected abstract ExtendedTextMeshProUGUI m_LvlText { get; }
protected abstract Image m_RankIcon { get; }
protected abstract ExtendedTextMeshProUGUI m_RankText { get; }
protected abstract Image m_LinkIcon { get; }
protected abstract ExtendedTextMeshProUGUI m_LinkText { get; }
protected abstract Image m_TypeIcon { get; }
protected abstract Image m_SpellTrapTypeIcon { get; }
protected abstract Image m_RegulationIcon { get; }
protected abstract Image m_RarityIcon { get; }
protected void setRegulationIcon(int id)
{
}
protected void setRegulationVisible(bool b)
{
}
protected void setAttribute(bool b = true)
{
}
protected void setTuner(bool b = true)
{
}
protected void setPendulumScale(bool b = true)
{
}
protected void setLevel(bool b = true)
{
}
protected void setRank(bool b = true)
{
}
protected void setLinkRating(bool b = true)
{
}
protected void setType(bool b = true)
{
}
protected void setSpellTrapType(bool b = true)
{
}
protected void setRarity(bool b = true)
{
}
}
}
fileFormatVersion: 2
guid: 86cf451be0c4be65fab86a0ecef6c304
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections.Generic;
using UnityEngine.UI;
using YgomSystem.UI;
using YgomSystem.YGomTMPro;
namespace YgomGame.Deck
{
public class CardStrip : DeckEditCard
{
private ExtendedTextMeshProUGUI m_CardInventory;
private Image m_InDeckIndicatorRental;
private Image m_InDeckIndicator1;
private Image m_InDeckIndicator2;
private Image m_InDeckIndicator3;
private int inDeckR;
private int inDeckN;
private int inDeckP1;
private int inDeckP2;
private List<Image> m_IndicatorsR;
private List<Image> m_IndicatorsN;
private List<Image> m_IndicatorsP1;
private List<Image> m_IndicatorsP2;
private int inDeckAlterR;
private int inDeckAlterN;
private int inDeckAlterP1;
private int inDeckAlterP2;
private List<Image> m_IndicatorsAlterR;
private List<Image> m_IndicatorsAlterN;
private List<Image> m_IndicatorsAlterP1;
private List<Image> m_IndicatorsAlterP2;
private bool isIni;
protected new void InitializeElemnts()
{
}
private void Awake()
{
}
private void Start()
{
}
public void SetCardInventory(bool nonPrizeOnly = false)
{
}
public void SetCardInventory(int num)
{
}
public void SetInDeckSum(int numN, int alterN, int numP1, int alterP1, int numP2, int alterP2, int numRental, int alterR)
{
}
private void AdjustIndicator(int oldNum, int newNum, List<Image> list, Image template, bool isAlter = false)
{
}
public void SetInDeckIndicatorColor(bool isFull)
{
}
public override void SetData(CardBaseData baseData, int regulationID, DeckEditViewController2.DisplayMode mode = DeckEditViewController2.DisplayMode.Simple)
{
}
public new void ScalingIcons(float scale = 1.5f)
{
}
public SelectionItem GetSelectionItem()
{
return null;
}
}
}
fileFormatVersion: 2
guid: ec4ecdb452685e252458169acf0da886
timeCreated: 1698741461
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;
using YgomSystem.UI;
using YgomSystem.YGomTMPro;
namespace YgomGame.Deck
{
public abstract class CardUtilWidget : CardParameterWidget
{
protected Material m_TextBGMaterial;
protected UnityAction m_OnClickCraftCreate;
protected UnityAction m_OnClickCraftDismantle;
protected UnityAction m_OnClickRelatedCards;
protected UnityAction m_OnClickButtonAddCard;
protected UnityAction m_OnClickButtonRemoveCard;
protected UnityAction m_OnClickBackButton;
protected UnityAction m_OnClickButtonBookmark;
protected UnityAction m_OnClickLootSource;
protected abstract Image m_AtkIcon { get; }
protected abstract ExtendedTextMeshProUGUI m_AtkText { get; }
protected abstract Image m_DefIcon { get; }
protected abstract ExtendedTextMeshProUGUI m_DefText { get; }
protected abstract RectTransform m_SpellTrapType { get; }
protected abstract ExtendedTextMeshProUGUI m_SpellTrapTypeText { get; }
protected abstract ExtendedScrollRect m_TextArea { get; }
protected abstract ExtendedTextMeshProUGUI m_CardDesc { get; }
protected abstract ExtendedTextMeshProUGUI m_CardDescHeading { get; }
protected abstract Image m_NameAreaBG { get; }
protected abstract Image m_DescAreaBG { get; }
protected abstract RubyTextGX m_CardName { get; }
protected abstract SelectionButton m_CreateButton { get; }
protected abstract SelectionButton m_DismantleButton { get; }
protected abstract SelectionButton m_AddCardButton { get; }
protected abstract SelectionButton m_RemoveCardButton { get; }
protected abstract SelectionButton m_BookmarkButton { get; }
protected abstract SelectionButton m_HowToGetButton { get; }
protected abstract SelectionButton m_RelatedCardButton { get; }
protected void setCardName()
{
}
protected void setAttack()
{
}
protected void setDefence()
{
}
protected void setDescriptionHeading()
{
}
private void setCardText()
{
}
protected void setCardNameBG()
{
}
protected void setDescAreaBG()
{
}
protected void setSpellTrapType()
{
}
public void SetOnClickAddToMainButtonCallBack(UnityAction callback)
{
}
public void SetOnClickRemoveFromMainButtonCallBack(UnityAction callback)
{
}
public void SetOnClickBookmarkButtonCallBack(UnityAction callback)
{
}
public void SetOnClickCraftCreateButtonCallBack(UnityAction callback)
{
}
public void SetOnClickCraftDismantleButtonCallBack(UnityAction callback)
{
}
public void SetOnClickRelatedCardsButton(UnityAction callback)
{
}
public void SetOnClickLootSourceButton(UnityAction callback)
{
}
public void SetOnClickBackButton(UnityAction callback)
{
}
}
}
fileFormatVersion: 2
guid: f566b3cfe5880f3926592afc0fe3080a
timeCreated: 1698741461
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
namespace YgomGame.Deck
{
internal class CategoryReference
{
public int id;
public string name;
public string kana;
public override bool Equals(object obj)
{
return false;
}
public override int GetHashCode()
{
return 0;
}
}
}
fileFormatVersion: 2
guid: 2b9297189e958414489ecac2a3a2df53
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
namespace YgomGame.Deck
{
public class CraftCompensation
{
public int id;
public int cardId;
public int point;
public int maxNum;
public string openDate;
public string endDate;
public long endTime;
}
}
fileFormatVersion: 2
guid: 9db0b48e28249864db328bbd2a172834
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: baed43e5fad091893eeba6d28752870b
timeCreated: 1698741461
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: dc8bec44edce1ca37186e6bc1c9bb407
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: e8f1434591eac8cf0f1ecf6499570583
timeCreated: 1698741461
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: 25bad63708485d05701e888206264d56
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
fileFormatVersion: 2
guid: b72fb7c5a61a2344779147eee47b5b87
timeCreated: 1698741462
licenseType: Free
MonoImporter:
serializedVersion: 2
externalObjects: {}
defaultReferences: []
executionOrder: 0
icon: {fileID: 0}
userData:
assetBundleName:
assetBundleVariant:
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment