替换UI
This commit is contained in:
@@ -22830,8 +22830,8 @@ MonoBehaviour:
|
||||
Filter: '*'
|
||||
Bundles:
|
||||
- Name: main/ui.bundle
|
||||
Hash: 8317904954692e0856b6b3e168b631f5
|
||||
Size: 7611837
|
||||
Hash: 271eae96f4937c0b88d46d03f6d4544a
|
||||
Size: 7618236
|
||||
Assets:
|
||||
- Path: Assets/ResRaw/Fgui/Common/Common_atlas0.png
|
||||
Address: UI/Common_atlas0
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
Binary file not shown.
Binary file not shown.
@@ -61,9 +61,9 @@ namespace NBF
|
||||
// await Task.Delay(100);
|
||||
CommonTopPanel.Show();
|
||||
// SettingPanel.Show();
|
||||
// LoginPanel.Show();
|
||||
LoginPanel.Show();
|
||||
// MessageBox.Show();
|
||||
FishingShopPanel.Show();
|
||||
// FishingShopPanel.Show();
|
||||
// PreviewPanel.Show();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace NBF
|
||||
for (int i = 0; i < subItems.Count; i++)
|
||||
{
|
||||
var tabData = subItems[i];
|
||||
var tabItem = List.AddItemFromPool(i == 0 ? BtnSubMenuLeft.URL : BtnSubMenu.URL).asButton;
|
||||
var tabItem = List.AddItemFromPool(BtnSubMenu.URL).asButton;//i == 0 ? BtnSubMenuLeft.URL :
|
||||
tabItem.SetLanguage(tabData.Key);
|
||||
|
||||
width += tabItem.width;
|
||||
|
||||
@@ -32,7 +32,8 @@ namespace NBF
|
||||
}
|
||||
else if (btn == BtnFishBag)
|
||||
{
|
||||
FishBagPanel.Show();
|
||||
// FishBagPanel.Show();
|
||||
FishingShopPanel.Show();
|
||||
}
|
||||
else if (btn == BtnMake)
|
||||
{
|
||||
|
||||
@@ -22,9 +22,9 @@ namespace NBF
|
||||
{
|
||||
if (btn == BtnLogin)
|
||||
{
|
||||
// OnLoginClick().Coroutine();
|
||||
Debug.LogError("test");
|
||||
MessageBox.Show();
|
||||
OnLoginClick().Coroutine();
|
||||
// Debug.LogError("test");
|
||||
// MessageBox.Show();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,15 +32,14 @@ namespace NBF
|
||||
{
|
||||
await LoginHelper.Login(InputAccount.text);
|
||||
|
||||
// await Fishing.Instance.Go(RoleModel.Instance.Info.MapId);
|
||||
// await MapHelper.EnterMap(mapId, role.RoomCode);
|
||||
await Fishing.Instance.Go(RoleModel.Instance.Info.MapId);
|
||||
|
||||
// BagPanel.Show();
|
||||
// BagSlotPanel.Show();
|
||||
|
||||
// SettingPanel.Show();
|
||||
// HomePanel.Show();
|
||||
FishingShopPanel.Show();
|
||||
|
||||
|
||||
Del();
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@ namespace NBF
|
||||
|
||||
public Controller style;
|
||||
public GImage back;
|
||||
public GImage back2;
|
||||
public GTextField TextName;
|
||||
public GTextField TextInfo;
|
||||
public GSlider Slider;
|
||||
@@ -29,6 +30,7 @@ namespace NBF
|
||||
|
||||
style = GetController("style");
|
||||
back = (GImage)GetChild("back");
|
||||
back2 = (GImage)GetChild("back2");
|
||||
TextName = (GTextField)GetChild("TextName");
|
||||
TextInfo = (GTextField)GetChild("TextInfo");
|
||||
Slider = (GSlider)GetChild("Slider");
|
||||
|
||||
@@ -14,6 +14,8 @@ namespace NBF
|
||||
public override string UIPackName => "Main";
|
||||
public override string UIResName => "SettingPanel";
|
||||
|
||||
[AutoFind(Name = "Title")]
|
||||
public GComponent Title;
|
||||
[AutoFind(Name = "MenuList")]
|
||||
public CommonSubMenu MenuList;
|
||||
[AutoFind(Name = "Introduce")]
|
||||
@@ -24,8 +26,6 @@ namespace NBF
|
||||
public BottomMenu BottomMenu;
|
||||
[AutoFind(Name = "Mask")]
|
||||
public GLabel Mask;
|
||||
[AutoFind(Name = "Title")]
|
||||
public GComponent Title;
|
||||
public override string[] GetDependPackages(){ return new string[] {"Common","CommonNew"}; }
|
||||
|
||||
public static void Show(object param = null){ UI.Inst.OpenUI<SettingPanel>(param); }
|
||||
|
||||
@@ -82,16 +82,15 @@ namespace NBF
|
||||
|
||||
|
||||
var url = UIPackage.GetItemURL(UIPackName, "SettingSubTitleItem");
|
||||
var groupIndex = 0;
|
||||
|
||||
foreach (var key in groupOptions.Keys)
|
||||
{
|
||||
var value = groupOptions[key];
|
||||
if (groupIndex > 0)
|
||||
|
||||
|
||||
if (List.AddItemFromPool(url) is GLabel label)
|
||||
{
|
||||
if (List.AddItemFromPool(url) is GLabel label)
|
||||
{
|
||||
label.SetLanguage(key);
|
||||
}
|
||||
label.SetLanguage(key);
|
||||
}
|
||||
|
||||
foreach (var option in value)
|
||||
@@ -103,8 +102,6 @@ namespace NBF
|
||||
_canSelectIndex.Add(index);
|
||||
}
|
||||
}
|
||||
|
||||
groupIndex++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -14,6 +14,8 @@ namespace NBF
|
||||
public override string UIPackName => "Main";
|
||||
public override string UIResName => "SettingWaitInputPanel";
|
||||
|
||||
[AutoFind(Name = "back")]
|
||||
public GImage back;
|
||||
[AutoFind(Name = "TextTime")]
|
||||
public GTextField TextTime;
|
||||
[AutoFind(Name = "BtnCancel")]
|
||||
|
||||
@@ -14,16 +14,18 @@ namespace NBF
|
||||
public override string UIPackName => "Main";
|
||||
public override string UIResName => "FishingShopPanel";
|
||||
|
||||
[AutoFind(Name = "BottomMenu")]
|
||||
public BottomMenu BottomMenu;
|
||||
[AutoFind(Name = "ItemList")]
|
||||
public CommonItemList ItemList;
|
||||
[AutoFind(Name = "BottomMenu")]
|
||||
public BottomMenu BottomMenu;
|
||||
[AutoFind(Name = "Currencys")]
|
||||
public GComponent Currencys;
|
||||
[AutoFind(Name = "Loading")]
|
||||
public GLabel Loading;
|
||||
[AutoFind(Name = "Head")]
|
||||
public GButton Head;
|
||||
[AutoFind(Name = "Title")]
|
||||
public GComponent Title;
|
||||
public override string[] GetDependPackages(){ return new string[] {"Common","CommonNew"}; }
|
||||
|
||||
public static void Show(object param = null){ UI.Inst.OpenUI<FishingShopPanel>(param); }
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<component size="1920,1080" extention="Label">
|
||||
<displayList>
|
||||
<loader id="n36_gii7" name="Back" xy="0,0" size="1920,1080" url="ui://6hgkvlaumbu9ye" align="center" vAlign="middle" fill="scale" clearOnPublish="true"/>
|
||||
<image id="n38_xd2f" name="back" src="vbojnh" fileName="ImagesNew/Square/square128_fill.png" xy="1,0" size="1920,1080" alpha="0.7">
|
||||
<image id="n38_xd2f" name="back" src="vbojnh" fileName="ImagesNew/Square/square128_fill.png" xy="1,0" size="1920,1080" alpha="0.6">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
</displayList>
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="36,40" pivot="0.5,0.5" extention="Button">
|
||||
<component size="20,20" pivot="0.5,0.5" extention="Button">
|
||||
<displayList>
|
||||
<image id="n20_mbu9" name="n20" src="mbu9yj" fileName="ImagesNew/Square/mini/square20_stroke1px.png" xy="0,0" size="36,40" color="#252523"/>
|
||||
<loader id="n19_mbu9" name="icon" xy="3,5" pivot="0.5,0.5" size="30,30" aspect="true" url="ui://6hgkvlauvbojpj" fill="scale" color="#b2b2b2"/>
|
||||
<loader id="n19_mbu9" name="icon" xy="0,0" pivot="0.5,0.5" size="20,20" aspect="true" url="ui://6hgkvlaumbu9y3" align="center" vAlign="middle" fill="scale" color="#34455c">
|
||||
<relation target="" sidePair="center-center,middle-middle"/>
|
||||
</loader>
|
||||
</displayList>
|
||||
<Button downEffect="scale" downEffectValue="0.95"/>
|
||||
</component>
|
||||
@@ -1,6 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1920,60" designImage="ui://6hgkvlaudczwyw">
|
||||
<displayList>
|
||||
<image id="n35_fu96" name="n35" src="oh2qyo" fileName="ImagesNew/Square/mini/square24_fill.png" xy="0,0" size="1920,60" color="#3d5c7a">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<list id="n33_9lmc" name="List" xy="991,13" size="891,40" layout="row" colGap="32" defaultItem="ui://6hgkvlaur03uj0" align="right" vAlign="middle" autoClearItems="true">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
<item title="按钮1"/>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1920,90" extention="Label" designImage="ui://6hgkvlaudczwyv" designImageAlpha="10">
|
||||
<displayList>
|
||||
<image id="n17_dczw" name="n17" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" xy="-7,20" size="894,60" color="#3d5c7a">
|
||||
<image id="n17_dczw" name="n17" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" xy="-7,20" size="894,60" color="#3d5c7a">
|
||||
<relation target="n15_vboj" sidePair="middle-middle,rightext-right"/>
|
||||
</image>
|
||||
<list id="n15_vboj" name="List" xy="107,20" size="677,60" layout="row" overflow="hidden" scroll="horizontal" defaultItem="ui://6hgkvlauvbojt5" autoClearItems="true">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1920,50" designImage="ui://6hgkvlaudczwyv" designImageOffsetY="-90" designImageAlpha="10">
|
||||
<displayList>
|
||||
<image id="n30_dczw" name="n30" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" xy="-9,0" size="923,50" color="#3d5c7a">
|
||||
<image id="n30_dczw" name="n30" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" xy="-9,0" size="923,50" color="#3d5c7a">
|
||||
<relation target="n29_vboj" sidePair="middle-middle,rightext-right"/>
|
||||
</image>
|
||||
<list id="n29_vboj" name="List" xy="111,0" size="704,50" layout="row" defaultItem="ui://6hgkvlauvbojxi" autoClearItems="true">
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="6,200" extention="ScrollBar">
|
||||
<component size="10,200" extention="ScrollBar">
|
||||
<displayList>
|
||||
<graph id="n0_oome" name="n0" xy="0,0" size="6,200" alpha="0.1" touchable="false" type="rect" lineSize="0" fillColor="#ffcccccc">
|
||||
<graph id="n0_oome" name="n0" xy="0,0" size="10,200" alpha="0.2" touchable="false" type="rect" lineSize="0" fillColor="#ff34455c">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</graph>
|
||||
<graph id="n1_oome" name="bar" xy="0,0" size="17,200" alpha="0.1">
|
||||
<image id="n1_oome" name="bar" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" xy="0,0" size="10,200" alpha="0.2" color="#34455c">
|
||||
<relation target="" sidePair="height-height"/>
|
||||
</graph>
|
||||
<component id="n2_oome" name="grip" src="oomei" fileName="Com/ScrollBar/VerticalroScrollBar_grip.xml" xy="0,20"/>
|
||||
</image>
|
||||
<image id="n2_oome" name="grip" src="vbojou" fileName="ImagesNew/Square/square128_round5px_fill.png" xy="0,20" size="10,20"/>
|
||||
</displayList>
|
||||
<ScrollBar/>
|
||||
</component>
|
||||
@@ -1,9 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="40,4" extention="Button">
|
||||
<component size="8,4" extention="Button">
|
||||
<controller name="button" pages="2,up,3,down" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n14_5dtx" name="n14" src="kryob" fileName="Images/Square.png" pkg="xo76q8wz" xy="0,0" size="40,4" color="#7e7e7c">
|
||||
<gearColor controller="button" pages="2,3" values="#7e7e7c|#cbcbc9"/>
|
||||
<image id="n14_5dtx" name="n14" src="kryob" fileName="Images/Square.png" pkg="xo76q8wz" xy="0,0" size="8,4" alpha="0.5" color="#34455c">
|
||||
<gearLook controller="button" pages="2" values="0.5,0,0,0" default="1,0,0,0"/>
|
||||
<gearColor controller="button" pages="2,3" values="#34455c|#34455c"/>
|
||||
</image>
|
||||
</displayList>
|
||||
<Button mode="Radio"/>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1920,80">
|
||||
<component size="1920,90">
|
||||
<displayList>
|
||||
<text id="n17_d3lv" name="TextTitle" xy="36,12" size="83,46" font="ui://6hgkvlaugkm7v" fontSize="34" color="#303f4e" letterSpacing="12" text="选项"/>
|
||||
<text id="n17_d3lv" name="TextTitle" xy="36,22" size="83,46" font="ui://6hgkvlaugkm7v" fontSize="34" color="#303f4e" letterSpacing="12" text="选项"/>
|
||||
</displayList>
|
||||
</component>
|
||||
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="110,60" extention="Button" designImage="ui://6hgkvlaudczwyv" designImageOffsetX="-369" designImageOffsetY="-20" designImageAlpha="0">
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="2"/>
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n11_dczw" name="n11" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" xy="0,0" size="110,60" color="#fe8d1d">
|
||||
<image id="n11_dczw" name="n11" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" xy="0,0" size="110,60" alpha="0" color="#fe8d1d">
|
||||
<gearLook controller="button" pages="2" values="0,0,0,0" default="1,0,0,0" tween="true"/>
|
||||
</image>
|
||||
<text id="n10_vboj" name="title" xy="29,13" pivot="0.5,0.5" size="51,34" fontSize="24" color="#ffffff" align="center" vAlign="middle" shadowColor="#33000000" shadowOffset="1,1" text="主页">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<component size="130,50" extention="Button">
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n14_vboj" name="back" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" xy="0,0" size="130,50" alpha="0" color="#fe8d1d">
|
||||
<image id="n14_vboj" name="back" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" xy="0,0" size="130,50" alpha="0" color="#fe8d1d">
|
||||
<gearLook controller="button" pages="2,3,4,5" values="0,0,0,0|1,0,0,0|0.9,0,0,0|1,0,0,0" tween="true"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="110,50" extention="Button">
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="1"/>
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n14_vboj" name="back" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" xy="0,0" size="110,50" color="#fe8d1d">
|
||||
<image id="n14_vboj" name="back" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" xy="0,0" size="110,50" alpha="0" color="#fe8d1d">
|
||||
<gearLook controller="button" pages="2,3,4,5" values="0,0,0,0|1,0,0,0|0.9,0,0,0|1,0,0,0" tween="true"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 446 B |
Binary file not shown.
|
After Width: | Height: | Size: 289 B |
@@ -96,13 +96,13 @@
|
||||
<image id="vbojnf" name="pattern128_8.png" path="/ImagesNew/Pattern/"/>
|
||||
<image id="vbojng" name="pattern128_9.png" path="/ImagesNew/Pattern/"/>
|
||||
<image id="vbojnh" name="square128_fill.png" path="/ImagesNew/Square/" exported="true" scale="9grid" scale9grid="6,6,117,116"/>
|
||||
<image id="vbojni" name="square128_round10px_fill.png" path="/ImagesNew/Square/" exported="true" scale="9grid" scale9grid="32,32,64,64"/>
|
||||
<image id="vbojni" name="square128_round10px_fill.png" path="/ImagesNew/Square/" exported="true" scale="9grid" scale9grid="9,9,110,110"/>
|
||||
<image id="vbojnj" name="square128_round10px_stroke10px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnk" name="square128_round10px_stroke1px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnl" name="square128_round10px_stroke20px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnm" name="square128_round10px_stroke2px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnn" name="square128_round10px_stroke3px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojno" name="square128_round10px_stroke5px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnm" name="square128_round10px_stroke2px.png" path="/ImagesNew/Square/" exported="true"/>
|
||||
<image id="vbojnn" name="square128_round10px_stroke3px.png" path="/ImagesNew/Square/" exported="true"/>
|
||||
<image id="vbojno" name="square128_round10px_stroke5px.png" path="/ImagesNew/Square/" exported="true"/>
|
||||
<image id="vbojnp" name="square128_round10px_stroke8px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnq" name="square128_round30px_stroke2px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojnr" name="pattern128_67.png" path="/ImagesNew/Pattern/"/>
|
||||
@@ -144,7 +144,7 @@
|
||||
<image id="vbojor" name="square128_round50px_stroke3px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojos" name="square128_round50px_stroke5px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojot" name="square128_round50px_stroke8px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojou" name="square128_round5px_fill.png" path="/ImagesNew/Square/" exported="true" scale="9grid" scale9grid="32,32,64,64"/>
|
||||
<image id="vbojou" name="square128_round5px_fill.png" path="/ImagesNew/Square/" exported="true" scale="9grid" scale9grid="3,3,122,122"/>
|
||||
<image id="vbojov" name="square128_round30px_stroke5px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojow" name="square128_stroke5px.png" path="/ImagesNew/Square/"/>
|
||||
<image id="vbojox" name="pattern128_66.png" path="/ImagesNew/Pattern/"/>
|
||||
@@ -502,8 +502,10 @@
|
||||
<image id="dczwyv" name="顶部菜单.png" path="/效果图/"/>
|
||||
<image id="dczwyw" name="底部菜单.png" path="/效果图/"/>
|
||||
<image id="dczwyx" name="square24_round8px_bottom.png" path="/ImagesNew/Square/mini/" exported="true" scale="9grid" scale9grid="9,5,6,4"/>
|
||||
<image id="dczwyy" name="square24_round8px_fill.png" path="/ImagesNew/Square/mini/" exported="true" scale="9grid" scale9grid="10,10,5,3"/>
|
||||
<image id="dczwyy" name="square24_round8px_fill.png" path="/ImagesNew/Square/mini/" exported="true" scale="9grid" scale9grid="7,7,10,10" smoothing="false" duplicatePadding="true"/>
|
||||
<component id="dczwyz" name="BtnSubIconMenu.xml" path="/ComNew/" exported="true"/>
|
||||
<image id="fu96z0" name="square24_round10px_stroke3px.png" path="/ImagesNew/Square/mini/" exported="true" scale="9grid" scale9grid="10,10,3,2"/>
|
||||
<image id="fu96z1" name="square24_round5px_stroke3px.png" path="/ImagesNew/Square/mini/" exported="true" scale="9grid" scale9grid="10,10,2,3"/>
|
||||
</resources>
|
||||
<publish name="" path="../Assets/ResRaw/Fgui/Common" packageCount="2" genCode="true"/>
|
||||
</packageDescription>
|
||||
@@ -1,42 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1190,52" extention="Button" designImage="ui://hxr7rc7pdczw2n" designImageOffsetX="-39" designImageOffsetY="-60" designImageAlpha="0">
|
||||
<component size="1192,58" extention="Button" designImage="ui://hxr7rc7pdczw2n" designImageOffsetX="-39" designImageOffsetY="-60" designImageAlpha="0">
|
||||
<controller name="style" exported="true" pages="0,无,1,切换,2,下拉,3,进度,4,按键" selected="0"/>
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="0"/>
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver" selected="1"/>
|
||||
<displayList>
|
||||
<image id="n5_e9z8" name="back" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" pkg="6hgkvlau" xy="1,0" size="1040,52">
|
||||
<gearColor controller="button" pages="2,3,4,5" values="#ffffff|#5e5e5e|#5e5e5e|#5e5e5e"/>
|
||||
<image id="n5_e9z8" name="back" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" pkg="6hgkvlau" xy="2,3" size="878,52" color="#e7f8fd">
|
||||
<gearColor controller="button" pages="2,3,4,5" values="#ffffff|#e7f8fd|#e7f8fd|#e7f8fd"/>
|
||||
</image>
|
||||
<image id="n17_d3lv" name="n17" src="mbu9yj" fileName="ImagesNew/Square/mini/square20_stroke1px.png" pkg="6hgkvlau" xy="0,0" size="874,48" color="#252523">
|
||||
<gearColor controller="button" pages="2,3,4,5" values="#252523|#afb0ab|#afb0ab|#afb0ab"/>
|
||||
<image id="n28_fu96" name="back2" src="oh2qyq" fileName="ImagesNew/Square/mini/square24_round5px_fill.png" pkg="6hgkvlau" xy="889,3" size="302,52" color="#e7f8fd">
|
||||
<gearColor controller="button" pages="2,3,4,5" values="#ffffff|#e7f8fd|#e7f8fd|#e7f8fd" tween="true"/>
|
||||
</image>
|
||||
<text id="n6_e9z8" name="TextName" xy="20,11" size="111,29" font="ui://6hgkvlaugkm7w" fontSize="20" color="#303f4e" text="LANGUAGE"/>
|
||||
<text id="n7_e9z8" name="TextInfo" xy="605,2" pivot="0.5,0.5" size="299,28" fontSize="19" color="#e1e0dc" align="center" autoSize="none" text="x2">
|
||||
<image id="n32_fu96" name="n32" src="fu96z1" fileName="ImagesNew/Square/mini/square24_round5px_stroke3px.png" pkg="6hgkvlau" xy="0,0" size="1192,58" color="#0eb0bf">
|
||||
<gearLook controller="button" pages="2" values="0,0,0,0" default="1,0,0,0" tween="true"/>
|
||||
</image>
|
||||
<text id="n6_e9z8" name="TextName" xy="21,14" size="111,29" font="ui://6hgkvlaugkm7w" fontSize="20" color="#303f4e" text="LANGUAGE"/>
|
||||
<text id="n7_e9z8" name="TextInfo" xy="605,2" pivot="0.5,0.5" size="224,34" fontSize="24" color="#34455c" align="center" autoSize="none" shadowColor="#ffffff" shadowOffset="1,1" text="x2">
|
||||
<gearDisplay controller="style" pages="1"/>
|
||||
<gearXY controller="style" pages="1,2,3,4" values="500,2|500,10|500,2|500,2" default="605,2"/>
|
||||
<gearXY controller="style" pages="1,2,3,4" values="928,11|500,10|500,2|500,2" default="605,2"/>
|
||||
</text>
|
||||
<component id="n9_e9z8" name="Slider" src="e9z8k4" fileName="Com/Slider/CommonSlider.xml" pkg="6hgkvlau" xy="788,18" size="348,12">
|
||||
<component id="n9_e9z8" name="Slider" src="e9z8k4" fileName="Com/Slider/CommonSlider.xml" pkg="6hgkvlau" xy="790,21" size="348,12">
|
||||
<gearDisplay controller="style" pages="3"/>
|
||||
<relation target="" sidePair="right-right%"/>
|
||||
<Slider value="100" max="100"/>
|
||||
</component>
|
||||
<text id="n13_oivj" name="TextSliderValue" xy="445,8" pivot="1,1" size="34,29" fontSize="20" color="#e1e0dc" align="right" text="2.9">
|
||||
<text id="n13_oivj" name="TextSliderValue" xy="446,11" pivot="1,1" size="34,29" fontSize="20" color="#e1e0dc" align="right" text="2.9">
|
||||
<gearDisplay controller="style" pages="3"/>
|
||||
</text>
|
||||
<component id="n15_5dtx" name="Pages" src="5dtx1a" fileName="Com/SelectPages.xml" pkg="6hgkvlau" xy="500,34" size="300,4">
|
||||
<component id="n15_5dtx" name="Pages" src="5dtx1a" fileName="Com/SelectPages.xml" pkg="6hgkvlau" xy="911,47" size="257,4">
|
||||
<gearDisplay controller="style" pages="1"/>
|
||||
</component>
|
||||
<component id="n21_mbu9" name="BtnPrev" src="mbu9xk" fileName="Com/Buttons/BtnTriangle.xml" pkg="6hgkvlau" xy="454,4">
|
||||
<component id="n21_mbu9" name="BtnPrev" src="mbu9xk" fileName="Com/Buttons/BtnTriangle.xml" pkg="6hgkvlau" xy="889,3" size="32,52">
|
||||
<gearDisplay controller="style" pages="1"/>
|
||||
<Button icon="ui://6hgkvlaumbu9yc"/>
|
||||
<Button icon="ui://6hgkvlaumbu9y3"/>
|
||||
</component>
|
||||
<component id="n22_mbu9" name="BtnNext" src="mbu9xk" fileName="Com/Buttons/BtnTriangle.xml" pkg="6hgkvlau" xy="808,4">
|
||||
<component id="n22_mbu9" name="BtnNext" src="mbu9xk" fileName="Com/Buttons/BtnTriangle.xml" pkg="6hgkvlau" xy="1159,3" size="32,52">
|
||||
<gearDisplay controller="style" pages="1"/>
|
||||
<Button icon="ui://6hgkvlaumbu9yd"/>
|
||||
<Button icon="ui://6hgkvlaumbu9y2"/>
|
||||
</component>
|
||||
<component id="n26_mbu9" name="BtnControl" src="r03ut" fileName="Com/Buttons/BtnInputControl.xml" pkg="6hgkvlau" xy="647,10">
|
||||
<component id="n26_mbu9" name="BtnControl" src="r03ut" fileName="Com/Buttons/BtnInputControl.xml" pkg="6hgkvlau" xy="648,13">
|
||||
<gearDisplay controller="style" pages="4"/>
|
||||
</component>
|
||||
<component id="n27_mbu9" name="ComboBox" src="mbu929" fileName="Settings/CommonComboBox.xml" xy="500,7" size="344,34">
|
||||
<component id="n27_mbu9" name="ComboBox" src="mbu929" fileName="Settings/CommonComboBox.xml" xy="501,10" size="344,34">
|
||||
<gearDisplay controller="style" pages="2"/>
|
||||
<ComboBox visibleItemCount="10"/>
|
||||
</component>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="874,28" extention="Label">
|
||||
<component size="874,45" extention="Label">
|
||||
<displayList>
|
||||
<text id="n6_e9z8" name="title" xy="0,0" size="79,28" alpha="0.7" font="ui://6hgkvlaugkm7w" fontSize="19" color="#6a6967" text="游戏设置"/>
|
||||
<text id="n7_fu96" name="title" xy="0,1" size="144,42" font="ui://6hgkvlaugkm7w" fontSize="30" color="#34455c" bold="true" text="GENERAL"/>
|
||||
</displayList>
|
||||
</component>
|
||||
@@ -1,17 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1920,1080" extention="Label" designImage="ui://hxr7rc7pdczw2l" designImageAlpha="30">
|
||||
<component size="1920,1080" extention="Label" designImage="ui://hxr7rc7pdczw2l" designImageAlpha="100">
|
||||
<displayList>
|
||||
<component id="n14_gii7" name="n14" src="8hy8la" fileName="Com/Back/UIBlurBackground.xml" pkg="6hgkvlau" xy="0,0">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</component>
|
||||
<component id="n21_mbu9" name="Title" src="mbu9ya" fileName="Com/Tags/ComoomTitle.xml" pkg="6hgkvlau" xy="0,0"/>
|
||||
<component id="n21_mbu9" name="Title" src="mbu9ya" fileName="Com/Tags/ComoomTitle.xml" pkg="6hgkvlau" xy="0,0" size="1920,90"/>
|
||||
<component id="n16_d3lv" name="MenuList" src="r03us" fileName="Com/Menu/CommonSubMenu.xml" pkg="6hgkvlau" xy="0,90">
|
||||
<relation target="" sidePair="left-left,top-top"/>
|
||||
</component>
|
||||
<component id="n3_e9z8" name="Introduce" src="e9z89" fileName="Com/IntroduceTag.xml" xy="985,179" size="890,828">
|
||||
<component id="n3_e9z8" name="Introduce" src="e9z89" fileName="Com/IntroduceTag.xml" xy="1251,160" size="658,828">
|
||||
<relation target="" sidePair="right-right,top-top,bottomext-bottom"/>
|
||||
</component>
|
||||
<list id="n10_e9z8" name="List" xy="41,147" size="1200,868" overflow="scroll" scrollBarFlags="4" clipSoftness="10,10" lineGap="10" defaultItem="ui://hxr7rc7pe9z88" autoClearItems="true">
|
||||
<list id="n10_e9z8" name="List" xy="41,159" size="1206,857" overflow="scroll" scrollBarFlags="4" clipSoftness="10,10" lineGap="10" defaultItem="ui://hxr7rc7pe9z88" autoClearItems="true">
|
||||
<relation target="" sidePair="left-left,top-top,rightext-right,bottomext-bottom"/>
|
||||
<item url="ui://hxr7rc7pj6rn17"/>
|
||||
<item/>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="284,320" overflow="hidden" extention="Button" designImage="ui://hxr7rc7pdczw2e" designImageAlpha="0">
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver,6,disabled,7,selectedDisabled" selected="3"/>
|
||||
<controller name="button" pages="2,up,3,down,4,over,5,selectedOver,6,disabled,7,selectedDisabled" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n19_cmiv" name="n19" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" pkg="6hgkvlau" xy="0,0" size="284,320">
|
||||
<image id="n19_cmiv" name="n19" src="dczwyy" fileName="ImagesNew/Square/mini/square24_round8px_fill.png" pkg="6hgkvlau" xy="0,0" size="284,320" alpha="0.7">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n20_dczw" name="select" src="vbojnu" fileName="ImagesNew/Square/square128_round5px_stroke3px.png" pkg="6hgkvlau" xy="0,0" size="284,320" color="#fe8d1d">
|
||||
<image id="n20_dczw" name="select" src="vbojnu" fileName="ImagesNew/Square/square128_round5px_stroke3px.png" pkg="6hgkvlau" xy="0,0" size="284,320" alpha="0" color="#fe8d1d">
|
||||
<gearLook controller="button" pages="2,3,4,5" values="0,0,0,0|1,0,0,0|1,0,0,0|1,0,0,0" default="0,0,0,0" tween="true"/>
|
||||
</image>
|
||||
<text id="n7_oome" name="title" xy="24,10" size="242,32" fontSize="22" color="#16202f" autoSize="height" text="Title"/>
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1920,1080" designImage="ui://hxr7rc7pr03ue" designImageAlpha="0">
|
||||
<displayList>
|
||||
<component id="n36_gii7" name="n36" src="8hy8la" fileName="Com/Back/Back1.xml" pkg="6hgkvlau" xy="0,0">
|
||||
<component id="n36_gii7" name="n36" src="8hy8la" fileName="Com/Back/UIBlurBackground.xml" pkg="6hgkvlau" xy="0,0">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</component>
|
||||
<component id="n34_9mf1" name="BottomMenu" src="9mf1z" fileName="Com/Menu/BottomMenu.xml" pkg="6hgkvlau" xy="-1,1014">
|
||||
<relation target="" sidePair="width-width,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n37_10h9m" name="ItemList" src="p1fps" fileName="Com/List/CommonItemList.xml" pkg="6hgkvlau" xy="0,0">
|
||||
<component id="n37_10h9m" name="ItemList" src="p1fps" fileName="Com/List/CommonItemList.xml" pkg="6hgkvlau" xy="0,75" size="1920,939">
|
||||
<relation target="" sidePair="left-left,top-top,rightext-right,bottomext-bottom"/>
|
||||
</component>
|
||||
<component id="n34_9mf1" name="BottomMenu" src="9mf1z" fileName="Com/Menu/BottomMenu.xml" pkg="6hgkvlau" xy="0,1020">
|
||||
<relation target="" sidePair="width-width,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n30_r03u" name="Currencys" src="fcfggq" fileName="Com/Tags/CurrencyGroup.xml" pkg="6hgkvlau" xy="1509,20">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
@@ -17,5 +17,6 @@
|
||||
<component id="n41_fpwl" name="Head" src="fcfgfu" fileName="Com/UserHead.xml" pkg="6hgkvlau" xy="1826,1" pivot="0.5,0.5" scale="0.8,0.8">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
<component id="n42_fu96" name="Title" src="mbu9ya" fileName="Com/Tags/ComoomTitle.xml" pkg="6hgkvlau" xy="0,0" size="1920,90"/>
|
||||
</displayList>
|
||||
</component>
|
||||
@@ -6,10 +6,12 @@
|
||||
"colorScheme": [
|
||||
"白背景 #FFFFFF",
|
||||
"蓝背景 #3D5C7A",
|
||||
"选中白绿背景 #E7F8FD",
|
||||
"橙色选中 #FE8D1D",
|
||||
"Item文字标题 #16202f",
|
||||
"文字蓝色描边 #123052",
|
||||
"文字颜色 #303F4E",
|
||||
"文字蓝色描边2 #16293d",
|
||||
"文字颜色 #34455c",
|
||||
"浅蓝字 #E2FFFB",
|
||||
"品质-蓝色 #008AFF",
|
||||
"品质-绿色 #44EDBF",
|
||||
|
||||
Reference in New Issue
Block a user