diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8.meta b/TheStrongestSnail/Assets/Scripts/AddressSystem8.meta new file mode 100644 index 0000000..865bdc4 --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7817750da9f5560439d1eb63ee627b12 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/AdressList83.cs b/TheStrongestSnail/Assets/Scripts/AddressSystem8/AdressList83.cs new file mode 100644 index 0000000..73c736b --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/AdressList83.cs @@ -0,0 +1,56 @@ +using Newtonsoft.Json; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading.Tasks; +using UnityEngine; + +public class AdressList83 : MonoBehaviour +{ + public AdressResponse adressResponse; + public async Task AdressList() + { + // 准备请求的头部信息,包含授权令牌 + Dictionary head83 = new Dictionary + { + { "Authorization", Global.global.serverResponse.data.token } + }; + + // 异步发送请求 + string response83 = await web.SendRequest(web.URL + "/snail/area/list", "POST", "{}", head83); + + // 调试输出接收到的响应 + Debug.Log("8.3地址列表: " + response83); + + // 将响应反序列化为 AdressResponse 对象 + try + { + adressResponse = JsonConvert.DeserializeObject(response83); + Debug.Log(adressResponse.data + "======================================="); + + // 遍历 data 列表中的每个地址 + if (adressResponse.data != null) + { + foreach (var address in adressResponse.data) + { + Debug.Log($"地址ID: {address.id}"); + Debug.Log($"收件人: {address.receiveName}"); + Debug.Log($"电话号码: {address.receivePhone}"); + Debug.Log($"区域: {address.area}"); + Debug.Log($"详细地址: {address.address}"); + Debug.Log($"状态: {address.status}"); + Debug.Log($"创建时间: {address.createTime}"); + } + } + } + catch (Exception ex) + { + Debug.LogError("反序列化响应失败: " + ex.Message); + } + + // 返回解析后的对象 + return adressResponse; + } +} + + diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/AdressList83.cs.meta b/TheStrongestSnail/Assets/Scripts/AddressSystem8/AdressList83.cs.meta new file mode 100644 index 0000000..08e8f27 --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/AdressList83.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a9168746876aa5641a232e18f6521f0f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/areaInfo84.cs b/TheStrongestSnail/Assets/Scripts/AddressSystem8/areaInfo84.cs new file mode 100644 index 0000000..dbff8ad --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/areaInfo84.cs @@ -0,0 +1,41 @@ +using Newtonsoft.Json; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading.Tasks; +using UnityEngine; + +//8.4查看地址详情 +public class areaInfo84 : MonoBehaviour +{ + public AdressInfoResponse adressInfoResponse; + + public async Task AdressInfo(int areaId) + { + // 准备请求的头部信息,包含授权令牌 + Dictionary head84 = new Dictionary + { + { "Authorization", Global.global.serverResponse.data.token } + }; + + // 异步发送请求 + string response84 = await web.SendRequest(web.URL + "/snail/area/queryInfo?areaId=" + areaId, "GET", "{}", head84); + + // 调试输出接收到的响应 + Debug.Log("8.4地址详情====================: " + response84); + + // 将响应反序列化为 AdressInfoResponse 对象 + try + { + adressInfoResponse = JsonConvert.DeserializeObject(response84); + } + catch (Exception ex) + { + Debug.LogError("反序列化响应失败: " + ex.Message); + } + + // 返回解析后的对象 + return adressInfoResponse; + } + +} \ No newline at end of file diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/areaInfo84.cs.meta b/TheStrongestSnail/Assets/Scripts/AddressSystem8/areaInfo84.cs.meta new file mode 100644 index 0000000..ad05561 --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/areaInfo84.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9ccf0e8c5e7c5c04cad7d8d51f60f45a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/newAddress81.cs b/TheStrongestSnail/Assets/Scripts/AddressSystem8/newAddress81.cs new file mode 100644 index 0000000..a5b303a --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/newAddress81.cs @@ -0,0 +1,54 @@ +using Newtonsoft.Json; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading.Tasks; +using UnityEngine; + +public class newAddress81 : MonoBehaviour +{ + //返回的(解析后) + public newAddressResponse newAddressResponse; + + + //public async Task queryKnightBetResult(int KnightId) // 5.2.2//需传入KightId + public async Task newAddress(string receiveName, string receivePhone,string area, string address) + { + // 准备请求的头部信息,包含授权令牌 + Dictionary head81 = new Dictionary + { + { "Authorization", Global.global.serverResponse.data.token } + }; + + // 请求体 + newAddressBody newAddressBody = new newAddressBody + { + receivePhone = receivePhone, + area = area, + address = address, + receiveName = receiveName, + }; + //Debug.Log("8.1=====入参======"+ JsonConvert.SerializeObject(newAddressBody)); + // 异步发送请求 + //string response525 = await web.SendRequest(web.URL + "/snail/gameKnight/queryUserBetResult", "POST", JsonUtility.ToJson(queryKnightRoomListBody), head525); + + string response81 = await web.SendRequest(web.URL + "/snail/area/save", "POST", JsonConvert.SerializeObject(newAddressBody), head81); + + // 调试输出接收到的响应 + Debug.Log("8.1新增地址:======== " + response81); + + //将响应反序列化为 KnightRoomList 对象 + try + { + newAddressResponse = JsonConvert.DeserializeObject(response81); + //Debug.Log(newAddressResponse.data+""); + } + catch (Exception ex) + { + Debug.LogError("反序列化响应失败: " + ex.Message); + } + + // 返回解析后的 对象 + return newAddressResponse; + } +} diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/newAddress81.cs.meta b/TheStrongestSnail/Assets/Scripts/AddressSystem8/newAddress81.cs.meta new file mode 100644 index 0000000..93b78dc --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/newAddress81.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8bcf0ca7e73b01340b8599d93b481d20 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/updateAddress82.cs b/TheStrongestSnail/Assets/Scripts/AddressSystem8/updateAddress82.cs new file mode 100644 index 0000000..7f94ff8 --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/updateAddress82.cs @@ -0,0 +1,55 @@ +using Newtonsoft.Json; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading.Tasks; +using UnityEngine; + +public class updateAddress82 : MonoBehaviour +{ + //返回的(解析后) + public updateAddressResponse updateAddressResponse; + + + //public async Task queryKnightBetResult(int KnightId) // 5.2.2//需传入KightId + public async Task updateAddress(int id,string receiveName, string receivePhone, string area, string address) + { + // 准备请求的头部信息,包含授权令牌 + Dictionary head81 = new Dictionary + { + { "Authorization", Global.global.serverResponse.data.token } + }; + + // 请求体 + updateAddressBody updateAddressBody = new updateAddressBody + { + id = id, + receivePhone = receivePhone, + area = area, + address = address, + receiveName = receiveName, + }; + Debug.Log("8.2=====入参======" + JsonConvert.SerializeObject(updateAddressBody)); + // 异步发送请求 + //string response525 = await web.SendRequest(web.URL + "/snail/gameKnight/queryUserBetResult", "POST", JsonUtility.ToJson(queryKnightRoomListBody), head525); + + string response82 = await web.SendRequest(web.URL + "/snail/area/update", "POST", JsonConvert.SerializeObject(updateAddressBody), head81); + + // 调试输出接收到的响应 + Debug.Log("8.2修改地址:+++++++++++++ " + response82); + + //将响应反序列化为 KnightRoomList 对象 + try + { + updateAddressResponse = JsonConvert.DeserializeObject(response82); + Debug.Log(updateAddressResponse.data + "======================================="); + } + catch (Exception ex) + { + Debug.LogError("反序列化响应失败: " + ex.Message); + } + + // 返回解析后的 对象 + return updateAddressResponse; + } +} diff --git a/TheStrongestSnail/Assets/Scripts/AddressSystem8/updateAddress82.cs.meta b/TheStrongestSnail/Assets/Scripts/AddressSystem8/updateAddress82.cs.meta new file mode 100644 index 0000000..8a44c26 --- /dev/null +++ b/TheStrongestSnail/Assets/Scripts/AddressSystem8/updateAddress82.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 116c11222e679614485aa33594326768 +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 70c9691..e91e36f 100644 --- a/TheStrongestSnail/Assets/Scripts/Login/Global.cs +++ b/TheStrongestSnail/Assets/Scripts/Login/Global.cs @@ -765,4 +765,68 @@ public class InviteUserInfo public string memberTime { get; set; } public bool? isMember { get; set; } public string unionId { get; set; } +} +//=========81========================================== +//娣诲姞鍦板潃璇锋眰浣 +public class newAddressBody +{ + public string receiveName { get; set; } + public string receivePhone { get; set; } + public string area { get; set; } + public string address { get; set; } +} +public class newAddressResponse : Response +{ + public string data; +} +//======8.2================================================ +//璇锋眰浣 +public class updateAddressBody +{ + public int id { get; set; } + public string receiveName { get; set; } + public string receivePhone { get; set; } + public string area { get; set; } + public string address { get; set; } +} +//杩斿洖 +public class updateAddressResponse : Response +{ + public string data; +} +//=========8.3================================================= +[Serializable] +public class Address +{ + public int id; + public int userId; + public string receiveName; + public string receivePhone; + public string area; + public string address; + public int status; + public string createTime; +} + +[Serializable] +public class AdressResponse : Response +{ + public List
data; // 鍖呭惈澶氫釜鍦板潃鐨勫垪琛 +} +//8.4=================================================================== +public class AdressInfoResponse : Response +{ + public AddressInfoData data { get; set; } +} + +public class AddressInfoData +{ + public int id { get; set; } + public int userId { get; set; } + public string receiveName { get; set; } + public string receivePhone { get; set; } + public string area { get; set; } + public string address { get; set; } + public int status { get; set; } + public string createTime { get; set; } } \ No newline at end of file diff --git a/TheStrongestSnail/Assets/font_textmeshpro/AlibabaPuHuiTi-3-95-ExtraBold/hyl.asset b/TheStrongestSnail/Assets/font_textmeshpro/AlibabaPuHuiTi-3-95-ExtraBold/hyl.asset index d48c76b..cb47c1b 100644 --- a/TheStrongestSnail/Assets/font_textmeshpro/AlibabaPuHuiTi-3-95-ExtraBold/hyl.asset +++ b/TheStrongestSnail/Assets/font_textmeshpro/AlibabaPuHuiTi-3-95-ExtraBold/hyl.asset @@ -53,7 +53,7 @@ Material: - _ColorMask: 15 - _CullMode: 0 - _Diffuse: 0.5 - - _FaceDilate: 0.2 + - _FaceDilate: 0.07 - _FaceUVSpeedX: 0 - _FaceUVSpeedY: 0 - _GlowInner: 0.05 @@ -71,8 +71,8 @@ Material: - _PerspectiveFilter: 0.875 - _Reflectivity: 10 - _ScaleRatioA: 0.90909094 - - _ScaleRatioB: 0.5568182 - - _ScaleRatioC: 0.5568182 + - _ScaleRatioB: 0.675 + - _ScaleRatioC: 0.675 - _ScaleX: 1 - _ScaleY: 1 - _ShaderFlags: 0 diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddress.png b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddress.png deleted file mode 100644 index 2fa80cc..0000000 Binary files a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddress.png and /dev/null differ diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddress.png.meta b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddress.png.meta deleted file mode 100644 index 60425a2..0000000 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddress.png.meta +++ /dev/null @@ -1,123 +0,0 @@ -fileFormatVersion: 2 -guid: a0af532a6556bd549b0880f90398d8d9 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddressPanel.prefab b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddressPanel.prefab index d2393cc..0e9ba36 100644 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddressPanel.prefab +++ b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/DeliveryAddressPanel.prefab @@ -785,6 +785,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 6814293798504351435} + - {fileID: 603541850251641281} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -831,3 +832,124 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &5443940138495178700 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6814293799997464171} + m_Modifications: + - target: {fileID: 4894555910357792268, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Name + value: retrun_BTN + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.x + value: 175 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.y + value: 155 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 472 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.y + value: -1059 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: retbutton + value: + objectReference: {fileID: 603541850251641282} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: ClosureObj + value: + objectReference: {fileID: 6814293799997464172} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dac544bca4358514d949413f04b4421c, type: 3} +--- !u!224 &603541850251641281 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 5443940138495178700} + m_PrefabAsset: {fileID: 0} +--- !u!114 &603541850251641282 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 4894555910357792270, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 5443940138495178700} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/EditAddressPanel.prefab b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/EditAddressPanel.prefab index b16f370..8037bf6 100644 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/EditAddressPanel.prefab +++ b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/EditAddressPanel.prefab @@ -2374,6 +2374,7 @@ RectTransform: - {fileID: 1113922771988073597} - {fileID: 1113922771082363277} - {fileID: 1113922770701641757} + - {fileID: 784556329533193233} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -4035,3 +4036,124 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &5264630415309015580 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1113922771235768986} + m_Modifications: + - target: {fileID: 4894555910357792268, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Name + value: retrun_BTN + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.x + value: 175 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.y + value: 155 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 472 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.y + value: -1059 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: retbutton + value: + objectReference: {fileID: 784556329533193234} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: ClosureObj + value: + objectReference: {fileID: 1113922771235768985} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dac544bca4358514d949413f04b4421c, type: 3} +--- !u!224 &784556329533193233 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 5264630415309015580} + m_PrefabAsset: {fileID: 0} +--- !u!114 &784556329533193234 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 4894555910357792270, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 5264630415309015580} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/NewAddressPanel.prefab b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/NewAddressPanel.prefab index 9ca8a13..bf0c504 100644 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/NewAddressPanel.prefab +++ b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/NewAddressPanel.prefab @@ -2795,6 +2795,7 @@ RectTransform: - {fileID: 2987401724065773185} - {fileID: 2987401724971481969} - {fileID: 2987401723207144161} + - {fileID: 8316602487839740732} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -4035,3 +4036,124 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &3496611135413249329 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2987401724823548006} + m_Modifications: + - target: {fileID: 4894555910357792268, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Name + value: retrun_BTN + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.x + value: 175 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.y + value: 155 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 472 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.y + value: -1059 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: retbutton + value: + objectReference: {fileID: 8316602487839740735} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: ClosureObj + value: + objectReference: {fileID: 2987401724823548005} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dac544bca4358514d949413f04b4421c, type: 3} +--- !u!224 &8316602487839740732 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 3496611135413249329} + m_PrefabAsset: {fileID: 0} +--- !u!114 &8316602487839740735 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 4894555910357792270, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 3496611135413249329} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/UI.unity b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/UI.unity index eb2897a..9d2c36c 100644 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/UI.unity +++ b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/UI.unity @@ -221,6 +221,112 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 2987401724823548006, guid: eff2da918a3a81741b2b794c44b1545e, type: 3} m_PrefabInstance: {fileID: 2987401724347075888} m_PrefabAsset: {fileID: 0} +--- !u!1001 &1193514461 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665540835} + m_Modifications: + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_SizeDelta.x + value: 1162.6611 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_SizeDelta.y + value: 1732.763 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 124.22449 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768855, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_Name + value: ShiMingPanel + objectReference: {fileID: 0} + - target: {fileID: 3485144752579768855, guid: 15649166b70c43240967a238cd4d632b, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 15649166b70c43240967a238cd4d632b, type: 3} +--- !u!224 &1193514462 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} + m_PrefabInstance: {fileID: 1193514461} + m_PrefabAsset: {fileID: 0} --- !u!1 &1417607025 GameObject: m_ObjectHideFlags: 0 @@ -388,12 +494,12 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1956391926} - - {fileID: 1911502082} - {fileID: 1809415960} - {fileID: 1710366148} - {fileID: 610794838} - {fileID: 1616090942} - {fileID: 3427659398288222956} + - {fileID: 1193514462} m_Father: {fileID: 0} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -496,11 +602,6 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 9180338299762767603, guid: 78183fe970ab5ef41a9ef3204049b95b, type: 3} m_PrefabInstance: {fileID: 9180338299047021035} m_PrefabAsset: {fileID: 0} ---- !u!224 &1911502082 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - m_PrefabInstance: {fileID: 3485144750724106006} - m_PrefabAsset: {fileID: 0} --- !u!1 &1956391925 GameObject: m_ObjectHideFlags: 0 @@ -602,7 +703,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1113922771235768986, guid: 0c6b226cae5e67d4d8874104f6549a1b, type: 3} propertyPath: m_RootOrder - value: 6 + value: 5 objectReference: {fileID: 0} - target: {fileID: 1113922771235768986, guid: 0c6b226cae5e67d4d8874104f6549a1b, type: 3} propertyPath: m_AnchorMax.x @@ -1031,7 +1132,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 2987401724823548006, guid: eff2da918a3a81741b2b794c44b1545e, type: 3} propertyPath: m_RootOrder - value: 4 + value: 3 objectReference: {fileID: 0} - target: {fileID: 2987401724823548006, guid: eff2da918a3a81741b2b794c44b1545e, type: 3} propertyPath: m_AnchorMax.x @@ -1188,203 +1289,6 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 1113922771235768986, guid: 0c6b226cae5e67d4d8874104f6549a1b, type: 3} m_PrefabInstance: {fileID: 2370033409168089206} m_PrefabAsset: {fileID: 0} ---- !u!1001 &3485144750724106006 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 1665540835} - m_Modifications: - - target: {fileID: 3485144750719055245, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144750719055245, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144750798419882, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144750798419882, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751008908594, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751008908594, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751133563090, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751133563090, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751259854638, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751259854638, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751290517632, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751290517632, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751675136070, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751675136070, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751959085429, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144751959085429, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752037166825, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752037166825, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752076360881, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752076360881, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752295292081, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752295292081, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752476427217, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_fontAsset - value: - objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752476427217, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_sharedMaterial - value: - objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_AnchorMax.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_AnchorMin.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_SizeDelta.x - value: 1162.6611 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_SizeDelta.y - value: 1732.763 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_AnchoredPosition.y - value: 124.22449 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768852, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768855, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_Name - value: ShiMingPanel - objectReference: {fileID: 0} - - target: {fileID: 3485144752579768855, guid: 15649166b70c43240967a238cd4d632b, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 15649166b70c43240967a238cd4d632b, type: 3} --- !u!1001 &4499171976169110052 PrefabInstance: m_ObjectHideFlags: 0 @@ -1402,27 +1306,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 4499171975887902564, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 4499171975887902564, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 4499171975887902564, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 4499171975887902564, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 4499171975887902564, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 4499171975887902564, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -88.16915 + value: 0 objectReference: {fileID: 0} - target: {fileID: 4499171976153074877, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x @@ -1462,7 +1366,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 4499171977774247194, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_RootOrder - value: 5 + value: 4 objectReference: {fileID: 0} - target: {fileID: 4499171977774247194, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.x @@ -1562,27 +1466,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 5651251474283808015, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474283808015, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474283808015, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474283808015, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474283808015, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474283808015, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -1249.459 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474488669201, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x @@ -1610,27 +1514,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 5651251474696581785, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474696581785, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474696581785, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474696581785, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474696581785, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474696581785, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -281.71747 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251474719674839, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x @@ -1666,27 +1570,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 5651251475039442393, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475039442393, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475039442393, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475039442393, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475039442393, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475039442393, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -862.36237 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475057219909, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x @@ -1730,51 +1634,51 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 5651251475271687237, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475271687237, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475271687237, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475271687237, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475271687237, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475271687237, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -475.26578 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475288933020, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475288933020, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475288933020, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475288933020, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475288933020, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475288933020, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -1443.0073 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475304615424, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x @@ -1810,27 +1714,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 5651251475383322394, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475383322394, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475383322394, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475383322394, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475383322394, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475383322394, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -1055.9106 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475445431536, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x @@ -1850,27 +1754,27 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 5651251475517728602, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMax.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475517728602, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchorMin.y - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475517728602, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.x - value: 960.67 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475517728602, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_SizeDelta.y - value: 176.3383 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475517728602, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.x - value: 480.335 + value: 0 objectReference: {fileID: 0} - target: {fileID: 5651251475517728602, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} propertyPath: m_AnchoredPosition.y - value: -668.814 + value: 0 objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b7a2ccb5cba723240b3b23ecbfd825e2, type: 3} @@ -1891,7 +1795,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 6814293799997464171, guid: e5c046c3f1c62864ba234187c5a6be1e, type: 3} propertyPath: m_RootOrder - value: 3 + value: 2 objectReference: {fileID: 0} - target: {fileID: 6814293799997464171, guid: e5c046c3f1c62864ba234187c5a6be1e, type: 3} propertyPath: m_AnchorMax.x @@ -1992,7 +1896,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 9180338299762767603, guid: 78183fe970ab5ef41a9ef3204049b95b, type: 3} propertyPath: m_RootOrder - value: 2 + value: 1 objectReference: {fileID: 0} - target: {fileID: 9180338299762767603, guid: 78183fe970ab5ef41a9ef3204049b95b, type: 3} propertyPath: m_AnchorMax.x diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/newAddress.png b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/newAddress.png deleted file mode 100644 index 52bed67..0000000 Binary files a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/newAddress.png and /dev/null differ diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/newAddress.png.meta b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/newAddress.png.meta deleted file mode 100644 index 8b867b9..0000000 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/newAddress.png.meta +++ /dev/null @@ -1,123 +0,0 @@ -fileFormatVersion: 2 -guid: ac2cc817c76c4a44c844ff61b1a7a304 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddress.png b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddress.png deleted file mode 100644 index acdddf1..0000000 Binary files a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddress.png and /dev/null differ diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddress.png.meta b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddress.png.meta deleted file mode 100644 index 0715c91..0000000 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddress.png.meta +++ /dev/null @@ -1,123 +0,0 @@ -fileFormatVersion: 2 -guid: db84ce0a42735df47a553101577d6eb5 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddressPanel.prefab b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddressPanel.prefab index 7d71f9b..d630b4a 100644 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddressPanel.prefab +++ b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/oldAddressPanel.prefab @@ -896,6 +896,7 @@ RectTransform: - {fileID: 4499171976523477384} - {fileID: 4499171977627155303} - {fileID: 4499171976961916873} + - {fileID: 848762198904160490} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -971,7 +972,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -979,15 +980,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1019,11 +1020,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -1443.0073 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1073,7 +1074,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1081,15 +1082,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1121,11 +1122,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -1055.9106 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1175,7 +1176,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1183,15 +1184,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1223,11 +1224,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -668.814 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1277,7 +1278,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1285,15 +1286,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1325,11 +1326,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -862.36237 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1379,7 +1380,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1387,15 +1388,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1427,11 +1428,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -475.26578 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1481,7 +1482,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1489,15 +1490,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1529,11 +1530,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -281.71747 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1583,7 +1584,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1591,15 +1592,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1631,11 +1632,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -1249.459 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1656,6 +1657,127 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} m_PrefabInstance: {fileID: 4499171976827013220} m_PrefabAsset: {fileID: 0} +--- !u!1001 &5200421796227872487 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4499171977774247194} + m_Modifications: + - target: {fileID: 4894555910357792268, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Name + value: retrun_BTN + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.x + value: 175 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_SizeDelta.y + value: 155 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 472 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_AnchoredPosition.y + value: -1059 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: retbutton + value: + objectReference: {fileID: 848762198904160489} + - target: {fileID: 5044707777241721125, guid: dac544bca4358514d949413f04b4421c, type: 3} + propertyPath: ClosureObj + value: + objectReference: {fileID: 4499171977774247193} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dac544bca4358514d949413f04b4421c, type: 3} +--- !u!114 &848762198904160489 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 4894555910357792270, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 5200421796227872487} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!224 &848762198904160490 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4894555910357792269, guid: dac544bca4358514d949413f04b4421c, type: 3} + m_PrefabInstance: {fileID: 5200421796227872487} + m_PrefabAsset: {fileID: 0} --- !u!1001 &5651251475491101199 PrefabInstance: m_ObjectHideFlags: 0 @@ -1685,7 +1807,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMax.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.x @@ -1693,15 +1815,15 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchorMin.y - value: 0 + value: 1 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 960.67 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_SizeDelta.y - value: 0 + value: 176.3383 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalPosition.x @@ -1733,11 +1855,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 480.335 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_AnchoredPosition.y - value: 0 + value: -88.16915 objectReference: {fileID: 0} - target: {fileID: 8078615872601345387, guid: 15109fc7975ccee44ad1c6a89f0564b5, type: 3} propertyPath: m_LocalEulerAnglesHint.x diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shiming.png b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shiming.png deleted file mode 100644 index 62d5c03..0000000 Binary files a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shiming.png and /dev/null differ diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shiming.png.meta b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shiming.png.meta deleted file mode 100644 index 03ecfda..0000000 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shiming.png.meta +++ /dev/null @@ -1,123 +0,0 @@ -fileFormatVersion: 2 -guid: 99a81ddc402615d4ab668f2e69d8b6ef -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shimingFinish.png b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shimingFinish.png deleted file mode 100644 index 87b1370..0000000 Binary files a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shimingFinish.png and /dev/null differ diff --git a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shimingFinish.png.meta b/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shimingFinish.png.meta deleted file mode 100644 index a9f59b9..0000000 --- a/TheStrongestSnail/Assets/prefabs/HYLPrefabs/shimingFinish.png.meta +++ /dev/null @@ -1,123 +0,0 @@ -fileFormatVersion: 2 -guid: f236f8dab896eab4a8ae005de7865706 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: