diff --git a/TheStrongestSnail/Assets/HZB.meta b/TheStrongestSnail/Assets/HZB.meta new file mode 100644 index 0000000..a00b53f --- /dev/null +++ b/TheStrongestSnail/Assets/HZB.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 32d2d8bdea868e946abaa072cd0ae8fc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/TheStrongestSnail/Assets/HZB/UnionPage16.cs b/TheStrongestSnail/Assets/HZB/UnionPage16.cs new file mode 100644 index 0000000..929039f --- /dev/null +++ b/TheStrongestSnail/Assets/HZB/UnionPage16.cs @@ -0,0 +1,37 @@ +using Newtonsoft.Json; +using System.Collections; +using System.Collections.Generic; +using System.Threading.Tasks; +using UnityEngine; + +public class UnionPage16 : MonoBehaviour +{ + UnionPage unionPage =new UnionPage(); + public async Task queryUnionPage(int orderByDesc) // 5.2.6 + { + // 准备请求的头部信息,包含授权令牌 + Dictionary head16 = new Dictionary + { + { "Authorization", Global.global.serverResponse.data.token } + }; + + // 请求体 + UnionPageBody unionPageBody = new UnionPageBody + { + //userId = Global.global.serverResponse.data.userId, + orderByDesc = orderByDesc + }; + + // 异步发送请求 + string response16 = await web.SendRequest(web.URL + "/snail/union/queryPage", "POST", JsonUtility.ToJson(unionPageBody), head16); + + // 调试输出接收到的响应 + Debug.Log("1.6查询工会页面" + response16); + + // 将响应反序列化为对象 + UnionPage unionPage = JsonConvert.DeserializeObject(response16); + //Debug.Log("8==================================D"+unionPage.Data.DataList[0].LeaderUserName); + return unionPage; + + } +} diff --git a/TheStrongestSnail/Assets/HZB/UnionPage16.cs.meta b/TheStrongestSnail/Assets/HZB/UnionPage16.cs.meta new file mode 100644 index 0000000..2c9857d --- /dev/null +++ b/TheStrongestSnail/Assets/HZB/UnionPage16.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 014dd20b3c78ff94c89f0b6607ff6c45 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/TheStrongestSnail/Assets/Scripts/Login/Global.cs b/TheStrongestSnail/Assets/Scripts/Login/Global.cs index 8b61429..a07113b 100644 --- a/TheStrongestSnail/Assets/Scripts/Login/Global.cs +++ b/TheStrongestSnail/Assets/Scripts/Login/Global.cs @@ -307,3 +307,36 @@ public class Body518 } +//================================================================================== + +//工会分页 +public class UnionPageBody//请求体 +{ + public int orderByDesc { get; set; } +} + +public class UnionDataInPage +{ + public int Id { get; set; } + public string Name { get; set; } + public string Cover { get; set; } + public int Level { get; set; } + public string Slogan { get; set; } + public int LeaderId { get; set; } + public string LeaderUserName { get; set; } + public string CreateTime { get; set; } // 由于createTime可能为null,且类型未明确,这里使用object类型,可根据实际情况调整为DateTime?或其他类型 + public string UpdateTime { get; set; } +} + +public class UnionPageData +{ + public int PageNo { get; set; } + public int PageSize { get; set; } + public int TotalCount { get; set; } + public List DataList { get; set; } +} + +public class UnionPage : Response +{ + public UnionPageData Data { get; set; } +} diff --git a/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs b/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs index 70145ac..42f5871 100644 --- a/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs +++ b/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs @@ -6,7 +6,8 @@ public class TradeUnion : MonoBehaviour { public GameObject gonghuiPrefab; public Transform content; - + public int count; + public List dataList = new List(); // Start is called before the first frame update void Start() @@ -15,12 +16,24 @@ public class TradeUnion : MonoBehaviour } - public void ReadData() + public async void ReadData() { + UnionPage unionPage = new UnionPage(); + UnionPage16 unionPage16 = new UnionPage16(); + unionPage = await unionPage16.queryUnionPage(1); + Debug.Log(unionPage.Data.TotalCount); + count = unionPage.Data.TotalCount; + dataList = unionPage.Data.DataList; + for(int i = 0; i < dataList.Count; i++) + { + GameObject union = GameObject.Instantiate(gonghuiPrefab, content); + union.name = "union_" + i; + //这里动态挂载公会脚本 + } } - + // Update is called once per frame void Update() { diff --git a/TheStrongestSnail/Assets/UIScene/TradeUnion_1.unity b/TheStrongestSnail/Assets/UIScene/TradeUnion_1.unity index 6fb4c95..67db780 100644 --- a/TheStrongestSnail/Assets/UIScene/TradeUnion_1.unity +++ b/TheStrongestSnail/Assets/UIScene/TradeUnion_1.unity @@ -561,123 +561,123 @@ PrefabInstance: m_Modifications: - target: {fileID: 3328444917651034836, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444917651034836, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444917651034836, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.x - value: 992.71 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444917651034836, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.y - value: 218.7623 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444917651034836, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.x - value: 496.355 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444917651034836, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -736.86804 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918051287212, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918051287212, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918051287212, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.x - value: 992.71 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918051287212, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.y - value: 218.7623 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918051287212, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.x - value: 496.355 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918051287212, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -318.54346 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918217574137, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918217574137, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918217574137, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.x - value: 992.71 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918217574137, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.y - value: 218.7623 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918217574137, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.x - value: 496.355 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444918217574137, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -1155.1926 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919238924444, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919238924444, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919238924444, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.x - value: 992.71 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919238924444, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.y - value: 218.7623 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919238924444, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.x - value: 496.355 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919238924444, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -946.03033 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919442573392, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919442573392, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919442573392, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.x - value: 992.71 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919442573392, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.y - value: 218.7623 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919442573392, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.x - value: 496.355 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3328444919442573392, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -527.70575 + value: 0 objectReference: {fileID: 0} - target: {fileID: 8474050971548587741, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_Pivot.x @@ -773,27 +773,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8474050972645106743, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 8474050972645106743, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 8474050972645106743, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.x - value: 992.71 + value: 0 objectReference: {fileID: 0} - target: {fileID: 8474050972645106743, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_SizeDelta.y - value: 218.7623 + value: 0 objectReference: {fileID: 0} - target: {fileID: 8474050972645106743, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.x - value: 496.355 + value: 0 objectReference: {fileID: 0} - target: {fileID: 8474050972645106743, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -109.38115 + value: 0 objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 2f756025e3d87844698c7918a704b5f6, type: 3} diff --git a/TheStrongestSnail/Assets/UIScene/gonghui.prefab b/TheStrongestSnail/Assets/UIScene/gonghui.prefab index ad173b3..c46df12 100644 --- a/TheStrongestSnail/Assets/UIScene/gonghui.prefab +++ b/TheStrongestSnail/Assets/UIScene/gonghui.prefab @@ -339,7 +339,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: [] m_Sprite: {fileID: 21300000, guid: 24495a9bf1b669d4c9b1a36edfa55fc9, type: 3} - m_Type: 0 + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -427,7 +427,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: -131.33258, y: -85.3} + m_AnchoredPosition: {x: -119, y: -85.3} m_SizeDelta: {x: 325.3349, y: 60.746} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6604778934918701611 diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/GongHui.prefab b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/GongHui.prefab index 55d53fe..ca62fba 100644 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/GongHui.prefab +++ b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/GongHui.prefab @@ -140,6 +140,7 @@ MonoBehaviour: m_EditorClassIdentifier: gonghuiPrefab: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} content: {fileID: 8474050972102446216} + count: 0 --- !u!114 &8474050971548587740 MonoBehaviour: m_ObjectHideFlags: 0 @@ -475,13 +476,7 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 8474050972645106743} - - {fileID: 3328444918051287212} - - {fileID: 3328444919442573392} - - {fileID: 3328444917651034836} - - {fileID: 3328444919238924444} - - {fileID: 3328444918217574137} + m_Children: [] m_Father: {fileID: 8474050971846209640} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -701,116 +696,6 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1001 &3328444917881554181 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 8474050972102446216} - m_Modifications: - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.2120361 - objectReference: {fileID: 0} - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: -0.00012207031 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Name - value: gonghui - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d972c189b4d452a41a12319d42403545, type: 3} ---- !u!224 &8474050972645106743 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - m_PrefabInstance: {fileID: 3328444917881554181} - m_PrefabAsset: {fileID: 0} --- !u!1001 &8474050971634087437 PrefabInstance: m_ObjectHideFlags: 0 @@ -913,553 +798,3 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 7511134750381090953, guid: 2439bd7fdf8568a4ab3e38d0fcf5212d, type: 3} m_PrefabInstance: {fileID: 8474050971634087437} m_PrefabAsset: {fileID: 0} ---- !u!1001 &8474050971828812206 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 8474050972102446216} - m_Modifications: - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.2120361 - objectReference: {fileID: 0} - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: -0.00012207031 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_RootOrder - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Name - value: gonghui (4) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d972c189b4d452a41a12319d42403545, type: 3} ---- !u!224 &3328444919238924444 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - m_PrefabInstance: {fileID: 8474050971828812206} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8474050972292508002 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 8474050972102446216} - m_Modifications: - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.2120361 - objectReference: {fileID: 0} - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: -0.00012207031 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_RootOrder - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Name - value: gonghui (2) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d972c189b4d452a41a12319d42403545, type: 3} ---- !u!224 &3328444919442573392 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - m_PrefabInstance: {fileID: 8474050972292508002} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8474050972406199270 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 8474050972102446216} - m_Modifications: - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.2120361 - objectReference: {fileID: 0} - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: -0.00012207031 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_RootOrder - value: 3 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Name - value: gonghui (3) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d972c189b4d452a41a12319d42403545, type: 3} ---- !u!224 &3328444917651034836 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - m_PrefabInstance: {fileID: 8474050972406199270} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8474050972980111307 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 8474050972102446216} - m_Modifications: - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.2120361 - objectReference: {fileID: 0} - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: -0.00012207031 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_RootOrder - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Name - value: gonghui (5) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d972c189b4d452a41a12319d42403545, type: 3} ---- !u!224 &3328444918217574137 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - m_PrefabInstance: {fileID: 8474050972980111307} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8474050973084340638 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 8474050972102446216} - m_Modifications: - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.2120361 - objectReference: {fileID: 0} - - target: {fileID: 6604778935675090757, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: -0.00012207031 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6604778935691010357, guid: d972c189b4d452a41a12319d42403545, type: 3} - propertyPath: m_Name - value: gonghui (1) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d972c189b4d452a41a12319d42403545, type: 3} ---- !u!224 &3328444918051287212 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 6604778935691010354, guid: d972c189b4d452a41a12319d42403545, type: 3} - m_PrefabInstance: {fileID: 8474050973084340638} - m_PrefabAsset: {fileID: 0} diff --git a/TheStrongestSnail/Assets/res/Battle_Royale_UI/End/solt_2.png.meta b/TheStrongestSnail/Assets/res/Battle_Royale_UI/End/solt_2.png.meta index 6e1b4ca..a534511 100644 --- a/TheStrongestSnail/Assets/res/Battle_Royale_UI/End/solt_2.png.meta +++ b/TheStrongestSnail/Assets/res/Battle_Royale_UI/End/solt_2.png.meta @@ -48,7 +48,7 @@ TextureImporter: alignment: 0 spritePivot: {x: 0.5, y: 0.5} spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteBorder: {x: 56, y: 62, z: 58, w: 83} spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 @@ -108,7 +108,7 @@ TextureImporter: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 + internalID: 1537655665 vertices: [] indices: edges: []