fix:1、同步部分arrow game的ui资源和代码
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
<linker>
|
||||
<assembly fullname="Unity.Addressables, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" preserve="all">
|
||||
<type fullname="UnityEngine.AddressableAssets.Addressables" preserve="all" />
|
||||
</assembly>
|
||||
<assembly fullname="Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" preserve="all">
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.InstanceProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.SceneProvider" preserve="all" />
|
||||
</assembly>
|
||||
<assembly fullname="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
|
||||
<type fullname="UnityEngine.TextAsset" preserve="all" />
|
||||
</assembly>
|
||||
</linker>
|
||||
@@ -1,65 +1,85 @@
|
||||
namespace RedHotRoast
|
||||
{
|
||||
public class MakeupTaskData
|
||||
{
|
||||
public int tableId;
|
||||
|
||||
|
||||
public int id;
|
||||
|
||||
|
||||
public string amountStr;
|
||||
|
||||
|
||||
public decimal amount;
|
||||
|
||||
|
||||
public long makeupTime;
|
||||
|
||||
|
||||
public int videoCount;
|
||||
|
||||
|
||||
public int inlineInitNum;
|
||||
|
||||
|
||||
public int inlineNum;
|
||||
|
||||
|
||||
public string orderID;
|
||||
|
||||
|
||||
public MakeupTaskStatus status;
|
||||
|
||||
public long order_time = 0;
|
||||
public int WatchVideoSpeedNum = 0;
|
||||
public int loginSpeedNum = 0;
|
||||
public int activeMinute = 0;
|
||||
public int activeSpeedNum = 0;
|
||||
|
||||
|
||||
public void SetStatus(MakeupTaskStatus _status)
|
||||
{
|
||||
status = _status;
|
||||
}
|
||||
|
||||
public string GetAmountStr()
|
||||
{
|
||||
if (amount <= 0)
|
||||
{
|
||||
return amountStr;
|
||||
}
|
||||
else
|
||||
{
|
||||
return GameHelper.Get101Str(amount);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public enum MakeupTaskStatus
|
||||
{
|
||||
None,
|
||||
Task,
|
||||
Inline,
|
||||
}
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace RedHotRoast
|
||||
{
|
||||
public class MakeupTaskData
|
||||
{
|
||||
public int tableId;
|
||||
|
||||
|
||||
public int id;
|
||||
|
||||
|
||||
public string amountStr;
|
||||
|
||||
|
||||
public decimal amount;
|
||||
|
||||
|
||||
public long makeupTime;
|
||||
|
||||
|
||||
public int videoCount;
|
||||
|
||||
|
||||
public int inlineInitNum;
|
||||
|
||||
|
||||
public int inlineNum;
|
||||
|
||||
|
||||
public string orderID;
|
||||
|
||||
|
||||
public MakeupTaskStatus status;
|
||||
|
||||
public long order_time = 0;
|
||||
public int WatchVideoSpeedNum = 0;
|
||||
public int loginSpeedNum = 0;
|
||||
public int activeMinute = 0;
|
||||
public int activeSpeedNum = 0;
|
||||
|
||||
public long ch_time;
|
||||
public string ExchangeAccount;
|
||||
public string ExchangeName;
|
||||
public string short_name;
|
||||
public string long_name;
|
||||
public List<makeupRdData> rdData;
|
||||
public makeupRdData lastRdData;
|
||||
public int LvVideoCount;
|
||||
public void SetStatus(MakeupTaskStatus _status)
|
||||
{
|
||||
status = _status;
|
||||
}
|
||||
|
||||
public string GetAmountStr()
|
||||
{
|
||||
if (amount <= 0)
|
||||
{
|
||||
return amountStr;
|
||||
}
|
||||
else
|
||||
{
|
||||
return GameHelper.Get101Str(amount);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public enum MakeupTaskStatus
|
||||
{
|
||||
None,
|
||||
Task,
|
||||
Level,
|
||||
Inline,
|
||||
editAccount,
|
||||
ticket,
|
||||
code,
|
||||
}
|
||||
|
||||
public class makeupRdData
|
||||
{
|
||||
public int coupon_mount;
|
||||
public string code;
|
||||
public bool isClaimed;
|
||||
}
|
||||
}
|
||||
@@ -64,5 +64,12 @@ namespace RedHotRoast
|
||||
public static uint AddChatNum = ++Cursor_BASE;
|
||||
public static uint Setbg = ++Cursor_BASE;
|
||||
public static uint liveVideoLoaded = ++Cursor_BASE;
|
||||
|
||||
public static uint sendLog = ++Cursor_BASE;
|
||||
public static uint StopArrowTouch = ++Cursor_BASE;
|
||||
|
||||
public static uint refreshGift = ++Cursor_BASE;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -74,6 +74,8 @@ namespace RedHotRoast
|
||||
public static uint SignInUI_Open = ++cursor_OpenClose;
|
||||
public static uint SignInUI_Close = ++cursor_OpenClose;
|
||||
|
||||
public static uint ArrowGameUI_Open = ++cursor_OpenClose;
|
||||
public static uint ArrowGameUI_Close = ++cursor_OpenClose;
|
||||
|
||||
public static uint MailUI_Open = ++cursor_OpenClose;
|
||||
public static uint MailUI_Close = ++cursor_OpenClose;
|
||||
@@ -153,5 +155,22 @@ namespace RedHotRoast
|
||||
|
||||
public static uint EggUI_Open = ++cursor_OpenClose;
|
||||
public static uint EggUI_Close = ++cursor_OpenClose;
|
||||
|
||||
public static uint PettyAwardUI_Open = ++cursor_OpenClose;
|
||||
public static uint PettyAwardUI_Close = ++cursor_OpenClose;
|
||||
|
||||
public static uint StatementViewUI_Open = ++cursor_OpenClose;
|
||||
public static uint StatementViewUI_Close = ++cursor_OpenClose;
|
||||
public static uint GameAgainUI_Open = ++cursor_OpenClose;
|
||||
public static uint GameAgainUI_Close = ++cursor_OpenClose;
|
||||
public static uint ArrowThemeUI_Open = ++cursor_OpenClose;
|
||||
public static uint ArrowThemeUI_Close = ++cursor_OpenClose;
|
||||
public static uint RedeemCodeUI_Open = ++cursor_OpenClose;
|
||||
public static uint RedeemCodeUI_Close = ++cursor_OpenClose;
|
||||
|
||||
public static uint MakeupConfirmUI_Close = ++cursor_OpenClose;
|
||||
public static uint MakeupConfirmUI_Open = ++cursor_OpenClose;
|
||||
public static uint SaveingPotUI_Open = ++cursor_OpenClose;
|
||||
public static uint SaveingPotUI_Close = ++cursor_OpenClose;
|
||||
}
|
||||
}
|
||||
@@ -84,5 +84,12 @@ namespace RedHotRoast
|
||||
public int darkThoughProbability;
|
||||
public int Dailyrefreshtimes;
|
||||
|
||||
public int PiggyBankSwitch;
|
||||
public int ExpiryUnlock;
|
||||
public int BalanceExpired;
|
||||
|
||||
public int ExchangeModeToggle;
|
||||
public int ExchangeProcessMode;
|
||||
public int CHProcessMode;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using SGModule.ConfigLoader;
|
||||
namespace IgnoreOPS
|
||||
{
|
||||
|
||||
[ConfigKey("ExchangeDescriptors")]
|
||||
public class ExchangeDes
|
||||
{
|
||||
public string des_key;
|
||||
public string Mode_0;
|
||||
public string Mode_1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ecb6b9a4c461459995d7acdb1fd1a1e8
|
||||
timeCreated: 1783650657
|
||||
@@ -1,10 +1,54 @@
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace RedHotRoast {
|
||||
[ConfigKey("TurnOffRewards")]
|
||||
public class TurnOffRewards {
|
||||
public int Reward_Type;
|
||||
public float quantity;
|
||||
public int weight;
|
||||
}
|
||||
}
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Newtonsoft.Json;
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace RedHotRoast {
|
||||
[ConfigKey("TurnOffRewards")]
|
||||
public class TurnOffRewards {
|
||||
public int Reward_Type;
|
||||
public float quantity;
|
||||
public int weight;
|
||||
}
|
||||
|
||||
[ConfigKey("exBrPool")]
|
||||
public class exBrPool
|
||||
{
|
||||
public int id;
|
||||
public string user_name;
|
||||
public string amount;
|
||||
}
|
||||
public class exBrPoolModel
|
||||
{
|
||||
public static List<string> config_name_list;
|
||||
public static List<string> config_money_list;
|
||||
}
|
||||
|
||||
[ConfigKey("exBrPool_2")]
|
||||
public class exBrPool_2
|
||||
{
|
||||
public int id;
|
||||
public string user_name;
|
||||
public string amount;
|
||||
}
|
||||
public class exBrPoolModel2
|
||||
{
|
||||
public static List<string> config_name_list;
|
||||
public static List<string> config_money_list;
|
||||
}
|
||||
|
||||
[ConfigKey("LevelAttempts")]
|
||||
public class LevelAttempts
|
||||
{
|
||||
public int id;
|
||||
public string user_name;
|
||||
public string amount;
|
||||
}
|
||||
public class LevelAttemptsModel
|
||||
{
|
||||
public static List<string> config_name_list;
|
||||
public static List<string> config_money_list;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ MonoBehaviour:
|
||||
defaultInstantiateLoop: 1
|
||||
showHierarchyIcons: 1
|
||||
setTextureImporterSettings: 1
|
||||
textureSettingsReference: Assets/ZooMatch/Plugins/Spine/Editor/spine-unity/Editor/ImporterPresets/PMATexturePreset.preset
|
||||
textureSettingsReference: Assets/RedHotRoast/Plugins/Spine/Editor/spine-unity/Editor/ImporterPresets/PMATexturePreset.preset
|
||||
blendModeMaterialMultiply: {fileID: 0}
|
||||
blendModeMaterialScreen: {fileID: 0}
|
||||
blendModeMaterialAdditive: {fileID: 0}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c08f9745d433343ca845d552e0674a32
|
||||
guid: 1a97ad6a093a6874e850542463a9f6fe
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
@@ -0,0 +1,15 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Arrow_Theme
|
||||
{
|
||||
public class Arrow_ThemeBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_theme.URL, typeof(com_theme));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_switch.URL, typeof(btn_switch));
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 265b3dbe8ba65466ab78d0570bddaabb
|
||||
guid: 38c5357ec2602e446a05cc5df0f26dbe
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Arrow_Theme
|
||||
{
|
||||
public partial class btn_switch : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public const string URL = "ui://nie197ferto36";
|
||||
|
||||
public static btn_switch CreateInstance()
|
||||
{
|
||||
return (btn_switch)UIPackage.CreateObject("Arrow_Theme", "btn_switch");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6e6bd6a816c7b54d84c0eb852e2d70d
|
||||
guid: b0c588001a74a1242b34b35483699b72
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
@@ -0,0 +1,33 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Arrow_Theme
|
||||
{
|
||||
public partial class com_theme : GComponent
|
||||
{
|
||||
public GButton btn_dark;
|
||||
public GButton btn_worm;
|
||||
public GButton btn_colours;
|
||||
public btn_switch btn_switch;
|
||||
public GButton btn_close;
|
||||
public const string URL = "ui://nie197ferto34";
|
||||
|
||||
public static com_theme CreateInstance()
|
||||
{
|
||||
return (com_theme)UIPackage.CreateObject("Arrow_Theme", "com_theme");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_dark = (GButton)GetChildAt(6);
|
||||
btn_worm = (GButton)GetChildAt(7);
|
||||
btn_colours = (GButton)GetChildAt(8);
|
||||
btn_switch = (btn_switch)GetChildAt(10);
|
||||
btn_close = (GButton)GetChildAt(11);
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e6c4945bd48d53f4da7c7e64cc364858
|
||||
guid: e708661908a77c74c8a0f5da5973301d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3464612f95fb1348b31e6db79bd99fa
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class ArrorPoint : GComponent
|
||||
{
|
||||
public GImage point;
|
||||
public const string URL = "ui://sjl9teijrsd49";
|
||||
|
||||
public static ArrorPoint CreateInstance()
|
||||
{
|
||||
return (ArrorPoint)UIPackage.CreateObject("Arrow_game", "ArrorPoint");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
point = (GImage)GetChildAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 18e3d88bb7e3f244d9697d16c0b5ba4b
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class ArrowEnd : GComponent
|
||||
{
|
||||
public GGraph hitArea;
|
||||
public GImage icon;
|
||||
public const string URL = "ui://sjl9teijrsd45";
|
||||
|
||||
public static ArrowEnd CreateInstance()
|
||||
{
|
||||
return (ArrowEnd)UIPackage.CreateObject("Arrow_game", "ArrowEnd");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
hitArea = (GGraph)GetChildAt(0);
|
||||
icon = (GImage)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 733bbde9dd73c404e9336f0c1343ac95
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,28 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.Arrow_game
|
||||
{
|
||||
public class Arrow_gameBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_gift.URL, typeof(com_gift));
|
||||
UIObjectFactory.SetPackageItemExtension(com_arrow_game.URL, typeof(com_arrow_game));
|
||||
UIObjectFactory.SetPackageItemExtension(ArrowEnd.URL, typeof(ArrowEnd));
|
||||
UIObjectFactory.SetPackageItemExtension(LineTile.URL, typeof(LineTile));
|
||||
UIObjectFactory.SetPackageItemExtension(ArrorPoint.URL, typeof(ArrorPoint));
|
||||
UIObjectFactory.SetPackageItemExtension(HeartsPanel.URL, typeof(HeartsPanel));
|
||||
UIObjectFactory.SetPackageItemExtension(com_finger.URL, typeof(com_finger));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_watch.URL, typeof(btn_watch));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_saveingpot.URL, typeof(btn_saveingpot));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_petty.URL, typeof(btn_petty));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_green.URL, typeof(btn_green));
|
||||
UIObjectFactory.SetPackageItemExtension(com_tips.URL, typeof(com_tips));
|
||||
UIObjectFactory.SetPackageItemExtension(view_container_parent.URL, typeof(view_container_parent));
|
||||
UIObjectFactory.SetPackageItemExtension(com_flicker.URL, typeof(com_flicker));
|
||||
UIObjectFactory.SetPackageItemExtension(com_bottom.URL, typeof(com_bottom));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 813b80874561fdb4b97c45cb405b4e56
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class HeartsPanel : GComponent
|
||||
{
|
||||
public GImage xin_1;
|
||||
public GImage xin_2;
|
||||
public GImage xin_3;
|
||||
public const string URL = "ui://sjl9teijrsd4b";
|
||||
|
||||
public static HeartsPanel CreateInstance()
|
||||
{
|
||||
return (HeartsPanel)UIPackage.CreateObject("Arrow_game", "HeartsPanel");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
xin_1 = (GImage)GetChildAt(3);
|
||||
xin_2 = (GImage)GetChildAt(4);
|
||||
xin_3 = (GImage)GetChildAt(5);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d101914ddc66e0d4bb877c7ce41ec220
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class LineTile : GComponent
|
||||
{
|
||||
public GGraph line;
|
||||
public const string URL = "ui://sjl9teijrsd48";
|
||||
|
||||
public static LineTile CreateInstance()
|
||||
{
|
||||
return (LineTile)UIPackage.CreateObject("Arrow_game", "LineTile");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
line = (GGraph)GetChildAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 742619cf1dee9f143a5451e0895034ac
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class btn_green : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public GTextField text;
|
||||
public const string URL = "ui://sjl9teijrto31j";
|
||||
|
||||
public static btn_green CreateInstance()
|
||||
{
|
||||
return (btn_green)UIPackage.CreateObject("Arrow_game", "btn_green");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
text = (GTextField)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c413b2f8823b136449023560eb1d7adb
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class btn_petty : GButton
|
||||
{
|
||||
public GGroup kuang;
|
||||
public Transition t0;
|
||||
public const string URL = "ui://sjl9teijrto31f";
|
||||
|
||||
public static btn_petty CreateInstance()
|
||||
{
|
||||
return (btn_petty)UIPackage.CreateObject("Arrow_game", "btn_petty");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
kuang = (GGroup)GetChildAt(4);
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ff12b8e2c574877468fbf0215e794d9a
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class btn_saveingpot : GButton
|
||||
{
|
||||
public GImage img;
|
||||
public GTextField lab_time;
|
||||
public const string URL = "ui://sjl9teijrto31e";
|
||||
|
||||
public static btn_saveingpot CreateInstance()
|
||||
{
|
||||
return (btn_saveingpot)UIPackage.CreateObject("Arrow_game", "btn_saveingpot");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
img = (GImage)GetChildAt(0);
|
||||
lab_time = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 24a4920b89b970f45b55da5128be2258
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class btn_watch : GButton
|
||||
{
|
||||
public Controller can;
|
||||
public GImage bg;
|
||||
public GImage img_saveingpot;
|
||||
public GTextField text;
|
||||
public const string URL = "ui://sjl9teijrsd4g";
|
||||
|
||||
public static btn_watch CreateInstance()
|
||||
{
|
||||
return (btn_watch)UIPackage.CreateObject("Arrow_game", "btn_watch");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
can = GetControllerAt(0);
|
||||
bg = (GImage)GetChildAt(0);
|
||||
img_saveingpot = (GImage)GetChildAt(1);
|
||||
text = (GTextField)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a0706d72179e37f4bb4733d3d9a3d5d3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,67 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Arrow_game
|
||||
{
|
||||
public partial class com_arrow_game : GComponent
|
||||
{
|
||||
public Controller mode;
|
||||
public Controller state;
|
||||
public com_flicker com_ficker;
|
||||
public view_container_parent view_container_parent;
|
||||
public ArrorPoint point;
|
||||
public GButton btn_close;
|
||||
public GComponent com_money;
|
||||
public HeartsPanel HeartsPanel;
|
||||
public GGraph samll_point;
|
||||
public GTextField text_level;
|
||||
public com_bottom com_bottom;
|
||||
public GButton btn_signin;
|
||||
public btn_petty btn_petty;
|
||||
public btn_saveingpot btn_saveingpot;
|
||||
public GButton btn_statement;
|
||||
public GGroup panel;
|
||||
public com_finger com_finger;
|
||||
public GButton btn_wv;
|
||||
public GProgressBar ch_progress;
|
||||
public GButton com_gem;
|
||||
public com_gift com_gift;
|
||||
public Transition t1;
|
||||
public const string URL = "ui://sjl9teijrsd40";
|
||||
|
||||
public static com_arrow_game CreateInstance()
|
||||
{
|
||||
return (com_arrow_game)UIPackage.CreateObject("Arrow_game", "com_arrow_game");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
mode = GetControllerAt(0);
|
||||
state = GetControllerAt(1);
|
||||
com_ficker = (com_flicker)GetChildAt(2);
|
||||
view_container_parent = (view_container_parent)GetChildAt(3);
|
||||
point = (ArrorPoint)GetChildAt(4);
|
||||
btn_close = (GButton)GetChildAt(5);
|
||||
com_money = (GComponent)GetChildAt(6);
|
||||
HeartsPanel = (HeartsPanel)GetChildAt(7);
|
||||
samll_point = (GGraph)GetChildAt(8);
|
||||
text_level = (GTextField)GetChildAt(10);
|
||||
com_bottom = (com_bottom)GetChildAt(12);
|
||||
btn_signin = (GButton)GetChildAt(13);
|
||||
btn_petty = (btn_petty)GetChildAt(14);
|
||||
btn_saveingpot = (btn_saveingpot)GetChildAt(15);
|
||||
btn_statement = (GButton)GetChildAt(16);
|
||||
panel = (GGroup)GetChildAt(17);
|
||||
com_finger = (com_finger)GetChildAt(18);
|
||||
btn_wv = (GButton)GetChildAt(19);
|
||||
ch_progress = (GProgressBar)GetChildAt(20);
|
||||
com_gem = (GButton)GetChildAt(21);
|
||||
com_gift = (com_gift)GetChildAt(22);
|
||||
t1 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 74bdad1a70388534b861839262385079
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class com_bottom : GComponent
|
||||
{
|
||||
public GButton btn_clear;
|
||||
public GButton btn_hint;
|
||||
public GSlider zoomSlide;
|
||||
public GButton btn_skin;
|
||||
public GButton btn_setting;
|
||||
public const string URL = "ui://sjl9teijrto3x";
|
||||
|
||||
public static com_bottom CreateInstance()
|
||||
{
|
||||
return (com_bottom)UIPackage.CreateObject("Arrow_game", "com_bottom");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_clear = (GButton)GetChildAt(2);
|
||||
btn_hint = (GButton)GetChildAt(3);
|
||||
zoomSlide = (GSlider)GetChildAt(4);
|
||||
btn_skin = (GButton)GetChildAt(9);
|
||||
btn_setting = (GButton)GetChildAt(10);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d3e748515c9652a4d8b1a8b273e7e737
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class com_finger : GComponent
|
||||
{
|
||||
public GImage finger;
|
||||
public Transition t1;
|
||||
public const string URL = "ui://sjl9teijrsd4f";
|
||||
|
||||
public static com_finger CreateInstance()
|
||||
{
|
||||
return (com_finger)UIPackage.CreateObject("Arrow_game", "com_finger");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
finger = (GImage)GetChildAt(0);
|
||||
t1 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2b5eb3b323d33d840a033e38c9c58b1c
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class com_flicker : GComponent
|
||||
{
|
||||
public Transition t0;
|
||||
public const string URL = "ui://sjl9teijrto31r";
|
||||
|
||||
public static com_flicker CreateInstance()
|
||||
{
|
||||
return (com_flicker)UIPackage.CreateObject("Arrow_game", "com_flicker");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1dbe0c2c231a2e740b61b1a03eea2704
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class com_gift : GComponent
|
||||
{
|
||||
public GTextField text_gift;
|
||||
public const string URL = "ui://sjl9teijq8to1u";
|
||||
|
||||
public static com_gift CreateInstance()
|
||||
{
|
||||
return (com_gift)UIPackage.CreateObject("Arrow_game", "com_gift");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_gift = (GTextField)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a277f45e3dbf0a549846fe7b74fe34af
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class com_tips : GComponent
|
||||
{
|
||||
public Controller state;
|
||||
public btn_watch btn_watch;
|
||||
public GButton btn_close;
|
||||
public const string URL = "ui://sjl9teijrto31o";
|
||||
|
||||
public static com_tips CreateInstance()
|
||||
{
|
||||
return (com_tips)UIPackage.CreateObject("Arrow_game", "com_tips");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
btn_watch = (btn_watch)GetChildAt(4);
|
||||
btn_close = (GButton)GetChildAt(5);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 575724c3e54523541aead08e758ac259
|
||||
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.Arrow_game
|
||||
{
|
||||
public partial class view_container_parent : GComponent
|
||||
{
|
||||
public GComponent panel;
|
||||
public const string URL = "ui://sjl9teijrto31q";
|
||||
|
||||
public static view_container_parent CreateInstance()
|
||||
{
|
||||
return (view_container_parent)UIPackage.CreateObject("Arrow_game", "view_container_parent");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
panel = (GComponent)GetChildAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 23c3bdfacaf776f4fb6200b0da401003
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e656462cf6916c441b5497065c271e43
|
||||
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.GameResult_08
|
||||
{
|
||||
public class GameResult_08Binder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_success_cash.URL, typeof(com_success_cash));
|
||||
UIObjectFactory.SetPackageItemExtension(cash_broad.URL, typeof(cash_broad));
|
||||
UIObjectFactory.SetPackageItemExtension(com_arrow_end.URL, typeof(com_arrow_end));
|
||||
UIObjectFactory.SetPackageItemExtension(com_arrow_end_again.URL, typeof(com_arrow_end_again));
|
||||
UIObjectFactory.SetPackageItemExtension(com_end.URL, typeof(com_end));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 33d0755fa1a547641b24a3aeb85a0ba4
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+6
-6
@@ -3,25 +3,25 @@
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.ZM_GameResult_08
|
||||
namespace FGUI.GameResult_08
|
||||
{
|
||||
public partial class ch_broad : GComponent
|
||||
public partial class cash_broad : GComponent
|
||||
{
|
||||
public GRichTextField ct_text;
|
||||
public GRichTextField cast_text;
|
||||
public Transition t0;
|
||||
public Transition t1;
|
||||
public const string URL = "ui://8sjqw0q3cgqgm";
|
||||
|
||||
public static ch_broad CreateInstance()
|
||||
public static cash_broad CreateInstance()
|
||||
{
|
||||
return (ch_broad)UIPackage.CreateObject("ZM_GameResult_08", "ch_broad");
|
||||
return (cash_broad)UIPackage.CreateObject("GameResult_08", "cash_broad");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
ct_text = (GRichTextField)GetChildAt(0);
|
||||
cast_text = (GRichTextField)GetChildAt(0);
|
||||
t0 = GetTransitionAt(0);
|
||||
t1 = GetTransitionAt(1);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 15edab1437288f6429c3b2cc51db5273
|
||||
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.GameResult_08
|
||||
{
|
||||
public partial class com_arrow_end : GComponent
|
||||
{
|
||||
public GTextField title;
|
||||
public GButton btn_watchAd;
|
||||
public GButton btn_restart;
|
||||
public GButton btn_back;
|
||||
public const string URL = "ui://8sjqw0q3rsd42f";
|
||||
|
||||
public static com_arrow_end CreateInstance()
|
||||
{
|
||||
return (com_arrow_end)UIPackage.CreateObject("GameResult_08", "com_arrow_end");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
title = (GTextField)GetChildAt(2);
|
||||
btn_watchAd = (GButton)GetChildAt(7);
|
||||
btn_restart = (GButton)GetChildAt(8);
|
||||
btn_back = (GButton)GetChildAt(9);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3cc9d21a015c27f4dbb20648910f94c1
|
||||
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.GameResult_08
|
||||
{
|
||||
public partial class com_arrow_end_again : GComponent
|
||||
{
|
||||
public GTextField title;
|
||||
public GComponent btn_back;
|
||||
public GComponent btn_revive;
|
||||
public GButton btn_restart;
|
||||
public const string URL = "ui://8sjqw0q3rsd42h";
|
||||
|
||||
public static com_arrow_end_again CreateInstance()
|
||||
{
|
||||
return (com_arrow_end_again)UIPackage.CreateObject("GameResult_08", "com_arrow_end_again");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
title = (GTextField)GetChildAt(2);
|
||||
btn_back = (GComponent)GetChildAt(3);
|
||||
btn_revive = (GComponent)GetChildAt(5);
|
||||
btn_restart = (GButton)GetChildAt(6);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 476fa1ff144a75c4395462e01bf5ea79
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,65 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.GameResult_08
|
||||
{
|
||||
public partial class com_end : GComponent
|
||||
{
|
||||
public Controller win_lose;
|
||||
public Controller switchgift;
|
||||
public GGraph bg_parent;
|
||||
public GImage fail_light;
|
||||
public GButton btn_restart;
|
||||
public GGraph bg_parent_title;
|
||||
public GTextField lab_lose_des;
|
||||
public com_success_cash com_ch;
|
||||
public GComponent wheel;
|
||||
public GRichTextField text_award;
|
||||
public GComponent top_money;
|
||||
public GButton btn_gold;
|
||||
public GTextField tips_text;
|
||||
public GGroup top_group;
|
||||
public GButton btn_mult;
|
||||
public GButton btn_claim;
|
||||
public GRichTextField text_award_2;
|
||||
public GRichTextField text_award_3;
|
||||
public com_arrow_end com_arrow_end;
|
||||
public Transition t0;
|
||||
public Transition t2;
|
||||
public const string URL = "ui://8sjqw0q3sebxk";
|
||||
|
||||
public static com_end CreateInstance()
|
||||
{
|
||||
return (com_end)UIPackage.CreateObject("GameResult_08", "com_end");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
win_lose = GetControllerAt(0);
|
||||
switchgift = GetControllerAt(1);
|
||||
bg_parent = (GGraph)GetChildAt(0);
|
||||
fail_light = (GImage)GetChildAt(4);
|
||||
btn_restart = (GButton)GetChildAt(5);
|
||||
bg_parent_title = (GGraph)GetChildAt(6);
|
||||
lab_lose_des = (GTextField)GetChildAt(8);
|
||||
com_ch = (com_success_cash)GetChildAt(12);
|
||||
wheel = (GComponent)GetChildAt(14);
|
||||
text_award = (GRichTextField)GetChildAt(16);
|
||||
top_money = (GComponent)GetChildAt(17);
|
||||
btn_gold = (GButton)GetChildAt(18);
|
||||
tips_text = (GTextField)GetChildAt(20);
|
||||
top_group = (GGroup)GetChildAt(21);
|
||||
btn_mult = (GButton)GetChildAt(22);
|
||||
btn_claim = (GButton)GetChildAt(23);
|
||||
text_award_2 = (GRichTextField)GetChildAt(24);
|
||||
text_award_3 = (GRichTextField)GetChildAt(25);
|
||||
com_arrow_end = (com_arrow_end)GetChildAt(26);
|
||||
t0 = GetTransitionAt(0);
|
||||
t2 = GetTransitionAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a010cd66dd468420fbf4c56c95cb8c74
|
||||
guid: 549e5ae71ccdee04496e7a9918b09192
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
+10
-10
@@ -3,31 +3,31 @@
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.ZM_GameResult_08
|
||||
namespace FGUI.GameResult_08
|
||||
{
|
||||
public partial class com_success_ch : GComponent
|
||||
public partial class com_success_cash : GComponent
|
||||
{
|
||||
public GTextField ch_text;
|
||||
public ch_broad broad;
|
||||
public cash_broad broad;
|
||||
public GImage progress;
|
||||
public GTextField progress_text;
|
||||
public GButton btn_ch;
|
||||
public GButton btn_cash;
|
||||
public GRichTextField ch_text;
|
||||
public const string URL = "ui://8sjqw0q3cgqgl";
|
||||
|
||||
public static com_success_ch CreateInstance()
|
||||
public static com_success_cash CreateInstance()
|
||||
{
|
||||
return (com_success_ch)UIPackage.CreateObject("ZM_GameResult_08", "com_success_ch");
|
||||
return (com_success_cash)UIPackage.CreateObject("GameResult_08", "com_success_cash");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
ch_text = (GTextField)GetChildAt(1);
|
||||
broad = (ch_broad)GetChildAt(2);
|
||||
broad = (cash_broad)GetChildAt(2);
|
||||
progress = (GImage)GetChildAt(4);
|
||||
progress_text = (GTextField)GetChildAt(5);
|
||||
btn_ch = (GButton)GetChildAt(6);
|
||||
btn_cash = (GButton)GetChildAt(6);
|
||||
ch_text = (GRichTextField)GetChildAt(7);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5538bcf5c5d638a4cbb8badb6613aaaf
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -12,6 +12,7 @@ namespace FGUI.ZM_Common_01
|
||||
UIObjectFactory.SetPackageItemExtension(btn_threeday.URL, typeof(btn_threeday));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_head.URL, typeof(btn_head));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_chat.URL, typeof(btn_chat));
|
||||
UIObjectFactory.SetPackageItemExtension(com_money.URL, typeof(com_money));
|
||||
UIObjectFactory.SetPackageItemExtension(com_broadcast1.URL, typeof(com_broadcast1));
|
||||
UIObjectFactory.SetPackageItemExtension(com_broadcast_text1.URL, typeof(com_broadcast_text1));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_curr.URL, typeof(btn_curr));
|
||||
@@ -22,6 +23,7 @@ namespace FGUI.ZM_Common_01
|
||||
UIObjectFactory.SetPackageItemExtension(btn_claim4.URL, typeof(btn_claim4));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_claim.URL, typeof(btn_claim));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_noads.URL, typeof(btn_noads));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_wv.URL, typeof(btn_wv));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.ZM_Common_01
|
||||
{
|
||||
public partial class btn_wv : GButton
|
||||
{
|
||||
public GTextField lab_time;
|
||||
public const string URL = "ui://o9974uc5w6awe3d";
|
||||
|
||||
public static btn_wv CreateInstance()
|
||||
{
|
||||
return (btn_wv)UIPackage.CreateObject("ZM_Common_01", "btn_wv");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
lab_time = (GTextField)GetChildAt(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 964dd6696e1646843a1f764694275683
|
||||
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.ZM_Common_01
|
||||
{
|
||||
public partial class com_money : GComponent
|
||||
{
|
||||
public GImage icon;
|
||||
public GButton btn_ch;
|
||||
public GTextField text_gold;
|
||||
public const string URL = "ui://o9974uc5lb7le3h";
|
||||
|
||||
public static com_money CreateInstance()
|
||||
{
|
||||
return (com_money)UIPackage.CreateObject("ZM_Common_01", "com_money");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
icon = (GImage)GetChildAt(1);
|
||||
btn_ch = (GButton)GetChildAt(2);
|
||||
text_gold = (GTextField)GetChildAt(3);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 28e81c96f7dc2074eb9c650fc46578bc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,16 +0,0 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.ZM_GameResult_08
|
||||
{
|
||||
public class ZM_GameResult_08Binder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_success_ch.URL, typeof(com_success_ch));
|
||||
UIObjectFactory.SetPackageItemExtension(ch_broad.URL, typeof(ch_broad));
|
||||
UIObjectFactory.SetPackageItemExtension(com_end.URL, typeof(com_end));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,41 +0,0 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.ZM_GameResult_08
|
||||
{
|
||||
public partial class com_end : GComponent
|
||||
{
|
||||
public Controller win_lose;
|
||||
public GGraph bg_parent;
|
||||
public GGraph congra_parent;
|
||||
public GGraph coin_parent;
|
||||
public GButton btn_mult;
|
||||
public GButton btn_claim;
|
||||
public GButton btn_restart;
|
||||
public GTextField text_award;
|
||||
public GButton btn_gold;
|
||||
public const string URL = "ui://8sjqw0q3sebxk";
|
||||
|
||||
public static com_end CreateInstance()
|
||||
{
|
||||
return (com_end)UIPackage.CreateObject("ZM_GameResult_08", "com_end");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
win_lose = GetControllerAt(0);
|
||||
bg_parent = (GGraph)GetChildAt(0);
|
||||
congra_parent = (GGraph)GetChildAt(1);
|
||||
coin_parent = (GGraph)GetChildAt(2);
|
||||
btn_mult = (GButton)GetChildAt(3);
|
||||
btn_claim = (GButton)GetChildAt(4);
|
||||
btn_restart = (GButton)GetChildAt(5);
|
||||
text_award = (GTextField)GetChildAt(7);
|
||||
btn_gold = (GButton)GetChildAt(11);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7f0b6278fd5105d40aec61c27c7f0708
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,21 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
|
||||
namespace FGUI.ZM_Petty
|
||||
{
|
||||
public class ZM_PettyBinder
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_petty_award.URL, typeof(com_petty_award));
|
||||
UIObjectFactory.SetPackageItemExtension(com_get_panel.URL, typeof(com_get_panel));
|
||||
UIObjectFactory.SetPackageItemExtension(com_account.URL, typeof(com_account));
|
||||
UIObjectFactory.SetPackageItemExtension(com_email.URL, typeof(com_email));
|
||||
UIObjectFactory.SetPackageItemExtension(com_firstName.URL, typeof(com_firstName));
|
||||
UIObjectFactory.SetPackageItemExtension(com_lastName.URL, typeof(com_lastName));
|
||||
UIObjectFactory.SetPackageItemExtension(com_detail.URL, typeof(com_detail));
|
||||
UIObjectFactory.SetPackageItemExtension(com_scond_confirm.URL, typeof(com_scond_confirm));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1f07905677a77ac41bd8405d567bc96e
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_account : GComponent
|
||||
{
|
||||
public com_email com_email;
|
||||
public com_firstName com_first_name;
|
||||
public com_lastName com_last_name;
|
||||
public GButton btn_confirm;
|
||||
public const string URL = "ui://e9w4rbkqkbzo4";
|
||||
|
||||
public static com_account CreateInstance()
|
||||
{
|
||||
return (com_account)UIPackage.CreateObject("ZM_Petty", "com_account");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
com_email = (com_email)GetChildAt(4);
|
||||
com_first_name = (com_firstName)GetChildAt(5);
|
||||
com_last_name = (com_lastName)GetChildAt(6);
|
||||
btn_confirm = (GButton)GetChildAt(7);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dbef250520b953944b5cedbe677f63bb
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_detail : GComponent
|
||||
{
|
||||
public GTextField text_amount;
|
||||
public GTextField text_data;
|
||||
public GTextField text_order;
|
||||
public GTextField text_email;
|
||||
public GTextField text_limit;
|
||||
public GButton btn_redeem;
|
||||
public const string URL = "ui://e9w4rbkqkbzob";
|
||||
|
||||
public static com_detail CreateInstance()
|
||||
{
|
||||
return (com_detail)UIPackage.CreateObject("ZM_Petty", "com_detail");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_amount = (GTextField)GetChildAt(2);
|
||||
text_data = (GTextField)GetChildAt(3);
|
||||
text_order = (GTextField)GetChildAt(4);
|
||||
text_email = (GTextField)GetChildAt(5);
|
||||
text_limit = (GTextField)GetChildAt(6);
|
||||
btn_redeem = (GButton)GetChildAt(10);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 89a2f4882ac477c41a762cfe76631721
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_email : GComponent
|
||||
{
|
||||
public GTextInput enter_email;
|
||||
public const string URL = "ui://e9w4rbkqkbzo5";
|
||||
|
||||
public static com_email CreateInstance()
|
||||
{
|
||||
return (com_email)UIPackage.CreateObject("ZM_Petty", "com_email");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
enter_email = (GTextInput)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6166663a6b01b3e408a687d93a4c58d8
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_firstName : GComponent
|
||||
{
|
||||
public GTextInput enter_first_name;
|
||||
public const string URL = "ui://e9w4rbkqkbzo8";
|
||||
|
||||
public static com_firstName CreateInstance()
|
||||
{
|
||||
return (com_firstName)UIPackage.CreateObject("ZM_Petty", "com_firstName");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
enter_first_name = (GTextInput)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dfb839b90a753004ab95f02310af26e7
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_get_panel : GComponent
|
||||
{
|
||||
public GTextField text_reward;
|
||||
public GButton btn_get;
|
||||
public const string URL = "ui://e9w4rbkqkbzo3";
|
||||
|
||||
public static com_get_panel CreateInstance()
|
||||
{
|
||||
return (com_get_panel)UIPackage.CreateObject("ZM_Petty", "com_get_panel");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_reward = (GTextField)GetChildAt(2);
|
||||
btn_get = (GButton)GetChildAt(3);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c2bcf14debd8def4f946f3bbce808a91
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_lastName : GComponent
|
||||
{
|
||||
public GTextInput enter_last_name;
|
||||
public const string URL = "ui://e9w4rbkqkbzo9";
|
||||
|
||||
public static com_lastName CreateInstance()
|
||||
{
|
||||
return (com_lastName)UIPackage.CreateObject("ZM_Petty", "com_lastName");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
enter_last_name = (GTextInput)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 555e17d0466864f42868a557b45fd8ae
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,39 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.ZM_Petty
|
||||
{
|
||||
public partial class com_petty_award : GComponent
|
||||
{
|
||||
public Controller state;
|
||||
public GGraph anim;
|
||||
public GButton btn_gerAward;
|
||||
public com_get_panel com_get_panel;
|
||||
public com_account com_account;
|
||||
public com_detail com_detail;
|
||||
public com_scond_confirm com_second_confirm;
|
||||
public GButton btn_close;
|
||||
public const string URL = "ui://e9w4rbkqkbzo26";
|
||||
|
||||
public static com_petty_award CreateInstance()
|
||||
{
|
||||
return (com_petty_award)UIPackage.CreateObject("ZM_Petty", "com_petty_award");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
anim = (GGraph)GetChildAt(0);
|
||||
btn_gerAward = (GButton)GetChildAt(1);
|
||||
com_get_panel = (com_get_panel)GetChildAt(2);
|
||||
com_account = (com_account)GetChildAt(3);
|
||||
com_detail = (com_detail)GetChildAt(4);
|
||||
com_second_confirm = (com_scond_confirm)GetChildAt(5);
|
||||
btn_close = (GButton)GetChildAt(6);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ad95661e3e31e1468fcc8cb529c2593
|
||||
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.ZM_Petty
|
||||
{
|
||||
public partial class com_scond_confirm : GComponent
|
||||
{
|
||||
public GButton btn_confirm;
|
||||
public GTextField text_account;
|
||||
public GTextField text_first_name;
|
||||
public GTextField text_last_name;
|
||||
public const string URL = "ui://e9w4rbkqkbzoe";
|
||||
|
||||
public static com_scond_confirm CreateInstance()
|
||||
{
|
||||
return (com_scond_confirm)UIPackage.CreateObject("ZM_Petty", "com_scond_confirm");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_confirm = (GButton)GetChildAt(2);
|
||||
text_account = (GTextField)GetChildAt(3);
|
||||
text_first_name = (GTextField)GetChildAt(4);
|
||||
text_last_name = (GTextField)GetChildAt(5);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1312675d1c29b74468094e6924a83125
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7a29ee65494dee1468344c7d51028710
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
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.tixian
|
||||
{
|
||||
public partial class btn_code : GButton
|
||||
{
|
||||
public Controller type;
|
||||
public const string URL = "ui://md8tkwlztivmeg";
|
||||
|
||||
public static btn_code CreateInstance()
|
||||
{
|
||||
return (btn_code)UIPackage.CreateObject("tixian", "btn_code");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 29199c574e56a1d46abbdbf913a3e102
|
||||
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.tixian
|
||||
{
|
||||
public partial class btn_confirm : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public const string URL = "ui://md8tkwlzlsax1y";
|
||||
|
||||
public static btn_confirm CreateInstance()
|
||||
{
|
||||
return (btn_confirm)UIPackage.CreateObject("tixian", "btn_confirm");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 908858c3516d0e24280696ad35d1d459
|
||||
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.tixian
|
||||
{
|
||||
public partial class btn_edit : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public const string URL = "ui://md8tkwlzdeiw1s";
|
||||
|
||||
public static btn_edit CreateInstance()
|
||||
{
|
||||
return (btn_edit)UIPackage.CreateObject("tixian", "btn_edit");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 242b8426c65bf084f8580e631f339cfb
|
||||
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.tixian
|
||||
{
|
||||
public partial class btn_get : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public GImage img_saveingpot;
|
||||
public const string URL = "ui://md8tkwlzcphly";
|
||||
|
||||
public static btn_get CreateInstance()
|
||||
{
|
||||
return (btn_get)UIPackage.CreateObject("tixian", "btn_get");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
img_saveingpot = (GImage)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 579231d9457451748aad91e90b8e8537
|
||||
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.tixian
|
||||
{
|
||||
public partial class btn_getcash : GButton
|
||||
{
|
||||
public GImage img_saveingpot;
|
||||
public const string URL = "ui://md8tkwlzupx71u";
|
||||
|
||||
public static btn_getcash CreateInstance()
|
||||
{
|
||||
return (btn_getcash)UIPackage.CreateObject("tixian", "btn_getcash");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
img_saveingpot = (GImage)GetChildAt(3);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f2a6231b9c34ea243946195802fa120c
|
||||
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.tixian
|
||||
{
|
||||
public partial class btn_kicket : GButton
|
||||
{
|
||||
public Controller state;
|
||||
public const string URL = "ui://md8tkwlztivmef";
|
||||
|
||||
public static btn_kicket CreateInstance()
|
||||
{
|
||||
return (btn_kicket)UIPackage.CreateObject("tixian", "btn_kicket");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user