提交小游戏项目
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b9d5b6a3d45b3473393cf75335f47344
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,17 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Game_flower
|
||||
{
|
||||
public class Game_flowerBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_flowerguide.URL, typeof(com_flowerguide));
|
||||
UIObjectFactory.SetPackageItemExtension(com_flower.URL, typeof(com_flower));
|
||||
UIObjectFactory.SetPackageItemExtension(item_potFlower.URL, typeof(item_potFlower));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_item.URL, typeof(btn_item));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 54a73e5fc53054c47a53193264766078
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower
|
||||
{
|
||||
public partial class btn_item : GButton
|
||||
{
|
||||
public Controller type;
|
||||
public Controller state;
|
||||
public GTextField text_number;
|
||||
public GTextField text_unlock;
|
||||
public const string URL = "ui://z3yegs6hruxtt";
|
||||
|
||||
public static btn_item CreateInstance()
|
||||
{
|
||||
return (btn_item)UIPackage.CreateObject("Game_flower", "btn_item");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
state = GetControllerAt(1);
|
||||
text_number = (GTextField)GetChildAt(6);
|
||||
text_unlock = (GTextField)GetChildAt(9);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30bbdd00b80324617bfe7d621e05acce
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,53 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower
|
||||
{
|
||||
public partial class com_flower : GComponent
|
||||
{
|
||||
public GButton btn_pot;
|
||||
public GList list_pot;
|
||||
public GGroup group_list;
|
||||
public GButton btn_add0;
|
||||
public GButton btn_add1;
|
||||
public btn_item btn_tip;
|
||||
public btn_item btn_clean;
|
||||
public btn_item btn_refresh;
|
||||
public GTextField text_level;
|
||||
public GButton btn_gold;
|
||||
public GTextField text_time;
|
||||
public GGroup group_safe;
|
||||
public com_flowerguide com_guide;
|
||||
public GButton btn_close;
|
||||
public Transition t0;
|
||||
public const string URL = "ui://z3yegs6hruxt3";
|
||||
|
||||
public static com_flower CreateInstance()
|
||||
{
|
||||
return (com_flower)UIPackage.CreateObject("Game_flower", "com_flower");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_pot = (GButton)GetChildAt(0);
|
||||
list_pot = (GList)GetChildAt(2);
|
||||
group_list = (GGroup)GetChildAt(3);
|
||||
btn_add0 = (GButton)GetChildAt(4);
|
||||
btn_add1 = (GButton)GetChildAt(5);
|
||||
btn_tip = (btn_item)GetChildAt(6);
|
||||
btn_clean = (btn_item)GetChildAt(7);
|
||||
btn_refresh = (btn_item)GetChildAt(8);
|
||||
text_level = (GTextField)GetChildAt(11);
|
||||
btn_gold = (GButton)GetChildAt(15);
|
||||
text_time = (GTextField)GetChildAt(18);
|
||||
group_safe = (GGroup)GetChildAt(19);
|
||||
com_guide = (com_flowerguide)GetChildAt(20);
|
||||
btn_close = (GButton)GetChildAt(21);
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 97ba5d0c338d24ef59b425c3b330cb52
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,27 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower
|
||||
{
|
||||
public partial class com_flowerguide : GComponent
|
||||
{
|
||||
public Controller state;
|
||||
public GButton btn_close;
|
||||
public const string URL = "ui://z3yegs6hq07t16";
|
||||
|
||||
public static com_flowerguide CreateInstance()
|
||||
{
|
||||
return (com_flowerguide)UIPackage.CreateObject("Game_flower", "com_flowerguide");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
btn_close = (GButton)GetChildAt(8);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a82d2f5027bba4d54a7c0eeab494c382
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,29 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower
|
||||
{
|
||||
public partial class item_potFlower : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public GLoader flower_loader;
|
||||
public GTextField text_flower_number;
|
||||
public const string URL = "ui://z3yegs6hruxtq";
|
||||
|
||||
public static item_potFlower CreateInstance()
|
||||
{
|
||||
return (item_potFlower)UIPackage.CreateObject("Game_flower", "item_potFlower");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
flower_loader = (GLoader)GetChildAt(0);
|
||||
text_flower_number = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7b69216e17352436c82ca16ace9bf152
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d54750572584243379b22448fb5ea9ad
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,20 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public class Game_flower_buyBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_unlockitem.URL, typeof(com_unlockitem));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_cliam_flower.URL, typeof(btn_cliam_flower));
|
||||
UIObjectFactory.SetPackageItemExtension(com_flowerbuyitem.URL, typeof(com_flowerbuyitem));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_ad.URL, typeof(btn_ad));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_gold.URL, typeof(btn_gold));
|
||||
UIObjectFactory.SetPackageItemExtension(com_flower_remake.URL, typeof(com_flower_remake));
|
||||
UIObjectFactory.SetPackageItemExtension(com_addslot.URL, typeof(com_addslot));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7abd9c74511cb4b95b06d0be6e46866d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,27 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class btn_ad : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public GTextField text_time;
|
||||
public const string URL = "ui://z8b2yj70ruxto";
|
||||
|
||||
public static btn_ad CreateInstance()
|
||||
{
|
||||
return (btn_ad)UIPackage.CreateObject("Game_flower_buy", "btn_ad");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
text_time = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2969a4e75eea545eab9bcb1b04aa5cf9
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,27 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class btn_cliam_flower : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public GTextField text_time;
|
||||
public const string URL = "ui://z8b2yj70ruxt1c";
|
||||
|
||||
public static btn_cliam_flower CreateInstance()
|
||||
{
|
||||
return (btn_cliam_flower)UIPackage.CreateObject("Game_flower_buy", "btn_cliam_flower");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
text_time = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ed78d62c47fb40ccaf0eb1db038fd07
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class btn_gold : GButton
|
||||
{
|
||||
public GTextField text_gold;
|
||||
public const string URL = "ui://z8b2yj70ruxtr";
|
||||
|
||||
public static btn_gold CreateInstance()
|
||||
{
|
||||
return (btn_gold)UIPackage.CreateObject("Game_flower_buy", "btn_gold");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_gold = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7a70ab0a6948c4200be7ac304495e79b
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class com_addslot : GComponent
|
||||
{
|
||||
public btn_ad btn_ad;
|
||||
public GButton btn_close;
|
||||
public GTextField text_needads;
|
||||
public GTextField text_ads;
|
||||
public const string URL = "ui://z8b2yj70ruxty";
|
||||
|
||||
public static com_addslot CreateInstance()
|
||||
{
|
||||
return (com_addslot)UIPackage.CreateObject("Game_flower_buy", "com_addslot");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_ad = (btn_ad)GetChildAt(2);
|
||||
btn_close = (GButton)GetChildAt(5);
|
||||
text_needads = (GTextField)GetChildAt(9);
|
||||
text_ads = (GTextField)GetChildAt(12);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bf9175c6673a440c485519deb7d6c8ae
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,33 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class com_flower_remake : GComponent
|
||||
{
|
||||
public Controller state;
|
||||
public btn_ad btn_ad;
|
||||
public btn_gold btn_gold;
|
||||
public GButton btn_close;
|
||||
public GButton btn_close1;
|
||||
public const string URL = "ui://z8b2yj70ruxtw";
|
||||
|
||||
public static com_flower_remake CreateInstance()
|
||||
{
|
||||
return (com_flower_remake)UIPackage.CreateObject("Game_flower_buy", "com_flower_remake");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
btn_ad = (btn_ad)GetChildAt(1);
|
||||
btn_gold = (btn_gold)GetChildAt(2);
|
||||
btn_close = (GButton)GetChildAt(8);
|
||||
btn_close1 = (GButton)GetChildAt(12);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e9cd6d0fb0cd54cfbaa01acd49cb2311
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,33 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class com_flowerbuyitem : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public btn_ad btn_ad;
|
||||
public btn_gold btn_gold;
|
||||
public GButton btn_close;
|
||||
public GTextField text_remain;
|
||||
public const string URL = "ui://z8b2yj70ruxte";
|
||||
|
||||
public static com_flowerbuyitem CreateInstance()
|
||||
{
|
||||
return (com_flowerbuyitem)UIPackage.CreateObject("Game_flower_buy", "com_flowerbuyitem");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
btn_ad = (btn_ad)GetChildAt(1);
|
||||
btn_gold = (btn_gold)GetChildAt(2);
|
||||
btn_close = (GButton)GetChildAt(8);
|
||||
text_remain = (GTextField)GetChildAt(13);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 531483032f2eb448198fa9d97821097b
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,29 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_buy
|
||||
{
|
||||
public partial class com_unlockitem : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public btn_cliam_flower btn_close;
|
||||
public Transition t0;
|
||||
public const string URL = "ui://z8b2yj70ruxt13";
|
||||
|
||||
public static com_unlockitem CreateInstance()
|
||||
{
|
||||
return (com_unlockitem)UIPackage.CreateObject("Game_flower_buy", "com_unlockitem");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
btn_close = (btn_cliam_flower)GetChildAt(6);
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3a074e7537ef441eab554c1f5b7d7ea4
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2ad18dc579e7e488998633560302004f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,18 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Game_flower_end
|
||||
{
|
||||
public class Game_flower_endBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_unlockLevelNew.URL, typeof(com_unlockLevelNew));
|
||||
UIObjectFactory.SetPackageItemExtension(item_unlockLevel.URL, typeof(item_unlockLevel));
|
||||
UIObjectFactory.SetPackageItemExtension(com_pic.URL, typeof(com_pic));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_unlock.URL, typeof(btn_unlock));
|
||||
UIObjectFactory.SetPackageItemExtension(com_flowerEnd.URL, typeof(com_flowerEnd));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e0f54fee66ed949ac870f73e72cbe569
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_end
|
||||
{
|
||||
public partial class btn_unlock : GButton
|
||||
{
|
||||
public Controller pay_type;
|
||||
public const string URL = "ui://k5z63ideq07t16";
|
||||
|
||||
public static btn_unlock CreateInstance()
|
||||
{
|
||||
return (btn_unlock)UIPackage.CreateObject("Game_flower_end", "btn_unlock");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
pay_type = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 19484ae1886c6480ba201e9fa3e8a50a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,73 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_end
|
||||
{
|
||||
public partial class com_flowerEnd : GComponent
|
||||
{
|
||||
public Controller win_lose;
|
||||
public Controller step;
|
||||
public Controller is_vip;
|
||||
public GTextField remain_time;
|
||||
public GTextField tetx_level;
|
||||
public GGraph congra_parent;
|
||||
public GTextField text_levelType;
|
||||
public GGraph bg_parent;
|
||||
public GGraph congra_parent_2;
|
||||
public GGraph coin_parent;
|
||||
public GTextField text_award;
|
||||
public GButton btn_gold;
|
||||
public GComponent com_loader;
|
||||
public GButton btn_download;
|
||||
public GButton btn_restart;
|
||||
public GComponent wheel;
|
||||
public GProgressBar progress_level;
|
||||
public GButton btn_mult;
|
||||
public GButton btn_claim;
|
||||
public GImage logo;
|
||||
public GTextField text_award_2;
|
||||
public GButton btn_download_coin;
|
||||
public GComponent btn_continue;
|
||||
public Transition t0;
|
||||
public Transition t1;
|
||||
public const string URL = "ui://k5z63ideq07t1a";
|
||||
|
||||
public static com_flowerEnd CreateInstance()
|
||||
{
|
||||
return (com_flowerEnd)UIPackage.CreateObject("Game_flower_end", "com_flowerEnd");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
win_lose = GetControllerAt(0);
|
||||
step = GetControllerAt(1);
|
||||
is_vip = GetControllerAt(2);
|
||||
remain_time = (GTextField)GetChildAt(1);
|
||||
tetx_level = (GTextField)GetChildAt(3);
|
||||
congra_parent = (GGraph)GetChildAt(5);
|
||||
text_levelType = (GTextField)GetChildAt(9);
|
||||
bg_parent = (GGraph)GetChildAt(10);
|
||||
congra_parent_2 = (GGraph)GetChildAt(11);
|
||||
coin_parent = (GGraph)GetChildAt(12);
|
||||
text_award = (GTextField)GetChildAt(14);
|
||||
btn_gold = (GButton)GetChildAt(15);
|
||||
com_loader = (GComponent)GetChildAt(16);
|
||||
btn_download = (GButton)GetChildAt(18);
|
||||
btn_restart = (GButton)GetChildAt(19);
|
||||
wheel = (GComponent)GetChildAt(20);
|
||||
progress_level = (GProgressBar)GetChildAt(21);
|
||||
btn_mult = (GButton)GetChildAt(22);
|
||||
btn_claim = (GButton)GetChildAt(23);
|
||||
logo = (GImage)GetChildAt(24);
|
||||
text_award_2 = (GTextField)GetChildAt(26);
|
||||
btn_download_coin = (GButton)GetChildAt(30);
|
||||
btn_continue = (GComponent)GetChildAt(31);
|
||||
t0 = GetTransitionAt(0);
|
||||
t1 = GetTransitionAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 52a861b383d84433092967464d1c1246
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_end
|
||||
{
|
||||
public partial class com_pic : GComponent
|
||||
{
|
||||
public GLoader picture;
|
||||
public const string URL = "ui://k5z63ideq07t15";
|
||||
|
||||
public static com_pic CreateInstance()
|
||||
{
|
||||
return (com_pic)UIPackage.CreateObject("Game_flower_end", "com_pic");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
picture = (GLoader)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 69cb289dcbb904da0ac3d5d8a0364963
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,35 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_end
|
||||
{
|
||||
public partial class com_unlockLevelNew : GComponent
|
||||
{
|
||||
public GComponent btn_close;
|
||||
public item_unlockLevel item_0;
|
||||
public item_unlockLevel item_0_re;
|
||||
public item_unlockLevel item_1;
|
||||
public item_unlockLevel item_2;
|
||||
public item_unlockLevel item_3;
|
||||
public const string URL = "ui://k5z63ideq07t13";
|
||||
|
||||
public static com_unlockLevelNew CreateInstance()
|
||||
{
|
||||
return (com_unlockLevelNew)UIPackage.CreateObject("Game_flower_end", "com_unlockLevelNew");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_close = (GComponent)GetChildAt(1);
|
||||
item_0 = (item_unlockLevel)GetChildAt(2);
|
||||
item_0_re = (item_unlockLevel)GetChildAt(3);
|
||||
item_1 = (item_unlockLevel)GetChildAt(4);
|
||||
item_2 = (item_unlockLevel)GetChildAt(5);
|
||||
item_3 = (item_unlockLevel)GetChildAt(6);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ecc98aff2e48e4f369c9344190169227
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_flower_end
|
||||
{
|
||||
public partial class item_unlockLevel : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public com_pic com_pic;
|
||||
public GButton btn_skip;
|
||||
public btn_unlock btn_unlock;
|
||||
public const string URL = "ui://k5z63ideq07t14";
|
||||
|
||||
public static item_unlockLevel CreateInstance()
|
||||
{
|
||||
return (item_unlockLevel)UIPackage.CreateObject("Game_flower_end", "item_unlockLevel");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
com_pic = (com_pic)GetChildAt(0);
|
||||
btn_skip = (GButton)GetChildAt(1);
|
||||
btn_unlock = (btn_unlock)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f6d80742164d643699228e0443e62583
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9bdd827764d4f4c3b86da51542f94577
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,15 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Game_puzzle
|
||||
{
|
||||
public class Game_puzzleBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_puzzle.URL, typeof(com_puzzle));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_puzzle.URL, typeof(btn_puzzle));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b1555fb99c6e04ca6a6a83d0c6aed3da
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,29 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle
|
||||
{
|
||||
public partial class btn_puzzle : GButton
|
||||
{
|
||||
public Controller type;
|
||||
public Controller state;
|
||||
public GTextField text_number;
|
||||
public const string URL = "ui://6iki0euxjhpy1r";
|
||||
|
||||
public static btn_puzzle CreateInstance()
|
||||
{
|
||||
return (btn_puzzle)UIPackage.CreateObject("Game_puzzle", "btn_puzzle");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
state = GetControllerAt(1);
|
||||
text_number = (GTextField)GetChildAt(5);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: afded2cd9b2a54baa8d3bfc571a93337
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,43 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle
|
||||
{
|
||||
public partial class com_puzzle : GComponent
|
||||
{
|
||||
public Controller show_tips;
|
||||
public GTextField text_time;
|
||||
public btn_puzzle btn_item0;
|
||||
public btn_puzzle btn_item1;
|
||||
public btn_puzzle btn_item2;
|
||||
public GButton head;
|
||||
public GButton btn_gold;
|
||||
public GButton btn_close;
|
||||
public GTextField text_level;
|
||||
public Transition t0;
|
||||
public const string URL = "ui://6iki0euxjhpy0";
|
||||
|
||||
public static com_puzzle CreateInstance()
|
||||
{
|
||||
return (com_puzzle)UIPackage.CreateObject("Game_puzzle", "com_puzzle");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
show_tips = GetControllerAt(0);
|
||||
text_time = (GTextField)GetChildAt(4);
|
||||
btn_item0 = (btn_puzzle)GetChildAt(7);
|
||||
btn_item1 = (btn_puzzle)GetChildAt(8);
|
||||
btn_item2 = (btn_puzzle)GetChildAt(9);
|
||||
head = (GButton)GetChildAt(10);
|
||||
btn_gold = (GButton)GetChildAt(11);
|
||||
btn_close = (GButton)GetChildAt(12);
|
||||
text_level = (GTextField)GetChildAt(13);
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9ebc688a270fd422a8fe1caef2d4e192
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c0206a2a529b64ffdbff1cb57ac0a346
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,16 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Game_puzzle_buy
|
||||
{
|
||||
public class Game_puzzle_buyBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_buyitem.URL, typeof(com_buyitem));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_gold.URL, typeof(btn_gold));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_ad.URL, typeof(btn_ad));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7e8800f3645de41dfa93becf76b53703
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,27 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_buy
|
||||
{
|
||||
public partial class btn_ad : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public GTextField text_time;
|
||||
public const string URL = "ui://6h55j6fqjhpyi";
|
||||
|
||||
public static btn_ad CreateInstance()
|
||||
{
|
||||
return (btn_ad)UIPackage.CreateObject("Game_puzzle_buy", "btn_ad");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
text_time = (GTextField)GetChildAt(3);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6ce07b4d5b49141a69af597eb370be07
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_buy
|
||||
{
|
||||
public partial class btn_gold : GButton
|
||||
{
|
||||
public GTextField text_gold;
|
||||
public const string URL = "ui://6h55j6fqjhpyh";
|
||||
|
||||
public static btn_gold CreateInstance()
|
||||
{
|
||||
return (btn_gold)UIPackage.CreateObject("Game_puzzle_buy", "btn_gold");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_gold = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3adef00126c5c4b5ab21dfe8a3338227
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,35 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_buy
|
||||
{
|
||||
public partial class com_buyitem : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public Controller time_state;
|
||||
public GButton btn_close;
|
||||
public btn_ad btn_ad;
|
||||
public btn_gold btn_gold;
|
||||
public GTextField text_remain;
|
||||
public const string URL = "ui://6h55j6fqjhpyc";
|
||||
|
||||
public static com_buyitem CreateInstance()
|
||||
{
|
||||
return (com_buyitem)UIPackage.CreateObject("Game_puzzle_buy", "com_buyitem");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
time_state = GetControllerAt(1);
|
||||
btn_close = (GButton)GetChildAt(0);
|
||||
btn_ad = (btn_ad)GetChildAt(2);
|
||||
btn_gold = (btn_gold)GetChildAt(3);
|
||||
text_remain = (GTextField)GetChildAt(7);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 96836bffda133482fbbc5fcc336a0c4f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1570c699809d74fe39df0e163d7bb60d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,18 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Game_puzzle_end
|
||||
{
|
||||
public class Game_puzzle_endBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_unlockLevelNew.URL, typeof(com_unlockLevelNew));
|
||||
UIObjectFactory.SetPackageItemExtension(item_unlockLevel.URL, typeof(item_unlockLevel));
|
||||
UIObjectFactory.SetPackageItemExtension(com_pic.URL, typeof(com_pic));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_unlock.URL, typeof(btn_unlock));
|
||||
UIObjectFactory.SetPackageItemExtension(com_puzzleEnd.URL, typeof(com_puzzleEnd));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a4be4e4e708d423292a192f5610a40c
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_end
|
||||
{
|
||||
public partial class btn_unlock : GButton
|
||||
{
|
||||
public Controller pay_type;
|
||||
public const string URL = "ui://zjn4dmwmruxt16";
|
||||
|
||||
public static btn_unlock CreateInstance()
|
||||
{
|
||||
return (btn_unlock)UIPackage.CreateObject("Game_puzzle_end", "btn_unlock");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
pay_type = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0e84f03c1064d48fa868e3655a828a3c
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_end
|
||||
{
|
||||
public partial class com_pic : GComponent
|
||||
{
|
||||
public GLoader picture;
|
||||
public const string URL = "ui://zjn4dmwmruxt15";
|
||||
|
||||
public static com_pic CreateInstance()
|
||||
{
|
||||
return (com_pic)UIPackage.CreateObject("Game_puzzle_end", "com_pic");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
picture = (GLoader)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3b8ca5feb601b47f2b59dca78584c578
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,73 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_end
|
||||
{
|
||||
public partial class com_puzzleEnd : GComponent
|
||||
{
|
||||
public Controller win_lose;
|
||||
public Controller step;
|
||||
public Controller is_vip;
|
||||
public GTextField remain_time;
|
||||
public GTextField tetx_level;
|
||||
public GGraph congra_parent;
|
||||
public GTextField text_levelType;
|
||||
public GGraph bg_parent;
|
||||
public GGraph congra_parent_2;
|
||||
public GGraph coin_parent;
|
||||
public GTextField text_award;
|
||||
public GButton btn_gold;
|
||||
public GComponent com_loader;
|
||||
public GButton btn_download;
|
||||
public GButton btn_restart;
|
||||
public GComponent wheel;
|
||||
public GProgressBar progress_level;
|
||||
public GButton btn_mult;
|
||||
public GButton btn_claim;
|
||||
public GImage logo;
|
||||
public GTextField text_award_2;
|
||||
public GButton btn_download_coin;
|
||||
public GComponent btn_continue;
|
||||
public Transition t0;
|
||||
public Transition t1;
|
||||
public const string URL = "ui://zjn4dmwmruxt1a";
|
||||
|
||||
public static com_puzzleEnd CreateInstance()
|
||||
{
|
||||
return (com_puzzleEnd)UIPackage.CreateObject("Game_puzzle_end", "com_puzzleEnd");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
win_lose = GetControllerAt(0);
|
||||
step = GetControllerAt(1);
|
||||
is_vip = GetControllerAt(2);
|
||||
remain_time = (GTextField)GetChildAt(1);
|
||||
tetx_level = (GTextField)GetChildAt(3);
|
||||
congra_parent = (GGraph)GetChildAt(5);
|
||||
text_levelType = (GTextField)GetChildAt(9);
|
||||
bg_parent = (GGraph)GetChildAt(10);
|
||||
congra_parent_2 = (GGraph)GetChildAt(11);
|
||||
coin_parent = (GGraph)GetChildAt(12);
|
||||
text_award = (GTextField)GetChildAt(14);
|
||||
btn_gold = (GButton)GetChildAt(15);
|
||||
com_loader = (GComponent)GetChildAt(16);
|
||||
btn_download = (GButton)GetChildAt(18);
|
||||
btn_restart = (GButton)GetChildAt(19);
|
||||
wheel = (GComponent)GetChildAt(20);
|
||||
progress_level = (GProgressBar)GetChildAt(21);
|
||||
btn_mult = (GButton)GetChildAt(22);
|
||||
btn_claim = (GButton)GetChildAt(23);
|
||||
logo = (GImage)GetChildAt(24);
|
||||
text_award_2 = (GTextField)GetChildAt(26);
|
||||
btn_download_coin = (GButton)GetChildAt(30);
|
||||
btn_continue = (GComponent)GetChildAt(31);
|
||||
t0 = GetTransitionAt(0);
|
||||
t1 = GetTransitionAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f2e8ec1fa20984da4be5e3a898c64831
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,35 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_end
|
||||
{
|
||||
public partial class com_unlockLevelNew : GComponent
|
||||
{
|
||||
public GComponent btn_close;
|
||||
public item_unlockLevel item_0;
|
||||
public item_unlockLevel item_0_re;
|
||||
public item_unlockLevel item_1;
|
||||
public item_unlockLevel item_2;
|
||||
public item_unlockLevel item_3;
|
||||
public const string URL = "ui://zjn4dmwmruxt13";
|
||||
|
||||
public static com_unlockLevelNew CreateInstance()
|
||||
{
|
||||
return (com_unlockLevelNew)UIPackage.CreateObject("Game_puzzle_end", "com_unlockLevelNew");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_close = (GComponent)GetChildAt(1);
|
||||
item_0 = (item_unlockLevel)GetChildAt(2);
|
||||
item_0_re = (item_unlockLevel)GetChildAt(3);
|
||||
item_1 = (item_unlockLevel)GetChildAt(4);
|
||||
item_2 = (item_unlockLevel)GetChildAt(5);
|
||||
item_3 = (item_unlockLevel)GetChildAt(6);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6ca0e550b056d46f6bf4601265e5e56f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Game_puzzle_end
|
||||
{
|
||||
public partial class item_unlockLevel : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public com_pic com_pic;
|
||||
public GButton btn_skip;
|
||||
public btn_unlock btn_unlock;
|
||||
public const string URL = "ui://zjn4dmwmruxt14";
|
||||
|
||||
public static item_unlockLevel CreateInstance()
|
||||
{
|
||||
return (item_unlockLevel)UIPackage.CreateObject("Game_puzzle_end", "item_unlockLevel");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
com_pic = (com_pic)GetChildAt(0);
|
||||
btn_skip = (GButton)GetChildAt(1);
|
||||
btn_unlock = (btn_unlock)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 271b0b82115334817b3f339258e559ec
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 969fa56b81cd3469ca4610f6af177c0d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,24 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public class LG_AIchatBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(btn_watchAd.URL, typeof(btn_watchAd));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_tophead.URL, typeof(btn_tophead));
|
||||
UIObjectFactory.SetPackageItemExtension(com_chatChoose.URL, typeof(com_chatChoose));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_chooseItem.URL, typeof(btn_chooseItem));
|
||||
UIObjectFactory.SetPackageItemExtension(com_chat.URL, typeof(com_chat));
|
||||
UIObjectFactory.SetPackageItemExtension(item_chatText_left.URL, typeof(item_chatText_left));
|
||||
UIObjectFactory.SetPackageItemExtension(item_chatImage.URL, typeof(item_chatImage));
|
||||
UIObjectFactory.SetPackageItemExtension(item_chatText_right.URL, typeof(item_chatText_right));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_send.URL, typeof(btn_send));
|
||||
UIObjectFactory.SetPackageItemExtension(chat_head.URL, typeof(chat_head));
|
||||
UIObjectFactory.SetPackageItemExtension(com_ChatNumber.URL, typeof(com_ChatNumber));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1d46d1d1bb69740f189eff79f41a60da
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,29 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class btn_chooseItem : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public Controller index;
|
||||
public GImage red;
|
||||
public const string URL = "ui://tksc66j2cv0e7";
|
||||
|
||||
public static btn_chooseItem CreateInstance()
|
||||
{
|
||||
return (btn_chooseItem)UIPackage.CreateObject("LG_AIchat", "btn_chooseItem");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
index = GetControllerAt(1);
|
||||
red = (GImage)GetChildAt(10);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 579631e66248f4e96b957767712aae4e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class btn_send : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public const string URL = "ui://tksc66j2cv0eh";
|
||||
|
||||
public static btn_send CreateInstance()
|
||||
{
|
||||
return (btn_send)UIPackage.CreateObject("LG_AIchat", "btn_send");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 50739e91ddad343da8d3a09a676c910b
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,27 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class btn_tophead : GButton
|
||||
{
|
||||
public Controller type;
|
||||
public GLoader top_head;
|
||||
public const string URL = "ui://tksc66j210evn2q";
|
||||
|
||||
public static btn_tophead CreateInstance()
|
||||
{
|
||||
return (btn_tophead)UIPackage.CreateObject("LG_AIchat", "btn_tophead");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
top_head = (GLoader)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 98634217594eb4ebfa311146d6aa1ef3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,29 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class btn_watchAd : GButton
|
||||
{
|
||||
public Controller buy_state;
|
||||
public Controller can_buy;
|
||||
public GTextField btn_text;
|
||||
public const string URL = "ui://tksc66j210evn2o";
|
||||
|
||||
public static btn_watchAd CreateInstance()
|
||||
{
|
||||
return (btn_watchAd)UIPackage.CreateObject("LG_AIchat", "btn_watchAd");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
buy_state = GetControllerAt(0);
|
||||
can_buy = GetControllerAt(1);
|
||||
btn_text = (GTextField)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e0e6f95912aa64d13a557721443ff6e8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class chat_head : GButton
|
||||
{
|
||||
public GLoader load_avatar;
|
||||
public const string URL = "ui://tksc66j2ljeg29";
|
||||
|
||||
public static chat_head CreateInstance()
|
||||
{
|
||||
return (chat_head)UIPackage.CreateObject("LG_AIchat", "chat_head");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
load_avatar = (GLoader)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5ea4086575d7740c9ae529d416c936a5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,37 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class com_ChatNumber : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public GButton btn_close;
|
||||
public GTextField text_coins;
|
||||
public GButton btn_coins;
|
||||
public GTextField text_ads;
|
||||
public GTextField title1;
|
||||
public btn_watchAd btn_watch;
|
||||
public const string URL = "ui://tksc66j2ljeg2b";
|
||||
|
||||
public static com_ChatNumber CreateInstance()
|
||||
{
|
||||
return (com_ChatNumber)UIPackage.CreateObject("LG_AIchat", "com_ChatNumber");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
btn_close = (GButton)GetChildAt(2);
|
||||
text_coins = (GTextField)GetChildAt(3);
|
||||
btn_coins = (GButton)GetChildAt(4);
|
||||
text_ads = (GTextField)GetChildAt(5);
|
||||
title1 = (GTextField)GetChildAt(8);
|
||||
btn_watch = (btn_watchAd)GetChildAt(9);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4318e773cacbe4825add71e62b585f8f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,51 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class com_chat : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public Controller have_free;
|
||||
public GTextField text_name;
|
||||
public GButton btn_gold;
|
||||
public btn_tophead btn_tophead;
|
||||
public GGroup group_;
|
||||
public GList list_;
|
||||
public GTextInput input_message;
|
||||
public btn_send btn_send;
|
||||
public GButton btn_photo;
|
||||
public GButton btn_video;
|
||||
public GButton btn_close;
|
||||
public GTextField text_remainNum;
|
||||
public GTextField text_remainfreeNum;
|
||||
public const string URL = "ui://tksc66j2cv0ea";
|
||||
|
||||
public static com_chat CreateInstance()
|
||||
{
|
||||
return (com_chat)UIPackage.CreateObject("LG_AIchat", "com_chat");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
have_free = GetControllerAt(1);
|
||||
text_name = (GTextField)GetChildAt(2);
|
||||
btn_gold = (GButton)GetChildAt(3);
|
||||
btn_tophead = (btn_tophead)GetChildAt(4);
|
||||
group_ = (GGroup)GetChildAt(5);
|
||||
list_ = (GList)GetChildAt(11);
|
||||
input_message = (GTextInput)GetChildAt(12);
|
||||
btn_send = (btn_send)GetChildAt(13);
|
||||
btn_photo = (GButton)GetChildAt(14);
|
||||
btn_video = (GButton)GetChildAt(15);
|
||||
btn_close = (GButton)GetChildAt(16);
|
||||
text_remainNum = (GTextField)GetChildAt(18);
|
||||
text_remainfreeNum = (GTextField)GetChildAt(19);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b27671ca9c1e1401092b12e4e95a02aa
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,35 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class com_chatChoose : GComponent
|
||||
{
|
||||
public btn_chooseItem btn_0;
|
||||
public btn_chooseItem btn_1;
|
||||
public btn_chooseItem btn_2;
|
||||
public GButton btn_gold;
|
||||
public GTextField text_describe;
|
||||
public GButton btn_close;
|
||||
public const string URL = "ui://tksc66j2cv0e6";
|
||||
|
||||
public static com_chatChoose CreateInstance()
|
||||
{
|
||||
return (com_chatChoose)UIPackage.CreateObject("LG_AIchat", "com_chatChoose");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_0 = (btn_chooseItem)GetChildAt(1);
|
||||
btn_1 = (btn_chooseItem)GetChildAt(2);
|
||||
btn_2 = (btn_chooseItem)GetChildAt(3);
|
||||
btn_gold = (GButton)GetChildAt(4);
|
||||
text_describe = (GTextField)GetChildAt(6);
|
||||
btn_close = (GButton)GetChildAt(7);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 851085be91e4948819df3e8ed465b93e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class item_chatImage : GComponent
|
||||
{
|
||||
public GButton btn_unlock;
|
||||
public const string URL = "ui://tksc66j2cv0ee";
|
||||
|
||||
public static item_chatImage CreateInstance()
|
||||
{
|
||||
return (item_chatImage)UIPackage.CreateObject("LG_AIchat", "item_chatImage");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_unlock = (GButton)GetChildAt(8);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4efbdd8a460e94efc8491cade9d2031d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class item_chatText_left : GComponent
|
||||
{
|
||||
public Controller type;
|
||||
public GTextField text_content;
|
||||
public GLoader head;
|
||||
public Transition t0;
|
||||
public const string URL = "ui://tksc66j2cv0eb";
|
||||
|
||||
public static item_chatText_left CreateInstance()
|
||||
{
|
||||
return (item_chatText_left)UIPackage.CreateObject("LG_AIchat", "item_chatText_left");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
text_content = (GTextField)GetChildAt(5);
|
||||
head = (GLoader)GetChildAt(6);
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 952f68c8334bb4e7894c835c93e63ff0
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,27 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_AIchat
|
||||
{
|
||||
public partial class item_chatText_right : GComponent
|
||||
{
|
||||
public GTextField text_content;
|
||||
public chat_head btn_head;
|
||||
public const string URL = "ui://tksc66j2cv0eg";
|
||||
|
||||
public static item_chatText_right CreateInstance()
|
||||
{
|
||||
return (item_chatText_right)UIPackage.CreateObject("LG_AIchat", "item_chatText_right");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_content = (GTextField)GetChildAt(5);
|
||||
btn_head = (chat_head)GetChildAt(6);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ec6777ba4f3b44c3e94558f81fce45d5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 90e4b10c352474881a1e8e8270309bf8
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,32 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.LG_Common
|
||||
{
|
||||
public class LG_CommonBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(progress_end.URL, typeof(progress_end));
|
||||
UIObjectFactory.SetPackageItemExtension(com_loaderMask.URL, typeof(com_loaderMask));
|
||||
UIObjectFactory.SetPackageItemExtension(com_loaderMask_circlle.URL, typeof(com_loaderMask_circlle));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_albums.URL, typeof(btn_albums));
|
||||
UIObjectFactory.SetPackageItemExtension(progress_live.URL, typeof(progress_live));
|
||||
UIObjectFactory.SetPackageItemExtension(com_loaderMask_circlle_new.URL, typeof(com_loaderMask_circlle_new));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_unlock_1.URL, typeof(btn_unlock_1));
|
||||
UIObjectFactory.SetPackageItemExtension(com_loaderMask_circlle_new_.URL, typeof(com_loaderMask_circlle_new_));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_claim.URL, typeof(btn_claim));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_green.URL, typeof(btn_green));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_claim_1.URL, typeof(btn_claim_1));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_claim_2.URL, typeof(btn_claim_2));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_secret.URL, typeof(btn_secret));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_live.URL, typeof(btn_live));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_vip.URL, typeof(btn_vip));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_task.URL, typeof(btn_task));
|
||||
UIObjectFactory.SetPackageItemExtension(wheel.URL, typeof(wheel));
|
||||
UIObjectFactory.SetPackageItemExtension(item_wheel.URL, typeof(item_wheel));
|
||||
UIObjectFactory.SetPackageItemExtension(wheel_.URL, typeof(wheel_));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8a7104090d3ce4f6aa258f4b7c35d5be
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.LG_Common
|
||||
{
|
||||
public partial class btn_albums : GButton
|
||||
{
|
||||
public Transition t0;
|
||||
public const string URL = "ui://c9mmg3dxccp2cc";
|
||||
|
||||
public static btn_albums CreateInstance()
|
||||
{
|
||||
return (btn_albums)UIPackage.CreateObject("LG_Common", "btn_albums");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1c768f6f602313c43ad7a6674279591a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user