修改配件item

This commit is contained in:
Bob.Song
2025-10-31 18:03:31 +08:00
parent e0b9d6cd91
commit b2cf8cdb88
92 changed files with 225 additions and 112 deletions

View File

@@ -1,4 +1,5 @@
using NBF;
using NBF.Utils;
namespace NBC
{
@@ -10,5 +11,9 @@ namespace NBC
{
get { return _config ??= ItemConfig.Get(ConfigId); }
}
public ItemType ItemType => ConfigId.GetItemType();
public uint ItemSubType => ConfigId.GetItemSubType();
}
}

View File

@@ -24,4 +24,12 @@
Item = 2,
Fish = 3,
}
public enum RodType
{
None,
Tele = 1,
Spine = 2,
Bolo = 3,
}
}

View File

@@ -11,6 +11,16 @@ namespace NBF.Utils
return (ItemType)(id / 10000);
}
/// <summary>
/// 获取物品子类型
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public static uint GetItemSubType(this uint id)
{
return (id / 1000) % 10;
}
public static string GetName(this uint id)
{
return Lan.Get($"Name_{id}");

View File

@@ -7,7 +7,7 @@ using NBC;
namespace NBF
{
public partial class GearItem
public partial class BagGearItem
{
public const string URL = "ui://hxr7rc7pnzfp1n";

View File

@@ -0,0 +1,24 @@
// 本脚本只在不存在时会生成一次。组件逻辑写在当前脚本内。已存在不会再次生成覆盖
using UnityEngine;
using FairyGUI;
using NBC;
namespace NBF
{
public partial class BagGearItem : GButton
{
private void OnInited()
{
}
/// <summary>
/// 设置数据
/// </summary>
/// <param name="item">主物体</param>
/// <param name="gearItemType">可以装配的配件</param>
public void SetData(ItemInfo item, ItemType gearItemType)
{
}
}
}

View File

@@ -1,15 +0,0 @@
// 本脚本只在不存在时会生成一次。组件逻辑写在当前脚本内。已存在不会再次生成覆盖
using UnityEngine;
using FairyGUI;
using NBC;
namespace NBF
{
public partial class GearItem : GButton
{
private void OnInited()
{
}
}
}

View File

@@ -19,11 +19,17 @@ namespace NBF
protected override void OnShow()
{
ItemInfo = GetData() as ItemInfo;
if (ItemInfo == null || ItemInfo.Config == null)
{
Hide();
return;
}
Quality.SetQuality(ItemInfo.Config.Quality);
Content.Gear.visible = false;
Content.Basic.SetInfo(ItemInfo);
Content.Basic.SetInfo(ItemInfo);
Content.Gear.SetInfo(ItemInfo);
// var model = PrefabsHelper.CreatePrefab(ItemInfo.Config.Model);
Model.SetData(ItemInfo.Config);

View File

@@ -1,19 +1,79 @@
// 本脚本只在不存在时会生成一次。组件逻辑写在当前脚本内。已存在不会再次生成覆盖
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
using NBC;
using NBF.Utils;
namespace NBF
{
public partial class ItemGearInfoTag : GComponent
{
public ItemInfo Info { get; private set; }
private void OnInited()
{
}
public void SetInfo(ItemInfo itemInfo)
{
Info = itemInfo;
var types = GetItemGearTypes();
List.RemoveChildrenToPool();
foreach (var itemType in types)
{
var item = List.AddItemFromPool() as BagGearItem;
item?.SetData(itemInfo, itemType);
}
List.AutoHeight();
this.height = List.height + List.y + 10;
parent.scrollPane.touchEffect = height + y > parent.height;
parent.scrollPane.ScrollTop();
if (types.Count < 1)
{
visible = false;
}
}
private List<ItemType> GetItemGearTypes()
{
List<ItemType> types = new List<ItemType>();
var itemType = Info.ItemType;
if (itemType == ItemType.Rod)
{
var subType = (RodType)Info.ItemSubType;
if (subType == RodType.Tele)
{
types.Add(ItemType.Line);
types.Add(ItemType.Bobber);
types.Add(ItemType.Weight);
types.Add(ItemType.Hook);
}
else if (subType == RodType.Spine)
{
types.Add(ItemType.Line);
types.Add(ItemType.Weight);
types.Add(ItemType.Lure);
}
else if (subType == RodType.Bolo)
{
types.Add(ItemType.Line);
types.Add(ItemType.Weight);
types.Add(ItemType.Lure);
}
}
else if (itemType == ItemType.Lure)
{
types.Add(ItemType.Hook);
types.Add(ItemType.Hook);
}
// Info.Config;
return types;
}
}
}

View File

@@ -19,10 +19,11 @@ namespace NBF
UIObjectFactory.SetPackageItemExtension(HomeStatisticsPage.URL, typeof(HomeStatisticsPage));
UIObjectFactory.SetPackageItemExtension(HomeButtonGroups.URL, typeof(HomeButtonGroups));
UIObjectFactory.SetPackageItemExtension(ChatItem.URL, typeof(ChatItem));
UIObjectFactory.SetPackageItemExtension(GearItem.URL, typeof(GearItem));
UIObjectFactory.SetPackageItemExtension(BagGearItem.URL, typeof(BagGearItem));
UIObjectFactory.SetPackageItemExtension(ItemDetailsContent.URL, typeof(ItemDetailsContent));
UIObjectFactory.SetPackageItemExtension(ItemBasicInfoTag.URL, typeof(ItemBasicInfoTag));
UIObjectFactory.SetPackageItemExtension(ItemGearInfoTag.URL, typeof(ItemGearInfoTag));
UIObjectFactory.SetPackageItemExtension(ShopGearItem.URL, typeof(ShopGearItem));
UIObjectFactory.SetPackageItemExtension(BagItem.URL, typeof(BagItem));
}
}

View File

@@ -0,0 +1,20 @@
using FairyGUI;
namespace NBF
{
public static class GListExtensions
{
public static void AutoHeight(this GList list)
{
if (list.numItems < 1)
{
list.height = 100;
return;
}
var item = list.GetChildAt(0);
var listHeight = list.numItems * item.height + list.lineGap * list.numItems;
list.height = listHeight;
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 5bb71cdaee584b00a50ea53c6023ea79
timeCreated: 1761876194

View File

@@ -11,7 +11,7 @@ namespace NBF
public partial class FishingShopPanel
{
public GObject this[string aKey] => ContentPane.GetChild(aKey);
public override string UIPackName => "Shop";
public override string UIPackName => "Main";
public override string UIResName => "FishingShopPanel";
[AutoFind(Name = "Currencys")]

View File

@@ -9,7 +9,7 @@ namespace NBF
{
public partial class ShopGearItem
{
public const string URL = "ui://146ra2lqoome9";
public const string URL = "ui://hxr7rc7poome9";
public GImage back;
public GImage ba;

Binary file not shown.

View File

@@ -3,7 +3,7 @@
<displayList>
<list id="n5_oome" name="List" xy="0,1" size="1846,806" layout="flow_hz" selectionMode="multiple" overflow="scroll" scrollBarFlags="4" scrollBarRes="ui://6hgkvlauoomej," clipSoftness="10,10" lineGap="20" colGap="20" autoClearItems="true" foldInvisibleItems="true">
<relation target="" sidePair="width-width,height-height"/>
<item url="ui://146ra2lqoome9"/>
<item url="ui://hxr7rc7poome9"/>
</list>
</displayList>
</component>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="1920,1007" designImage="ui://146ra2lqr03ue" designImageAlpha="0">
<component size="1920,1007" designImage="ui://hxr7rc7pr03ue" designImageAlpha="0">
<controller name="style" pages="1,oneMenu,2,twoMenu" selected="0">
<remark page="0" value="一级菜单"/>
<remark page="1" value="二级菜单"/>

View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

Before

Width:  |  Height:  |  Size: 940 KiB

After

Width:  |  Height:  |  Size: 940 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

Before

Width:  |  Height:  |  Size: 964 KiB

After

Width:  |  Height:  |  Size: 964 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="980,608" overflow="scroll" scrollBarFlags="4" scrollBarRes="ui://6hgkvlauoomej,">
<displayList>
<component id="n8_nzfp" name="Basic" src="nzfp1p" fileName="Com/ItemBasicInfoTag.xml" xy="37,0"/>
<component id="n25_lbqg" name="Gear" src="nzfp1q" fileName="Com/ItemGearInfoTag.xml" xy="37,127" size="943,956"/>
</displayList>
</component>

View File

@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="943,1109">
<component size="943,957">
<displayList>
<text id="n24_nzfp" name="TextTitle" xy="0,0" size="94,33" fontSize="23" color="#d8fbff" text="钓组配件"/>
<richtext id="n25_nzfp" name="TextDesc" xy="0,36" size="381,24" font="ui://6hgkvlaugkm7x" fontSize="16" color="#d0d0d0" ubb="true" vars="true" autoSize="none" text="结构:中型的 适配中2-10克 长度1.8米 损耗0%"/>
<image id="n23_nzfp" name="n23" src="kryob" fileName="Images/Square.png" pkg="6hgkvlau" xy="0,64" size="943,1" alpha="0.5" color="#5c748b"/>
<list id="n22_nzfp" name="List" xy="0,74" size="939,1035" lineGap="14" defaultItem="ui://hxr7rc7pnzfp1n">
<item/>
<item/>
<list id="n22_nzfp" name="List" xy="0,74" size="939,875" lineGap="14" defaultItem="ui://hxr7rc7pnzfp1n">
<item/>
<item/>
<item/>
@@ -20,5 +18,4 @@
<item/>
</list>
</displayList>
<relation target="n22_nzfp" sidePair="bottomext-bottom"/>
</component>

View File

@@ -17,7 +17,7 @@
<relation target="" sidePair="left-left,top-top"/>
</component>
<component id="n8_nzfp" name="Content" src="nzfp1o" fileName="Com/ItemDetailsContent.xml" xy="883,144" size="1000,820">
<relation target="" sidePair="left-left,top-top,rightext-right"/>
<relation target="" sidePair="left-left,top-top,rightext-right,bottomext-bottom"/>
</component>
<image id="n12_xd2f" name="Quality" src="kryob" fileName="Images/Square.png" pkg="6hgkvlau" xy="62,955" size="820,8" alpha="0.6" color="#ff6c00">
<relation target="n6_r6au" sidePair="width-width,height-height,center-center,middle-middle"/>

View File

@@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="980,1281" overflow="scroll" scrollBarRes="ui://6hgkvlauoomej,">
<displayList>
<component id="n8_nzfp" name="Basic" src="nzfp1p" fileName="Com/ItemBasicInfoTag.xml" xy="37,0"/>
<component id="n24_nzfp" name="Gear" src="nzfp1q" fileName="Com/ItemGearInfoTag.xml" xy="40,117" size="940,1162">
<relation target="n8_nzfp" sidePair="left-left,top-bottom"/>
</component>
</displayList>
</component>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="1920,1080" designImage="ui://146ra2lqr03ue" designImageAlpha="0">
<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">
<relation target="" sidePair="width-width,height-height"/>

View File

Before

Width:  |  Height:  |  Size: 188 KiB

After

Width:  |  Height:  |  Size: 188 KiB

View File

Before

Width:  |  Height:  |  Size: 330 KiB

After

Width:  |  Height:  |  Size: 330 KiB

View File

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

View File

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 142 KiB

View File

Before

Width:  |  Height:  |  Size: 160 KiB

After

Width:  |  Height:  |  Size: 160 KiB

View File

Before

Width:  |  Height:  |  Size: 191 KiB

After

Width:  |  Height:  |  Size: 191 KiB

View File

Before

Width:  |  Height:  |  Size: 269 KiB

After

Width:  |  Height:  |  Size: 269 KiB

View File

Before

Width:  |  Height:  |  Size: 149 KiB

After

Width:  |  Height:  |  Size: 149 KiB

View File

Before

Width:  |  Height:  |  Size: 203 KiB

After

Width:  |  Height:  |  Size: 203 KiB

View File

Before

Width:  |  Height:  |  Size: 208 KiB

After

Width:  |  Height:  |  Size: 208 KiB

View File

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 126 KiB

View File

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

View File

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 113 KiB

View File

Before

Width:  |  Height:  |  Size: 255 KiB

After

Width:  |  Height:  |  Size: 255 KiB

View File

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 155 KiB

View File

Before

Width:  |  Height:  |  Size: 249 KiB

After

Width:  |  Height:  |  Size: 249 KiB

View File

Before

Width:  |  Height:  |  Size: 235 KiB

After

Width:  |  Height:  |  Size: 235 KiB

View File

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 166 KiB

View File

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 138 KiB

View File

Before

Width:  |  Height:  |  Size: 257 KiB

After

Width:  |  Height:  |  Size: 257 KiB

View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 135 KiB

View File

@@ -1,66 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<packageDescription id="hxr7rc7p">
<resources>
<component id="oy1y0" name="HomePanel.xml" path="/" exported="true"/>
<component id="e9z81" name="SettingPanel.xml" path="/" exported="true"/>
<image id="e9z82" name="设置页.png" path="/效果图/"/>
<image id="e9z84" name="商店.png" path="/效果图/"/>
<image id="e9z85" name="捏脸.png" path="/效果图/"/>
<image id="e9z86" name="快速选择.png" path="/效果图/"/>
<image id="e9z87" name="成就页.png" path="/效果图/"/>
<component id="oy1y0" name="HomePanel.xml" path="/Home/" exported="true"/>
<component id="e9z81" name="SettingPanel.xml" path="/Settings/" exported="true"/>
<image id="e9z82" name="设置页.png" path="/Assets/效果图/"/>
<image id="e9z84" name="商店.png" path="/Assets/效果图/"/>
<image id="e9z85" name="捏脸.png" path="/Assets/效果图/"/>
<image id="e9z86" name="快速选择.png" path="/Assets/效果图/"/>
<image id="e9z87" name="成就页.png" path="/Assets/效果图/"/>
<component id="e9z88" name="SettingItem.xml" path="/Com/Items/" exported="true"/>
<component id="e9z89" name="IntroduceTag.xml" path="/Com/"/>
<image id="nmzba" name="PixPin_2025-06-02_19-45-29.png" path="/效果图/主页参考/"/>
<image id="nmzbb" name="PixPin_2025-06-02_14-52-32.png" path="/效果图/主页参考/"/>
<image id="nmzbc" name="20250602193216_1.jpg" path="/效果图/主页参考/"/>
<image id="nmzbd" name="Trials-Rising06092021-103622-69962.jpg" path="/效果图/主页参考/"/>
<image id="nmzbe" name="Battlefield-103092021-020927-34337.jpg" path="/效果图/主页参考/"/>
<image id="nmzbf" name="Brawlout06232020-111349-88282.jpg" path="/效果图/主页参考/"/>
<image id="nmzbg" name="Forza-Horizon-407142020-072335-48421.jpg" path="/效果图/主页参考/"/>
<image id="nmzbh" name="Overwatch01202022-121231-39980.jpg" path="/效果图/主页参考/"/>
<image id="nmzbi" name="Star-Wars-Battlefront09132020-012635-4501.jpg" path="/效果图/主页参考/"/>
<image id="nmzbj" name="The-King-of-Fighters-XIV06112021-075157-84128.jpg" path="/效果图/主页参考/"/>
<image id="nmzbk" name="Tom-Clancys-Rainbow-Six-Siege07172020-095237-84280.jpg" path="/效果图/主页参考/"/>
<image id="nmzbl" name="Tom-Clancys-Rainbow-Six-Siege07172020-095450-32422.jpg" path="/效果图/"/>
<image id="nmzbm" name="back1.png" path="/Images/"/>
<image id="nmzba" name="PixPin_2025-06-02_19-45-29.png" path="/Assets/效果图/主页参考/"/>
<image id="nmzbb" name="PixPin_2025-06-02_14-52-32.png" path="/Assets/效果图/主页参考/"/>
<image id="nmzbc" name="20250602193216_1.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbd" name="Trials-Rising06092021-103622-69962.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbe" name="Battlefield-103092021-020927-34337.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbf" name="Brawlout06232020-111349-88282.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbg" name="Forza-Horizon-407142020-072335-48421.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbh" name="Overwatch01202022-121231-39980.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbi" name="Star-Wars-Battlefront09132020-012635-4501.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbj" name="The-King-of-Fighters-XIV06112021-075157-84128.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbk" name="Tom-Clancys-Rainbow-Six-Siege07172020-095237-84280.jpg" path="/Assets/效果图/主页参考/"/>
<image id="nmzbl" name="Tom-Clancys-Rainbow-Six-Siege07172020-095450-32422.jpg" path="/Assets/效果图/"/>
<image id="nmzbm" name="back1.png" path="/Assets/Images/"/>
<component id="lvqln" name="HomeButtonGroups.xml" path="/Com/Home/"/>
<component id="lvqlo" name="BtnHomeSmall.xml" path="/Com/Home/"/>
<component id="lvqlp" name="BtnHomeMedium.xml" path="/Com/Home/"/>
<component id="lvqlq" name="BtnHomeMap.xml" path="/Com/Home/"/>
<image id="lvqlr" name="Settings.png" path="/Images/"/>
<image id="lvqls" name="OnOff.png" path="/Images/"/>
<image id="lvqlv" name="Bell.png" path="/Images/"/>
<image id="lvqlw" name="Cup.png" path="/Images/"/>
<image id="lvqlx" name="Fire.png" path="/Images/"/>
<image id="lvqly" name="Bag.png" path="/Images/"/>
<component id="lvqlz" name="BagPanel.xml" path="/" exported="true"/>
<image id="lvqlr" name="Settings.png" path="/Assets/Images/"/>
<image id="lvqls" name="OnOff.png" path="/Assets/Images/"/>
<image id="lvqlv" name="Bell.png" path="/Assets/Images/"/>
<image id="lvqlw" name="Cup.png" path="/Assets/Images/"/>
<image id="lvqlx" name="Fire.png" path="/Assets/Images/"/>
<image id="lvqly" name="Bag.png" path="/Assets/Images/"/>
<component id="lvqlz" name="BagPanel.xml" path="/Bag/" exported="true"/>
<component id="lvql10" name="HomeMainPage.xml" path="/Com/Home/Pages/" exported="true"/>
<component id="lvql11" name="HomeActivityPage.xml" path="/Com/Home/Pages/" exported="true"/>
<component id="lvql12" name="HomeRankPage.xml" path="/Com/Home/Pages/" exported="true"/>
<component id="lvql13" name="HomeStatisticsPage.xml" path="/Com/Home/Pages/" exported="true"/>
<component id="lvql14" name="FishBagPanel.xml" path="/Com/" exported="true"/>
<component id="lvql15" name="MakePanel.xml" path="/" exported="true"/>
<component id="lvql16" name="MapPanel.xml" path="/" exported="true"/>
<component id="lvql15" name="MakePanel.xml" path="/Make/" exported="true"/>
<component id="lvql16" name="MapPanel.xml" path="/Map/" exported="true"/>
<component id="j6rn17" name="SettingSubTitleItem.xml" path="/Com/Items/" exported="true"/>
<component id="j6rn18" name="SettingMask.xml" path="/Com/"/>
<component id="5dtx1b" name="KeyboardInput.xml" path="/Com/Items/"/>
<component id="5dtx1c" name="SettingInputItem.xml" path="/Com/Items/" exported="true"/>
<component id="5dtx1d" name="InputWaitingCom.xml" path="/Com/" exported="true"/>
<component id="n5ne1e" name="ChatTestPanel.xml" path="/" exported="true"/>
<component id="n5ne1e" name="ChatTestPanel.xml" path="/Chat/" exported="true"/>
<component id="n5ne1f" name="ChatItem.xml" path="/Com/" exported="true"/>
<component id="9zbo1g" name="LoginPanel.xml" path="/" exported="true"/>
<component id="uq3a1h" name="BagItem.xml" path="/Com/Items/" exported="true"/>
<component id="r6au1h" name="ItemDetailsPanel.xml" path="/" exported="true"/>
<image id="r6au1i" name="20251014232148_1.jpg" path="/效果图/背包参考/"/>
<image id="r6au1j" name="20251010210536_1.jpg" path="/效果图/背包参考/"/>
<image id="r6au1k" name="20251014232129_1.jpg" path="/效果图/背包参考/"/>
<image id="nzfp1l" name="20251018230825_1.jpg" path="/效果图/背包参考/"/>
<image id="nzfp1m" name="20251018230927_1.jpg" path="/效果图/背包参考/"/>
<component id="nzfp1n" name="GearItem.xml" path="/Com/" exported="true"/>
<component id="nzfp1o" name="ItemDetailsContent.xml" path="/Com/" exported="true"/>
<component id="nzfp1p" name="ItemBasicInfoTag.xml" path="/Com/" exported="true"/>
<component id="nzfp1q" name="ItemGearInfoTag.xml" path="/Com/"/>
<component id="xd2f1r" name="ItemPopUp.xml" path="/Com/"/>
<component id="9zbo1g" name="LoginPanel.xml" path="/Login/" exported="true"/>
<component id="uq3a1h" name="BagItem.xml" path="/Bag/Item/" exported="true"/>
<component id="r6au1h" name="ItemDetailsPanel.xml" path="/Bag/" exported="true"/>
<image id="r6au1i" name="20251014232148_1.jpg" path="/Assets/效果图/背包参考/"/>
<image id="r6au1j" name="20251010210536_1.jpg" path="/Assets/效果图/背包参考/"/>
<image id="r6au1k" name="20251014232129_1.jpg" path="/Assets/效果图/背包参考/"/>
<image id="nzfp1l" name="20251018230825_1.jpg" path="/Assets/效果图/背包参考/"/>
<image id="nzfp1m" name="20251018230927_1.jpg" path="/Assets/效果图/背包参考/"/>
<component id="nzfp1n" name="BagGearItem.xml" path="/Bag/" exported="true"/>
<component id="nzfp1o" name="ItemDetailsContent.xml" path="/Bag/Item/" exported="true"/>
<component id="nzfp1p" name="ItemBasicInfoTag.xml" path="/Bag/Item/" exported="true"/>
<component id="nzfp1q" name="ItemGearInfoTag.xml" path="/Bag/Item/"/>
<component id="xd2f1r" name="ItemPopUp.xml" path="/Bag/Item/"/>
<component id="oome9" name="ShopGearItem.xml" path="/Shop/Com/" exported="true"/>
<component id="drkwb" name="SelectTextItem.xml" path="/Shop/Com/"/>
<image id="fcfg0" name="市场.jpg" path="/Shop/x效果图/"/>
<image id="fcfg1" name="鱼护.jpg" path="/Shop/x效果图/"/>
<image id="fcfg2" name="码头.jpg" path="/Shop/x效果图/"/>
<image id="fcfg3" name="鱼市.jpg" path="/Shop/x效果图/"/>
<image id="fcfg4" name="自动贩卖机.jpg" path="/Shop/x效果图/"/>
<image id="fcfg5" name="咖啡店.jpg" path="/Shop/x效果图/"/>
<image id="fcfg6" name="食品店.jpg" path="/Shop/x效果图/"/>
<image id="r03uc" name="20250521000344_1.jpg" path="/Shop/x效果图/"/>
<image id="r03ud" name="20250521221501_1.jpg" path="/Shop/x效果图/"/>
<image id="r03ue" name="20250521221613_1.jpg" path="/Shop/x效果图/"/>
<image id="r03uf" name="20250521221623_1.jpg" path="/Shop/x效果图/"/>
<image id="r03ug" name="20250521221650_1.jpg" path="/Shop/x效果图/"/>
<image id="r03uh" name="20250521221757_1.jpg" path="/Shop/x效果图/"/>
<image id="r03ui" name="20250521221819_1.jpg" path="/Shop/x效果图/"/>
<image id="r03uj" name="20250521221928_1.jpg" path="/Shop/x效果图/"/>
<image id="r03uk" name="20250521221948_1.jpg" path="/Shop/x效果图/"/>
<image id="r03ul" name="20250521222125_1.jpg" path="/Shop/x效果图/"/>
<image id="r03um" name="20250521222215_1.jpg" path="/Shop/x效果图/"/>
<image id="r03un" name="20250521222223_1.jpg" path="/Shop/x效果图/"/>
<image id="r03uo" name="20250521222232_1.jpg" path="/Shop/x效果图/"/>
<image id="r03up" name="20250521222522_1.jpg" path="/Shop/x效果图/"/>
<image id="r03uq" name="20250521222909_1.jpg" path="/Shop/x效果图/"/>
<component id="fcfg8" name="FishingShopPanel.xml" path="/Shop/" exported="true"/>
</resources>
<publish name="" path="../Assets/Resources/Fgui/Main" packageCount="2" genCode="true"/>
</packageDescription>

View File

@@ -1,31 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packageDescription id="146ra2lq">
<resources>
<image id="fcfg0" name="市场.jpg" path="/x效果图/"/>
<image id="fcfg1" name="鱼护.jpg" path="/x效果图/"/>
<image id="fcfg2" name="码头.jpg" path="/x效果图/"/>
<image id="fcfg3" name="鱼市.jpg" path="/x效果图/"/>
<image id="fcfg4" name="自动贩卖机.jpg" path="/x效果图/"/>
<image id="fcfg5" name="咖啡店.jpg" path="/x效果图/"/>
<image id="fcfg6" name="食品店.jpg" path="/x效果图/"/>
<component id="fcfg8" name="FishingShopPanel.xml" path="/" exported="true"/>
<component id="oome9" name="ShopGearItem.xml" path="/Com/" exported="true"/>
<component id="drkwb" name="SelectTextItem.xml" path="/Com/"/>
<image id="r03uc" name="20250521000344_1.jpg" path="/x效果图/"/>
<image id="r03ud" name="20250521221501_1.jpg" path="/x效果图/"/>
<image id="r03ue" name="20250521221613_1.jpg" path="/x效果图/"/>
<image id="r03uf" name="20250521221623_1.jpg" path="/x效果图/"/>
<image id="r03ug" name="20250521221650_1.jpg" path="/x效果图/"/>
<image id="r03uh" name="20250521221757_1.jpg" path="/x效果图/"/>
<image id="r03ui" name="20250521221819_1.jpg" path="/x效果图/"/>
<image id="r03uj" name="20250521221928_1.jpg" path="/x效果图/"/>
<image id="r03uk" name="20250521221948_1.jpg" path="/x效果图/"/>
<image id="r03ul" name="20250521222125_1.jpg" path="/x效果图/"/>
<image id="r03um" name="20250521222215_1.jpg" path="/x效果图/"/>
<image id="r03un" name="20250521222223_1.jpg" path="/x效果图/"/>
<image id="r03uo" name="20250521222232_1.jpg" path="/x效果图/"/>
<image id="r03up" name="20250521222522_1.jpg" path="/x效果图/"/>
<image id="r03uq" name="20250521222909_1.jpg" path="/x效果图/"/>
</resources>
<publish name="" path="../Assets/Resources/Fgui/Shop" packageCount="2" genCode="true"/>
</packageDescription>

View File

@@ -0,0 +1 @@
{"url":"ui://hxr7rc7pfcfg8","name":"FishingShopPanel","scriptType":"panel","isCustomName":false,"customName":"","annotation":"","member":{}}

View File

@@ -0,0 +1 @@
{"url":"ui://hxr7rc7poome9","name":"ShopGearItem","scriptType":"component","isCustomName":false,"customName":"","annotation":"","member":{}}