diff --git a/Assets/PerfectWorld/Scripts/GameData/ExpTypes.cs b/Assets/PerfectWorld/Scripts/GameData/ExpTypes.cs index f0d47051ee..831fc3f399 100644 --- a/Assets/PerfectWorld/Scripts/GameData/ExpTypes.cs +++ b/Assets/PerfectWorld/Scripts/GameData/ExpTypes.cs @@ -2856,12 +2856,15 @@ namespace BrewMonster [MarshalAs(UnmanagedType.ByValArray, SizeConst = 32)] public ushort[] name; // name, max 15 characters + public string Name => ByteToStringUtils.UshortArrayToCP936String(name); [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] public byte[] file_model; // model path + public string FileModel => ByteToStringUtils.ByteArrayToUnicodeString(file_model); [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] public byte[] file_icon; // icon file + public string FileIcon => ByteToStringUtils.ByteArrayToUnicodeString(file_icon ); public uint character_combo_id; // character combo id diff --git a/Assets/PerfectWorld/Scripts/Managers/EC_HPWorkConcentrate.cs b/Assets/PerfectWorld/Scripts/Managers/EC_HPWorkConcentrate.cs index c3c170549f..53095cae26 100644 --- a/Assets/PerfectWorld/Scripts/Managers/EC_HPWorkConcentrate.cs +++ b/Assets/PerfectWorld/Scripts/Managers/EC_HPWorkConcentrate.cs @@ -7,7 +7,7 @@ namespace BrewMonster.Scripts { int m_iDoWhat; - public CECHPWorkConcentrate(int iWorkID, CECHPWorkMan pWorkMan) : base(Host_work_ID.WORK_CONCENTRATE, pWorkMan) + public CECHPWorkConcentrate(CECHPWorkMan pWorkMan) : base(Host_work_ID.WORK_CONCENTRATE, pWorkMan) { m_dwMask = Work_mask.MASK_CONCENTRATE; m_dwTransMask = Work_mask.MASK_STAND; diff --git a/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPetList.cs b/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPetList.cs index c341480815..dac7bdd214 100644 --- a/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPetList.cs +++ b/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPetList.cs @@ -2,6 +2,7 @@ using BrewMonster.Scripts.Pet; using CSNetwork.GPDataType; using ModelRenderer.Scripts.GameData; using System; +using System.IO; using TMPro; using UnityEngine; using UnityEngine.UI; @@ -66,9 +67,11 @@ namespace BrewMonster.UI bool IsPetDye(int nSlot) { - return nSlot >= 0 - && GetGameUIMan().m_pDlgPetDye.IsShow() - && GetGameUIMan().m_pDlgPetDye.GetPetSlot() == nSlot; + return false; + //TO DO: fix later + //return nSlot >= 0 + // && GetGameUIMan().m_pDlgPetDye.IsShow() + // && GetGameUIMan().m_pDlgPetDye.GetPetSlot() == nSlot; } void UpdateList() @@ -108,43 +111,58 @@ namespace BrewMonster.UI if ((pPet.GetClass() == (int)ePet_type.GP_PET_CLASS_COMBAT || pPet.GetClass() == (int)ePet_type.GP_PET_CLASS_EVOLUTION) && pPet.GetHPFactor() == 0.0f || IsPetDye(nPetSlot)) m_pImg_Icon[i].color = new Color(128f/ 255f, 128f / 255f, 128f / 255f); else - m_pImg_Icon[i].SetColor(A3DCOLORRGB(255, 255, 255)); - m_pImg_Icon[i].SetData(1); - m_pImg_Icon[i].SetDataPtr((void*)1); - PET_ESSENCE* pDBEssence = (PET_ESSENCE*)pDB.get_data_ptr(pPet.GetTemplateID(), - ID_SPACE_ESSENCE, DataType); + m_pImg_Icon[i].color = new Color(255f/ 255f, 255f / 255f, 255f / 255f); + //m_pImg_Icon[i].SetData(1); + //m_pImg_Icon[i].SetDataPtr((void*)1); + object pDBEssence = pDB.get_data_ptr((uint)pPet.GetTemplateID(), + ID_SPACE.ID_SPACE_ESSENCE, ref DataType); - if (pDBEssence) + if (pDBEssence != null) { - AString strFile; - af_GetFileTitle(pDBEssence.file_icon, strFile); - strFile.MakeLower(); + PET_ESSENCE pET = (PET_ESSENCE)pDBEssence; + string strFile = ""; + af_GetFileTitle(pET.FileIcon,out strFile); + strFile.ToLower(); m_pImg_Icon[i].SetCover(GetGameUIMan().m_pA2DSpriteIcons[CECGameUIMan::ICONS_INVENTORY], GetGameUIMan().m_IconMap[CECGameUIMan::ICONS_INVENTORY][strFile]); } else { - m_pImg_Icon[i].ClearCover(); - m_pImg_Icon[i].SetHint(_AL("")); + m_pImg_Icon[i].sprite = null; + //m_pImg_Icon[i].SetHint(_AL("")); } - m_pBtn_Evolution[i].Show(pPet.GetClass() == GP_PET_CLASS_COMBAT || pPet.GetClass() == GP_PET_CLASS_EVOLUTION); + m_pBtn_Evolution[i].gameObject.SetActive(pPet.GetClass() == (int)ePet_type.GP_PET_CLASS_COMBAT || pPet.GetClass() == (int)ePet_type.GP_PET_CLASS_EVOLUTION); } else { - m_pBtn_Summon[i].gameObject.SetActive(false); - m_pBtn_Recall[i].gameObject.SetActive(false); - m_pBtn_Detail[i].gameObject.SetActive(false); - m_pBtn_Evolution[i].Show(false); - // m_pBtn_Banish[i].Enable(false); - m_pImg_Icon[i].SetDataPtr(NULL); - m_pTxt_Level[i].SetText(_AL("")); - m_pTxt_Name[i].SetText(_AL("")); - m_pImg_Icon[i].ClearCover(); - m_pImg_Icon[i].SetHint(_AL("")); - m_pImg_Icon[i].SetData(0); + //m_pBtn_Summon[i].gameObject.SetActive(false); + //m_pBtn_Recall[i].gameObject.SetActive(false); + //m_pBtn_Detail[i].gameObject.SetActive(false); + //m_pBtn_Evolution[i].gameObject.SetActive(false); + //// m_pBtn_Banish[i].Enable(false); + //m_pImg_Icon[i].SetDataPtr(NULL); + //m_pTxt_Level[i].SetText(_AL("")); + //m_pTxt_Name[i].SetText(_AL("")); + //m_pImg_Icon[i].ClearCover(); + //m_pImg_Icon[i].SetHint(_AL("")); + //m_pImg_Icon[i].SetData(0); } } } + + public bool af_GetFileTitle(string lpszFile, out string lpszTitle) + { + lpszTitle = string.Empty; + + if (string.IsNullOrEmpty(lpszFile)) + return lpszFile != null; + + if (lpszFile.EndsWith("\\") || lpszFile.EndsWith("/")) + return false; + + lpszTitle = Path.GetFileNameWithoutExtension(lpszFile); + return true; + } } } diff --git a/Assets/Resources/Pet.meta b/Assets/Resources/Pet.meta new file mode 100644 index 0000000000..00e36523b3 --- /dev/null +++ b/Assets/Resources/Pet.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e60664ecfa15d53418417d459aa62c43 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Pet/iconlist_pet_multisprite.png b/Assets/Resources/Pet/iconlist_pet_multisprite.png new file mode 100644 index 0000000000..b4e04a3e64 Binary files /dev/null and b/Assets/Resources/Pet/iconlist_pet_multisprite.png differ diff --git a/Assets/Resources/Pet/iconlist_pet_multisprite.png.meta b/Assets/Resources/Pet/iconlist_pet_multisprite.png.meta new file mode 100644 index 0000000000..b17f408731 --- /dev/null +++ b/Assets/Resources/Pet/iconlist_pet_multisprite.png.meta @@ -0,0 +1,6754 @@ +fileFormatVersion: 2 +guid: 1029d0b1b2a52c348a8f40d36856c8af +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 0 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 1024 + 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 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: "\u767D\u9E64" + rect: + serializedVersion: 2 + x: 0 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92147e013c67e62d0800000000000000 + internalID: -3283556498132221655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17173\u5C0F\u7AE0\u9C7C" + rect: + serializedVersion: 2 + x: 32 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e4932a5faf844160800000000000000 + internalID: 7008884903389664485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u98DE\u5929\u732A" + rect: + serializedVersion: 2 + x: 64 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0880a84fdc4de8800800000000000000 + internalID: 616664180032407680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5317\u7F8E\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 96 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cbc3d00604560e50800000000000000 + internalID: 6775195074185907145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5E2E\u6D3E\u51B0\u9F99" + rect: + serializedVersion: 2 + x: 128 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b34557be9ef65800800000000000000 + internalID: 600947557934646198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5E2E\u6D3E\u706B\u9F99" + rect: + serializedVersion: 2 + x: 160 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5b2c270ab93994a0800000000000000 + internalID: -6586169508905604257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u62C9\u5F25\u4E9A" + rect: + serializedVersion: 2 + x: 192 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 964bc5747d00feac0800000000000000 + internalID: -3823836633999035287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u673A\u5668\u4EBA\u5BA0\u7269" + rect: + serializedVersion: 2 + x: 224 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c3ee4b0fa110eb00800000000000000 + internalID: 855703372707062729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u67EF\u57FA\u5BA0\u7269" + rect: + serializedVersion: 2 + x: 256 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3b3bf189c1ce1ef0800000000000000 + internalID: -135457867561223366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u70ED\u6C14\u7403\u98DE\u9A91" + rect: + serializedVersion: 2 + x: 288 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d86f787fb1274b8a0800000000000000 + internalID: -6290277315087174003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u72EC\u89D2\u517D" + rect: + serializedVersion: 2 + x: 320 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41e21a3b58cc2b2d0800000000000000 + internalID: -3264321905273786860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u72EE\u9E6B\u5750\u9A91" + rect: + serializedVersion: 2 + x: 352 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c02c001be5f91b370800000000000000 + internalID: 8336619614284857868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u897F\u65B9\u6076\u9F99" + rect: + serializedVersion: 2 + x: 384 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d90550a4c3538e80800000000000000 + internalID: -8177600394406065707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u4EBA\u65CF\u70AB\u5F69\u98CE\u8F66" + rect: + serializedVersion: 2 + x: 416 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a4cad7a968fea8c0800000000000000 + internalID: -3985975487504923487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u609F\u7A7A\u5750\u9A91" + rect: + serializedVersion: 2 + x: 448 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68e87199e931e4f00800000000000000 + internalID: 1102840530646568582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7070\u59D1\u5A18\u9A6C\u8F66" + rect: + serializedVersion: 2 + x: 480 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 690cd2a5d80aa2820800000000000000 + internalID: 2894302239502745750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "q\u5C0F\u9F99" + rect: + serializedVersion: 2 + x: 0 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c535a5ca5babc4a0800000000000000 + internalID: -6571970824865761847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "sina\u5C0F\u6D6A" + rect: + serializedVersion: 2 + x: 32 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 375047699ac064a10800000000000000 + internalID: 1893214615869064563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "yy\u5973\u718A" + rect: + serializedVersion: 2 + x: 64 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fe05fe779e7b7b10800000000000000 + internalID: 1980315650294615793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "yy\u7537\u718A" + rect: + serializedVersion: 2 + x: 96 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72d1a3c3ac18a0ca0800000000000000 + internalID: -6049880443825021657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u5468\u5E74\u5750\u9A91\u9F99" + rect: + serializedVersion: 2 + x: 128 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 503dbe7cf458b9960800000000000000 + internalID: 7609822573075616517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5934\u72D7" + rect: + serializedVersion: 2 + x: 160 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c128b7f37b190f370800000000000000 + internalID: 8354337525002371612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u53E4\u517D" + rect: + serializedVersion: 2 + x: 192 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3989fbdcdbcbfde90800000000000000 + internalID: -6998667772523734893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u56FD\u91D1\u9F99" + rect: + serializedVersion: 2 + x: 224 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 824bffbe2d00c7630800000000000000 + internalID: 3926013881062765608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5C3E\u706B\u72D0" + rect: + serializedVersion: 2 + x: 256 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 400e886446f5777a0800000000000000 + internalID: -6379525462862274556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u9E7F" + rect: + serializedVersion: 2 + x: 288 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14c2a6efba941f2e0800000000000000 + internalID: -2093811348693963711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u82B1\u86DB" + rect: + serializedVersion: 2 + x: 320 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ee8db0a20b60bbf0800000000000000 + internalID: -310630715257680158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u82B1\u874E" + rect: + serializedVersion: 2 + x: 352 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50b9a5c8b69d453a0800000000000000 + internalID: -6677473291544126715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C" + rect: + serializedVersion: 2 + x: 384 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a062f6a6fdd000470800000000000000 + internalID: 8358696161614177802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED3\u9F20" + rect: + serializedVersion: 2 + x: 416 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3df145a6ab2f3c0d0800000000000000 + internalID: -3403610010900226093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u4EBA\u638C" + rect: + serializedVersion: 2 + x: 448 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15dd52e8467fa7db0800000000000000 + internalID: -4793246842128835247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u4EBA\u7403" + rect: + serializedVersion: 2 + x: 480 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f13ebde8a92b1880800000000000000 + internalID: -8639265654660255243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 0 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3e9937086c6cf5e0800000000000000 + internalID: -1874504150839353797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u50F5\u5C38\u5175" + rect: + serializedVersion: 2 + x: 32 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc06e4380b8c11d90800000000000000 + internalID: -7128696074708033331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5B50\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 64 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca41b10136b942f90800000000000000 + internalID: -6979282672743148372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 96 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 860fb4182452fa7b0800000000000000 + internalID: -5210905276277067672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u9F7F\u5C71\u732B" + rect: + serializedVersion: 2 + x: 128 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0b70453220b4d0a0800000000000000 + internalID: -6857662671609627892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5171\u5DE5\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 160 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b87949748a79882d0800000000000000 + internalID: -3276201979900815477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5173\u6D77\u6CD5" + rect: + serializedVersion: 2 + x: 192 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90f43cd2bbc9eadc0800000000000000 + internalID: -3625788322246078711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 224 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 350b3746e65a75200800000000000000 + internalID: 168785404599971923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u77F3\u884C\u8005" + rect: + serializedVersion: 2 + x: 256 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6c357295d9c625d0800000000000000 + internalID: -3087558575393522580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u51F0\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 288 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62038486ca884b620800000000000000 + internalID: 2789004343314493478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u9E23\u7075\u682A" + rect: + serializedVersion: 2 + x: 320 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47b5672f4343e9b70800000000000000 + internalID: 8907614514996206452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521B\u4E16\u9ED1\u6697\u796D\u7940" + rect: + serializedVersion: 2 + x: 352 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ebf13eb45e767d80800000000000000 + internalID: -8253270364676555803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u5927\u5E08" + rect: + serializedVersion: 2 + x: 384 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54fb7dec38a6bbc60800000000000000 + internalID: 7834973091084615493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u5927\u5E08" + rect: + serializedVersion: 2 + x: 416 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eec5af6915a907600800000000000000 + internalID: 464040436835179758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u58EB" + rect: + serializedVersion: 2 + x: 448 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b471da09eb50e9430800000000000000 + internalID: 3791474252321724235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A3\u9B54" + rect: + serializedVersion: 2 + x: 480 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 502ca655fd04a0b40800000000000000 + internalID: 5407205630566646277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539F\u59CB\u4EBA" + rect: + serializedVersion: 2 + x: 0 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41bf077844ab6ec10800000000000000 + internalID: 2082556681198304020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5934\u72FC" + rect: + serializedVersion: 2 + x: 32 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19f5080de25f444c0800000000000000 + internalID: -4304045762443976815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5B50\u661F" + rect: + serializedVersion: 2 + x: 64 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26b80f742de3a1a30800000000000000 + internalID: 4186727876465298274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D8\u5F02\u6BD2\u56CA\u86D9" + rect: + serializedVersion: 2 + x: 96 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3315e75eeb32ee9e0800000000000000 + internalID: -1590294315614187213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D8\u5F02\u7684\u91CE\u72D7" + rect: + serializedVersion: 2 + x: 128 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1be5fecddff13070800000000000000 + internalID: 8084524134231829274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u6C14\u6CE1\u9C7C" + rect: + serializedVersion: 2 + x: 160 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4e7f41f9d16dc0b0800000000000000 + internalID: -5706797564124234163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u8783\u87F9" + rect: + serializedVersion: 2 + x: 192 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e141333d9af31b390800000000000000 + internalID: -7804386680630995938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u9C7C\u5996" + rect: + serializedVersion: 2 + x: 224 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ff4269fef158ec80800000000000000 + internalID: -8293288558255255568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u540E\u571F\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 256 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aa2a118fb6292440800000000000000 + internalID: 4911499472570821286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u548C\u98CE\u7075\u73E0" + rect: + serializedVersion: 2 + x: 288 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf0e127f5ac1ffde0800000000000000 + internalID: -1297286668518039301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u566C\u5149" + rect: + serializedVersion: 2 + x: 320 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8e0ad6f8e5699080800000000000000 + internalID: -9180194314169741682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56ED\u827A\u526A\u5200\u624B" + rect: + serializedVersion: 2 + x: 352 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b7c79851f9b8b7d0800000000000000 + internalID: -2902365513615685705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56ED\u827A\u533A\u54E8\u5175" + rect: + serializedVersion: 2 + x: 384 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6007f5b72f0aa8b40800000000000000 + internalID: 5443340062943047686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u62D4\u9F20\u56FD\u738B" + rect: + serializedVersion: 2 + x: 416 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0f05321c6a0a4210800000000000000 + internalID: 1317877300237504268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u877C\u536B\u5175" + rect: + serializedVersion: 2 + x: 448 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 868546bf3a8a639c0800000000000000 + internalID: -3947782601092867992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u877C\u54E8\u5175" + rect: + serializedVersion: 2 + x: 480 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56e63f4149e8e3df0800000000000000 + internalID: -198564566899921307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u877C\u6218\u58EB" + rect: + serializedVersion: 2 + x: 0 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c672ffbb3b2488830800000000000000 + internalID: 4073579202677253996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u8C82" + rect: + serializedVersion: 2 + x: 32 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f72f788caee84c70800000000000000 + internalID: 8955670283818051571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u9E8B\u9E7F\u5750\u9A91" + rect: + serializedVersion: 2 + x: 64 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27c6530d680d92be0800000000000000 + internalID: -1501439723313992590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u884C\u5F69\u9E1F" + rect: + serializedVersion: 2 + x: 96 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 634063a13411dd870800000000000000 + internalID: 8709136234304635958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u5938\u7236" + rect: + serializedVersion: 2 + x: 128 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5eb6398160b8fe050800000000000000 + internalID: 5832032900766460901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u731B\u72B8\u5DE8\u8C61" + rect: + serializedVersion: 2 + x: 160 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60e40a7a20e0e8380800000000000000 + internalID: -8967214403483054586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u7AE0\u9C7C\u9F99\u602A" + rect: + serializedVersion: 2 + x: 192 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94389a6927aa70490800000000000000 + internalID: -7780062422128557239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u86C7" + rect: + serializedVersion: 2 + x: 224 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13fd7fd76fbfedbd0800000000000000 + internalID: -2603366498479644879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u9F20\u8F6E\u8F66" + rect: + serializedVersion: 2 + x: 256 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 561b81ed35d2e55f0800000000000000 + internalID: -766125048374709915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u58A8\u9CB6" + rect: + serializedVersion: 2 + x: 288 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc1e38caf7d879e70800000000000000 + internalID: 9121915149756916171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u529B\u795E" + rect: + serializedVersion: 2 + x: 320 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d65330e0480c6df10800000000000000 + internalID: 2294232733595153773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u561F\u561F\u718A" + rect: + serializedVersion: 2 + x: 352 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a0f55265cc4d5f30800000000000000 + internalID: 4565890007865618600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u9EC4" + rect: + serializedVersion: 2 + x: 384 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d6daed1da9526d20800000000000000 + internalID: 3270274879490545369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u9F99\u867E" + rect: + serializedVersion: 2 + x: 416 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14b9de43d01fdfea0800000000000000 + internalID: -5837244502977438911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9A6C\u72EC\u89D2\u517D" + rect: + serializedVersion: 2 + x: 448 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3bf066b3f2ed1150800000000000000 + internalID: 5845077427761511230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592B\u8BF8\u738B" + rect: + serializedVersion: 2 + x: 480 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9712ce520d9d5a40800000000000000 + internalID: 5358611765146032027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u5927\u5E08" + rect: + serializedVersion: 2 + x: 0 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b182a72c17255300800000000000000 + internalID: 240141157011718579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u7CBE\u5927\u5E08" + rect: + serializedVersion: 2 + x: 32 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f39fef9e303c28e0800000000000000 + internalID: -1716944312405617680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59DC\u5C0F\u864E-\u5305\u88F9" + rect: + serializedVersion: 2 + x: 64 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 004ea4ba068be8d00800000000000000 + internalID: 976920894516159488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59DC\u5C0F\u864E\u5BA0\u7269" + rect: + serializedVersion: 2 + x: 96 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b999c5b6234ad970800000000000000 + internalID: 8780404257049909685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u5C0F\u7CBE\u7075" + rect: + serializedVersion: 2 + x: 128 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 722ddf9aa471017c0800000000000000 + internalID: -4102753651087519193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u72FC\u517D" + rect: + serializedVersion: 2 + x: 160 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad546e21e40087c10800000000000000 + internalID: 2051389965591791066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA0\u7269\u9F9F" + rect: + serializedVersion: 2 + x: 192 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 217c06ddcd7c32280800000000000000 + internalID: -9069185473173207278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BBD\u5634\u5947\u8DB3" + rect: + serializedVersion: 2 + x: 224 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: deb1018c62d427630800000000000000 + internalID: 3923283054353718253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u51B0\u516C\u4E3B" + rect: + serializedVersion: 2 + x: 256 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe2c3f8b129c3a740800000000000000 + internalID: 5162190744570807023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u53F6\u8702" + rect: + serializedVersion: 2 + x: 288 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef430fcc37bfc7110800000000000000 + internalID: 1260158470535001342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6050\u9F99\u9ED1" + rect: + serializedVersion: 2 + x: 320 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46f3b14b1bddac8c0800000000000000 + internalID: -3978123565527777436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6076\u9B54\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 352 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b7e70c39b2c47150800000000000000 + internalID: 5869530315202488245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u661F\u661F" + rect: + serializedVersion: 2 + x: 384 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29fcbeef29938ffa0800000000000000 + internalID: -5766796019343044718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6D63\u718A2013" + rect: + serializedVersion: 2 + x: 416 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1350acb015631240800000000000000 + internalID: 4761260353619251994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u718A\u732B" + rect: + serializedVersion: 2 + x: 448 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c679436c38d40cf0800000000000000 + internalID: -286866722369472829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7231\u795E" + rect: + serializedVersion: 2 + x: 480 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9573c5b049e7a2730800000000000000 + internalID: 3975128795418736473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u795E\u9F99" + rect: + serializedVersion: 2 + x: 0 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89a24d47d366364a0800000000000000 + internalID: -6601320214655915368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9752\u86D9" + rect: + serializedVersion: 2 + x: 32 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a14a00b6127ec6d0800000000000000 + internalID: -2968309662622269019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9C7C\u4EBA\u84DD" + rect: + serializedVersion: 2 + x: 64 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f80f6e1610c269e0800000000000000 + internalID: -1629528913922291470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C16\u5634\u5947\u8DB3" + rect: + serializedVersion: 2 + x: 96 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3930afeed52e2f20800000000000000 + internalID: 3399696408144525628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5CA9\u7075\u6218\u58EB" + rect: + serializedVersion: 2 + x: 128 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 562bd7559548320c0800000000000000 + internalID: -4601688875021258139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5D29\u96F7\u796D\u7940" + rect: + serializedVersion: 2 + x: 160 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: defb081c339ec5f30800000000000000 + internalID: 4565780530745884653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u5634\u5947\u8DB3" + rect: + serializedVersion: 2 + x: 192 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8f1a418ec33d35f0800000000000000 + internalID: -775406598812459126 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u8725\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 224 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34185902b9fe21470800000000000000 + internalID: 8364010907526070595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u5927\u5E08" + rect: + serializedVersion: 2 + x: 256 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1dc7a07047a80410800000000000000 + internalID: 1443587575782034719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u6BD2\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 288 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 092f1ea9f324b4180800000000000000 + internalID: -9130130978614676848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E1D\u9AA8" + rect: + serializedVersion: 2 + x: 320 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f20b0320d0a2d5450800000000000000 + internalID: 6079061307379724335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E74\u517D" + rect: + serializedVersion: 2 + x: 352 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3104a5691f16403f0800000000000000 + internalID: -935515132348710893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u5E74\u72D7" + rect: + serializedVersion: 2 + x: 384 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e2344fc06043cad0800000000000000 + internalID: -2683230168444292377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u7EB9\u874E" + rect: + serializedVersion: 2 + x: 416 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9310607236500420800000000000000 + internalID: 2594168159999103898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u7075\u6218\u58EB" + rect: + serializedVersion: 2 + x: 448 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95f8486871cde2cd0800000000000000 + internalID: -2580883542837522599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E87\u4F51\u5723\u7075" + rect: + serializedVersion: 2 + x: 480 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9bf34e0dbf3b409e0800000000000000 + internalID: -1656000868842717255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u8776\u7CBE" + rect: + serializedVersion: 2 + x: 0 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8de67010a21473910800000000000000 + internalID: 1816992623328980696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u6B66\u58EB" + rect: + serializedVersion: 2 + x: 32 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17daf50eb34953fb0800000000000000 + internalID: -4668662453811303055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u610F\u7720\u7720" + rect: + serializedVersion: 2 + x: 64 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 243b709066c09ee30800000000000000 + internalID: 4533168132302811970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60E9\u6212\u5723\u7075" + rect: + serializedVersion: 2 + x: 96 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc2bb94e143a739a0800000000000000 + internalID: -6253350054177033525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62B1\u62B1\u5154" + rect: + serializedVersion: 2 + x: 128 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d3f627306f24ef80800000000000000 + internalID: -8078279741307161646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A2\u9669\u8005" + rect: + serializedVersion: 2 + x: 160 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5adcd6b2eaee5a90800000000000000 + internalID: -7323157684606412197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6469\u6258\u8F6601" + rect: + serializedVersion: 2 + x: 192 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0d8a872e61f37c60800000000000000 + internalID: 7814855233830030605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6551\u8D4E\u5723\u7075" + rect: + serializedVersion: 2 + x: 224 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a677bfc13cbbd0cc0800000000000000 + internalID: -3743129268595755158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6556\u8499" + rect: + serializedVersion: 2 + x: 256 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21a7a290cda66fdb0800000000000000 + internalID: -4758498462991222254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6587\u6587\u8702" + rect: + serializedVersion: 2 + x: 288 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1ccc37d96181e740800000000000000 + internalID: 5179563338035416090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6591\u6593\u8C79" + rect: + serializedVersion: 2 + x: 320 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98820f491896174a0800000000000000 + internalID: -6597375973850601335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6591\u70B9\u72D7" + rect: + serializedVersion: 2 + x: 352 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5407240bc1fd7b90800000000000000 + internalID: -7242366771491568549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65CB\u9F9F" + rect: + serializedVersion: 2 + x: 384 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc20db8a9fa4d2c20800000000000000 + internalID: 3183282947759080139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u5934\u9A91\u5175\u5C06\u519B" + rect: + serializedVersion: 2 + x: 416 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50838918aee44b2d0800000000000000 + internalID: -3263897060833216507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F1\u6C34\u7CBE" + rect: + serializedVersion: 2 + x: 448 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c2706f17a7dd9df0800000000000000 + internalID: -171744097984286008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u7259\u725B\u55BD\u7F57" + rect: + serializedVersion: 2 + x: 480 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87a6dafcdacbb2d30800000000000000 + internalID: 4407824115011775096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u795E\u955C\u50CF" + rect: + serializedVersion: 2 + x: 0 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be68a8dd79cab43f0800000000000000 + internalID: -915448330982881557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u6218\u72EE" + rect: + serializedVersion: 2 + x: 32 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df6183c58e8495e40800000000000000 + internalID: 5645623770702419709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6740\u4EBA\u8702" + rect: + serializedVersion: 2 + x: 64 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a66009adff0b3ae0800000000000000 + internalID: -1568642463071967579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u9F20" + rect: + serializedVersion: 2 + x: 96 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2dc9051f386422520800000000000000 + internalID: 2675778661114748114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6781\u4E50\u9E1F" + rect: + serializedVersion: 2 + x: 128 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02f2578d6a630a0b0800000000000000 + internalID: -5719511436536500448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6784\u88C5\u7535\u864E" + rect: + serializedVersion: 2 + x: 160 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5654de494d95c79c0800000000000000 + internalID: -3928166005407398555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6885\u82B1\u9E7F" + rect: + serializedVersion: 2 + x: 192 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8faf557493b5fce20800000000000000 + internalID: 3373014947491871480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u4F01\u9E45\u7279\u5DE5\u961F" + rect: + serializedVersion: 2 + x: 224 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0424b584451903650800000000000000 + internalID: 6210623677321134656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u6597\u725B\u72AC" + rect: + serializedVersion: 2 + x: 256 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d032698414cae0eb0800000000000000 + internalID: -4751671160438643955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u6CF0\u8FEA\u718A" + rect: + serializedVersion: 2 + x: 288 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c02a5abad5fefe00800000000000000 + internalID: 1080571280393642180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u7280\u725B" + rect: + serializedVersion: 2 + x: 320 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 437bbe760a9a5f520800000000000000 + internalID: 2735278855100806964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u9752\u86D9\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 352 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a84c03a690ea9830800000000000000 + internalID: 4078819350122612897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u9E2D\u5634\u517D" + rect: + serializedVersion: 2 + x: 384 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e698e4135b3d6450800000000000000 + internalID: 6083583899666519781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u4FA0\u5927\u5E08" + rect: + serializedVersion: 2 + x: 416 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee4fbdf0783ecb770800000000000000 + internalID: 8628021155361191150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u4E0B\u4E09\u7532\u866B" + rect: + serializedVersion: 2 + x: 448 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fded5680dc038fc0800000000000000 + internalID: -3493934796162339337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u7CBE" + rect: + serializedVersion: 2 + x: 480 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffe5eb598d1a02890800000000000000 + internalID: -7484804629092475137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u5927\u5E08" + rect: + serializedVersion: 2 + x: 0 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 212cce58a9c7c3980800000000000000 + internalID: -8557828188797091310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u6CE2\u9E1F\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 32 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3cc9a2b304edc5750800000000000000 + internalID: 6295150746609032387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE5\u9B3C" + rect: + serializedVersion: 2 + x: 64 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f26f77bb99df9480800000000000000 + internalID: -8890147876584332555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u661F\u4EBA" + rect: + serializedVersion: 2 + x: 96 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb68e9d1b2e49d810800000000000000 + internalID: 1790548273943971518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DA1\u6F29\u796D\u7940" + rect: + serializedVersion: 2 + x: 128 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a39df8c29efc7910800000000000000 + internalID: 1836622654451061665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6D77\u6050\u9C7C" + rect: + serializedVersion: 2 + x: 160 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce66063e510868a80800000000000000 + internalID: -8464937618098854164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u9759\u7409\u7483" + rect: + serializedVersion: 2 + x: 192 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42aa58958c7d76cf0800000000000000 + internalID: -259001198055151068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E38\u8361\u7684\u9E66\u9E49" + rect: + serializedVersion: 2 + x: 224 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5a4e20bd54ad5ae0800000000000000 + internalID: -1558909173705586083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 256 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 366325598e9e475f0800000000000000 + internalID: -759725251971893661 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u708E\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 288 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f881fb6cd29f03390800000000000000 + internalID: -7840492976248776561 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u795E\u795D\u878D" + rect: + serializedVersion: 2 + x: 320 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c35c546e60768dd0800000000000000 + internalID: -2484174525015764025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u72D0" + rect: + serializedVersion: 2 + x: 352 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 818e8c845376a26e0800000000000000 + internalID: -1861562017412225000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u8725\u730E\u4EBA\u5140\u7A81\u5B50" + rect: + serializedVersion: 2 + x: 384 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd1466dbda8ec13b0800000000000000 + internalID: -5540297608667971109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707E\u5384\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 416 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f66ede5c136d50610800000000000000 + internalID: 1586909952980412015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u7206\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 448 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d21376c69f37cced0800000000000000 + internalID: -2392409786937822931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u7CBE" + rect: + serializedVersion: 2 + x: 480 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1f92e239c8f4fe80800000000000000 + internalID: -8145612282980557026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u5929\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 0 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8061326a431750120800000000000000 + internalID: 2379432449074730504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u706B\u6050\u9E1F" + rect: + serializedVersion: 2 + x: 32 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2f6376aa946dd0b0800000000000000 + internalID: -5702290937800855764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u716E\u9F99\u5DEB\u5E08\u5C0F\u5DF4\u5C14\u7F55" + rect: + serializedVersion: 2 + x: 64 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 160e10de8e8261bd0800000000000000 + internalID: -2659893549041852319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 96 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79e4e4a01c238cc60800000000000000 + internalID: 7838570956121329303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u5E7C\u5E74amd" + rect: + serializedVersion: 2 + x: 128 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1720b6c4fb5be170800000000000000 + internalID: 8208755852676441885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u6210\u5E74" + rect: + serializedVersion: 2 + x: 160 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6844f6e11cb986e70800000000000000 + internalID: 9108701500098430086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u732B\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 192 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5023c50d10e319690800000000000000 + internalID: -7597222918885723643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71C3\u60C5\u7075\u682A" + rect: + serializedVersion: 2 + x: 224 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 118ecfbe498916ec0800000000000000 + internalID: -3575408863773661167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u72EC\u89D2\u517D" + rect: + serializedVersion: 2 + x: 256 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9257f4c87b41ab860800000000000000 + internalID: 7546366904178275625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72D7\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 288 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98f479d5e69af1980800000000000000 + internalID: -8565941674753699959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EC\u89D2\u517D\u9ED1" + rect: + serializedVersion: 2 + x: 320 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39ddab5473646e2f0800000000000000 + internalID: -943989868680520301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 352 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b0ea614cfc738520800000000000000 + internalID: 2703141624223555764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u731E\u7301\u5C71\u732B" + rect: + serializedVersion: 2 + x: 384 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3437f451586bb2d80800000000000000 + internalID: -8274319207658720445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732A\u6210\u5E74" + rect: + serializedVersion: 2 + x: 416 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cccedd47d8be2e020800000000000000 + internalID: 2369715346733919436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u5934\u9E70" + rect: + serializedVersion: 2 + x: 448 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8792a7cb75963a550800000000000000 + internalID: 6170891739972905336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 480 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b9be2161b41e0140800000000000000 + internalID: 4687707014211484080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7334\u5B50\u5750\u9A91" + rect: + serializedVersion: 2 + x: 0 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83660b92dc6c242a0800000000000000 + internalID: -6754617906632301000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7360\u7259\u72FC" + rect: + serializedVersion: 2 + x: 32 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1404b6f32a7e8f840800000000000000 + internalID: 5258207248989765697 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u864E" + rect: + serializedVersion: 2 + x: 64 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76a63b0a59604f070800000000000000 + internalID: 8139137666281335399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u6696\u84DD\u7530" + rect: + serializedVersion: 2 + x: 96 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27087bee60594a780800000000000000 + internalID: -8672643125401386894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u718A" + rect: + serializedVersion: 2 + x: 128 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a38f8320ff2cdca0800000000000000 + internalID: -5990860695874337886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8C61" + rect: + serializedVersion: 2 + x: 160 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1207f0fcad9af38c0800000000000000 + internalID: -4017305585349332959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8C79" + rect: + serializedVersion: 2 + x: 192 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4bbfe2eeeac16d20800000000000000 + internalID: 3270117931806079820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u88C2\u7F20\u4E1D" + rect: + serializedVersion: 2 + x: 224 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8dea8cb0ef3cc360800000000000000 + internalID: 7191192939472285070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u773C\u775B\u7334" + rect: + serializedVersion: 2 + x: 256 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aaf91834e1bbbe20800000000000000 + internalID: 3367480740141464233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u773C\u955C\u7334" + rect: + serializedVersion: 2 + x: 288 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a9b6491f4ca1ca30800000000000000 + internalID: 4233854580431436200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u543C\u602A" + rect: + serializedVersion: 2 + x: 320 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3053b03d30ef33c70800000000000000 + internalID: 8949776176894391555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u80C6\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 352 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2bed333b3ce97a20800000000000000 + internalID: 3060737160781884207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795D\u878D\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 384 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: facdfd7ba97cfa740800000000000000 + internalID: 5165566764941040815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u4ED9\u9C7C" + rect: + serializedVersion: 2 + x: 416 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48d0fb14d70400490800000000000000 + internalID: -7782149249378087548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u7334\u609F\u7A7A" + rect: + serializedVersion: 2 + x: 448 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a15166b331d2fc00800000000000000 + internalID: 933038092852482464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u796D\u7940\u4F7F\u5F92\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 480 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 466c8836ffae9d080800000000000000 + internalID: -9162033584301095324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7985\u610F\u5723\u7075" + rect: + serializedVersion: 2 + x: 0 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b4b20ebf705acaa0800000000000000 + internalID: -6140006632387332937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7F\u5C71\u7532" + rect: + serializedVersion: 2 + x: 32 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf29a2f4427b1b9a0800000000000000 + internalID: -6218988243847048453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AE0\u9C7C\u9F99\u602A\u5750\u9A91" + rect: + serializedVersion: 2 + x: 64 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a19da5bfd94096bc0800000000000000 + internalID: -3789492534882150118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7075\u72FC" + rect: + serializedVersion: 2 + x: 96 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67cb54d0778fafa50800000000000000 + internalID: 6555825397798648950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u6591\u5929\u725B" + rect: + serializedVersion: 2 + x: 128 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a7a2d29b358746d0800000000000000 + internalID: -3006287735333673052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u677E\u9F20" + rect: + serializedVersion: 2 + x: 160 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc1b19ce1a51d7c20800000000000000 + internalID: 3205742294960550351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8774\u8776" + rect: + serializedVersion: 2 + x: 192 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82488c8009a4311f0800000000000000 + internalID: -1075433903528311768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDB\u73E0\u4E4B\u5492" + rect: + serializedVersion: 2 + x: 224 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a74a78cbb4f42ab0800000000000000 + internalID: -5033629396133853278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aecfd767bdce434f0800000000000000 + internalID: -849794002336219926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8E\u4EBA\u9C7C" + rect: + serializedVersion: 2 + x: 288 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54bc7a277d4c89090800000000000000 + internalID: -8027449906167297211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FA4\u9E70\u5CED\u58C1" + rect: + serializedVersion: 2 + x: 320 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3de8e61136e40630800000000000000 + internalID: 3892489076467100991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u7075\u5927\u5E08" + rect: + serializedVersion: 2 + x: 352 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7717b1cbcd55ee20800000000000000 + internalID: 3379210225121171325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u5927\u5E08" + rect: + serializedVersion: 2 + x: 384 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ccac91feec677fe0800000000000000 + internalID: -1191363802904613688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8001\u864E" + rect: + serializedVersion: 2 + x: 416 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61cfb5d3976323f00800000000000000 + internalID: 1094997553752833046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80A5\u4FEE\u7F57" + rect: + serializedVersion: 2 + x: 448 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68ad36fae29d7fb60800000000000000 + internalID: 7779925675840100998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80FD\u91CF\u7ED3\u6676\u4F53\u51B0" + rect: + serializedVersion: 2 + x: 480 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d91fed67637155c0800000000000000 + internalID: -4228471687060973097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u82DE\u75AF\u5973" + rect: + serializedVersion: 2 + x: 0 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab3aa80d2f6c5eac0800000000000000 + internalID: -3826433562198236230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u5B50\u6B62\u9B42" + rect: + serializedVersion: 2 + x: 32 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0a558f4fc66cd420800000000000000 + internalID: 2656110920820152845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u5C0F\u59B9" + rect: + serializedVersion: 2 + x: 64 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f8a1148f2ecc4c10800000000000000 + internalID: 2039231434766526707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u8001\u9E70" + rect: + serializedVersion: 2 + x: 96 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79a4d4d8c585e6730800000000000000 + internalID: 3994227074055096983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8C79\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f2cb2497a63c1e80800000000000000 + internalID: -8206624327602552078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u865A\u65E0\u6E38\u795E" + rect: + serializedVersion: 2 + x: 160 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33576689776af37e0800000000000000 + internalID: -1783523894827256525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86B0\u8712" + rect: + serializedVersion: 2 + x: 192 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e775fa9366f14520800000000000000 + internalID: 2684697760551499748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u5170\u7CBE" + rect: + serializedVersion: 2 + x: 224 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2b1247367d8afe30800000000000000 + internalID: 4538095113401932587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u72FC\u52C7\u58EB" + rect: + serializedVersion: 2 + x: 256 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f76c619866a23b370800000000000000 + internalID: 8337053955067922047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u8E44\u72FC" + rect: + serializedVersion: 2 + x: 288 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8667aa31f6d2fba0800000000000000 + internalID: -6056542217300384115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u5B50\u6210\u5E74" + rect: + serializedVersion: 2 + x: 320 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6b79084a55863670800000000000000 + internalID: 8518142368020003691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u6210\u5E74" + rect: + serializedVersion: 2 + x: 352 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e69b94993648a2c0800000000000000 + internalID: -4420205821143836953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7EC3\u86C7" + rect: + serializedVersion: 2 + x: 384 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef55b8f3fa7c3b370800000000000000 + internalID: 8337226890692220414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DB3\u7403\u5B9D\u8D1D" + rect: + serializedVersion: 2 + x: 416 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e07cc2aee00829620800000000000000 + internalID: 2779424721587717902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u70DF\u7075\u73E0" + rect: + serializedVersion: 2 + x: 448 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fbae9efcbb041050800000000000000 + internalID: 5770249928922016760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDB\u5316\u86CB" + rect: + serializedVersion: 2 + x: 480 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a74bfac34a8310660800000000000000 + internalID: 7350218344889300090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FEA\u8D5B\u5965\u9ED1\u9F99" + rect: + serializedVersion: 2 + x: 0 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e52c87cd400fd160800000000000000 + internalID: 7052355875545818601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u5E7D\u9B54\u864E" + rect: + serializedVersion: 2 + x: 32 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a4190652d95fb100800000000000000 + internalID: 125918074511103138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u5E7D\u9B54\u864E\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 64 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce4cd8fe0230bcab0800000000000000 + internalID: -4986888722389809940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7384\u4ED9\u864E" + rect: + serializedVersion: 2 + x: 96 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 376e0295b474786d0800000000000000 + internalID: -2988341438793587085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7384\u4ED9\u864E\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 128 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c99e649aa439ba80800000000000000 + internalID: -8450665318544664123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5149\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af4952de064735b40800000000000000 + internalID: 5427809935555925242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5149\u7535\u6BCD" + rect: + serializedVersion: 2 + x: 192 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0abfaefb0d77f3ec0800000000000000 + internalID: -3585015039906874464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6BDB\u72AC" + rect: + serializedVersion: 2 + x: 224 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b22c78fa0a5a45570800000000000000 + internalID: 8454564510039523883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u732A" + rect: + serializedVersion: 2 + x: 256 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc2c7d41e347d7000800000000000000 + internalID: 35312182075310795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7532\u5929\u795E" + rect: + serializedVersion: 2 + x: 288 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b4857af7d1861440800000000000000 + internalID: 4906251608686691510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7FC5\u8702" + rect: + serializedVersion: 2 + x: 320 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d13895bc05ebb0080800000000000000 + internalID: -9220066557892656355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8C79" + rect: + serializedVersion: 2 + x: 352 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb3a04fd1b172bc80800000000000000 + internalID: -8308453353776438338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C" + rect: + serializedVersion: 2 + x: 384 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 006c5b43698784ee0800000000000000 + internalID: -1276637907834780160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C2\u5C0F" + rect: + serializedVersion: 2 + x: 416 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9367a597e382e210800000000000000 + internalID: 1360795068090770335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7Camd" + rect: + serializedVersion: 2 + x: 448 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4389ca686ea01ce20800000000000000 + internalID: 3368985981468055604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u7FFC\u72D0" + rect: + serializedVersion: 2 + x: 480 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e3eae6bffffbe6c0800000000000000 + internalID: -4112912360922225688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u81C2\u86EE" + rect: + serializedVersion: 2 + x: 0 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3293576a054143240800000000000000 + internalID: 4770460241914837283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u7535\u9CD0" + rect: + serializedVersion: 2 + x: 32 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70b22d2c57b3b04a0800000000000000 + internalID: -6626137049779787001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95FB\u81A6" + rect: + serializedVersion: 2 + x: 64 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70d69868294b8a190800000000000000 + internalID: -7950906600707232505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9646\u5316\u7684\u6D77\u9F9F\u8910\u8272" + rect: + serializedVersion: 2 + x: 96 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bec0653088fbb73d0800000000000000 + internalID: -3207759718678917909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9646\u751F\u673A\u5668\u8783\u87F9" + rect: + serializedVersion: 2 + x: 128 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0790f8f854180a410800000000000000 + internalID: 1486330012793506160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u4EBA\u5750\u9A91" + rect: + serializedVersion: 2 + x: 160 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65e98fae7d24c33b0800000000000000 + internalID: -5531472747190247850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u5154\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 192 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cbd7d7f8f58af6c0800000000000000 + internalID: -4108824405665653816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u5973" + rect: + serializedVersion: 2 + x: 224 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59544676ec1f90050800000000000000 + internalID: 5767406666624812437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 256 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e811aee7318af87d0800000000000000 + internalID: -2913925632198307442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u6218\u58EB" + rect: + serializedVersion: 2 + x: 288 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3fafa72b1df417c0800000000000000 + internalID: -4101375067555909828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u86EE\u795E\u5B98\u5854\u5854" + rect: + serializedVersion: 2 + x: 320 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1255b4216e8ca9b00800000000000000 + internalID: 836201571305608481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u9E92\u9E9F" + rect: + serializedVersion: 2 + x: 352 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29ab1a6b9ab46ffb0800000000000000 + internalID: -4614417575908885870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7535\u7F8A\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 384 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44f983a020252dc00800000000000000 + internalID: 923891042279268164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9707\u6012\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 416 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb5d6592b8a912e10800000000000000 + internalID: 2171186417853978046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86A8" + rect: + serializedVersion: 2 + x: 448 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7577b3e72d11e2fa0800000000000000 + internalID: -5823697672384841897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u732A" + rect: + serializedVersion: 2 + x: 480 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5af59f651281b1040800000000000000 + internalID: 4619312374270746533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u864E\u5996" + rect: + serializedVersion: 2 + x: 0 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d20e43903ad68a110800000000000000 + internalID: 1272387441733722157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9F99\u5750\u9A91" + rect: + serializedVersion: 2 + x: 32 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71c10bda7c1d40dd0800000000000000 + internalID: -2520659235877938153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u997F\u72FC" + rect: + serializedVersion: 2 + x: 64 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d298a71a760b7d6d0800000000000000 + internalID: -2965707870462899923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A86\u9A7C" + rect: + serializedVersion: 2 + x: 96 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04b501abe6635c080800000000000000 + internalID: -9167861617246840000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u767D" + rect: + serializedVersion: 2 + x: 128 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db168a701cbd01f00800000000000000 + internalID: 1085609132299936189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u7EA2" + rect: + serializedVersion: 2 + x: 160 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e71e146de8ed88200800000000000000 + internalID: 182640489969869182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u7EFF" + rect: + serializedVersion: 2 + x: 192 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b177ecde476a4050800000000000000 + internalID: 5785550259722088886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u9ED1" + rect: + serializedVersion: 2 + x: 224 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75537c7258e1c9c90800000000000000 + internalID: -7161815750179080873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u9F99" + rect: + serializedVersion: 2 + x: 256 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 917c467978ec97650800000000000000 + internalID: 6231238641199662873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u72FC\u517D" + rect: + serializedVersion: 2 + x: 288 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 578665094c7366fc0800000000000000 + internalID: -3502050342859282315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u5F71" + rect: + serializedVersion: 2 + x: 320 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6891e7550ddd1ea20800000000000000 + internalID: 3089994706210134406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u5F71\u6362\u8272\u6A59\u8272" + rect: + serializedVersion: 2 + x: 352 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90f0fabe76e5bdea0800000000000000 + internalID: -5846975890781696247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u5927\u5E08" + rect: + serializedVersion: 2 + x: 384 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2d5fec246455b390800000000000000 + internalID: -7803237990122169046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u795E\u86A9\u5C24" + rect: + serializedVersion: 2 + x: 416 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e1cba9c61f80ca40800000000000000 + internalID: 5386462482370642405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F" + rect: + serializedVersion: 2 + x: 448 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59c8662218e463180800000000000000 + internalID: -9136028477539578731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u6D9B\u901A\u7075\u5E08\u9CB8\u54C8\u5C14" + rect: + serializedVersion: 2 + x: 480 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e64f366dfc5be4b10800000000000000 + internalID: 1967709991467218030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CDE\u7532\u5C71\u732B" + rect: + serializedVersion: 2 + x: 0 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0409bd1a20c0d360800000000000000 + internalID: 7192459892030505997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E3D\u5B50\u5750\u9A91" + rect: + serializedVersion: 2 + x: 32 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0eef7e8b07e24090800000000000000 + internalID: -8051619146963620342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E66\u9E49" + rect: + serializedVersion: 2 + x: 64 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d49890faf17b8bb60800000000000000 + internalID: 7762155304481556813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E8B\u9E7F" + rect: + serializedVersion: 2 + x: 96 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d466469650f3f1a30800000000000000 + internalID: 4188135470953424461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u58A8" + rect: + serializedVersion: 2 + x: 128 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 057534b9573026dd0800000000000000 + internalID: -2494427439958894768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u7EFF" + rect: + serializedVersion: 2 + x: 160 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1ace9b219cdffcf0800000000000000 + internalID: -216211741030299109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6697\u5F98\u5F8A\u8005" + rect: + serializedVersion: 2 + x: 192 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75f9efb85f22419c0800000000000000 + internalID: -3957499734540771497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6697\u65A5\u5019" + rect: + serializedVersion: 2 + x: 224 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2445a3824701f360800000000000000 + internalID: 7201545261400015915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8C79" + rect: + serializedVersion: 2 + x: 256 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45376a9d8503aa6a0800000000000000 + internalID: -6437279559205883052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F7F\u86EE\u4EBA" + rect: + serializedVersion: 2 + x: 288 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27cc3776e205b2aa0800000000000000 + internalID: -6184761503028884366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5750\u9A91" + rect: + serializedVersion: 2 + x: 320 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 352613f49cd2e1a70800000000000000 + internalID: 8799521064568840787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5BAB\u795E\u4ED9\u9C7C" + rect: + serializedVersion: 2 + x: 352 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b9e33dd84b4766a0800000000000000 + internalID: -6456108764491421256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5E74\u6625\u8282\u5750\u9A91" + rect: + serializedVersion: 2 + x: 384 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a14c506cfa140cd50800000000000000 + internalID: 6755471664253092890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u86ED" + rect: + serializedVersion: 2 + x: 416 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53316006a72595680800000000000000 + internalID: -8765884514149461195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 286 + rect: + serializedVersion: 2 + x: 448 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f32adfbe7f3e6ec60800000000000000 + internalID: 7847210054695363135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 287 + rect: + serializedVersion: 2 + x: 480 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d2c98c3c3c78a7e0800000000000000 + internalID: -1754015456705264942 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: + "17173\u5C0F\u7AE0\u9C7C": 7008884903389664485 + "2013\u98DE\u5929\u732A": 616664180032407680 + "2015\u5317\u7F8E\u72EE\u5B50": 6775195074185907145 + "2015\u5E2E\u6D3E\u51B0\u9F99": 600947557934646198 + "2015\u5E2E\u6D3E\u706B\u9F99": -6586169508905604257 + "2015\u62C9\u5F25\u4E9A": -3823836633999035287 + "2015\u673A\u5668\u4EBA\u5BA0\u7269": 855703372707062729 + "2015\u67EF\u57FA\u5BA0\u7269": -135457867561223366 + "2015\u70ED\u6C14\u7403\u98DE\u9A91": -6290277315087174003 + "2015\u72EC\u89D2\u517D": -3264321905273786860 + "2015\u72EE\u9E6B\u5750\u9A91": 8336619614284857868 + "2015\u897F\u65B9\u6076\u9F99": -8177600394406065707 + "2016\u4EBA\u65CF\u70AB\u5F69\u98CE\u8F66": -3985975487504923487 + "2016\u609F\u7A7A\u5750\u9A91": 1102840530646568582 + "2016\u7070\u59D1\u5A18\u9A6C\u8F66": 2894302239502745750 + 286: 7847210054695363135 + 287: -1754015456705264942 + "q\u5C0F\u9F99": -6571970824865761847 + "sina\u5C0F\u6D6A": 1893214615869064563 + "yy\u5973\u718A": 1980315650294615793 + "yy\u7537\u718A": -6049880443825021657 + "\u4E00\u5468\u5E74\u5750\u9A91\u9F99": 7609822573075616517 + "\u4E09\u5934\u72D7": 8354337525002371612 + "\u4E0A\u53E4\u517D": -6998667772523734893 + "\u4E2D\u56FD\u91D1\u9F99": 3926013881062765608 + "\u4E5D\u5C3E\u706B\u72D0": -6379525462862274556 + "\u4E94\u8272\u9E7F": -2093811348693963711 + "\u4E94\u82B1\u86DB": -310630715257680158 + "\u4E94\u82B1\u874E": -6677473291544126715 + "\u4EBA\u9C7C": 8358696161614177802 + "\u4ED3\u9F20": -3403610010900226093 + "\u4ED9\u4EBA\u638C": -4793246842128835247 + "\u4ED9\u4EBA\u7403": -8639265654660255243 + "\u4F0F\u7FB2\u9B42\u5B88": -1874504150839353797 + "\u50F5\u5C38\u5175": -7128696074708033331 + "\u5154\u5B50\u5E7C\u5E74": -6979282672743148372 + "\u5154\u5E7C\u5E74": -5210905276277067672 + "\u5154\u9F7F\u5C71\u732B": -6857662671609627892 + "\u5171\u5DE5\u9B42\u5B88": -3276201979900815477 + "\u5173\u6D77\u6CD5": -3625788322246078711 + "\u51B0\u51E4\u51F0": 168785404599971923 + "\u51B0\u77F3\u884C\u8005": -3087558575393522580 + "\u51E4\u51F0\u9A91\u5BA0": 2789004343314493478 + "\u51E4\u9E23\u7075\u682A": 8907614514996206452 + "\u521B\u4E16\u9ED1\u6697\u796D\u7940": -8253270364676555803 + "\u523A\u5BA2\u5927\u5E08": 7834973091084615493 + "\u5251\u7075\u5927\u5E08": 464040436835179758 + "\u529B\u58EB": 3791474252321724235 + "\u52A3\u9B54": 5407205630566646277 + "\u539F\u59CB\u4EBA": 2082556681198304020 + "\u53CC\u5934\u72FC": -4304045762443976815 + "\u53CC\u5B50\u661F": 4186727876465298274 + "\u53D8\u5F02\u6BD2\u56CA\u86D9": -1590294315614187213 + "\u53D8\u5F02\u7684\u91CE\u72D7": 8084524134231829274 + "\u53EF\u7231\u6C14\u6CE1\u9C7C": -5706797564124234163 + "\u53EF\u7231\u8783\u87F9": -7804386680630995938 + "\u53EF\u7231\u9C7C\u5996": -8293288558255255568 + "\u540E\u571F\u9B42\u5B88": 4911499472570821286 + "\u548C\u98CE\u7075\u73E0": -1297286668518039301 + "\u566C\u5149": -9180194314169741682 + "\u56ED\u827A\u526A\u5200\u624B": -2902365513615685705 + "\u56ED\u827A\u533A\u54E8\u5175": 5443340062943047686 + "\u571F\u62D4\u9F20\u56FD\u738B": 1317877300237504268 + "\u571F\u877C\u536B\u5175": -3947782601092867992 + "\u571F\u877C\u54E8\u5175": -198564566899921307 + "\u571F\u877C\u6218\u58EB": 4073579202677253996 + "\u571F\u8C82": 8955670283818051571 + "\u5723\u8BDE\u9E8B\u9E7F\u5750\u9A91": -1501439723313992590 + "\u5730\u884C\u5F69\u9E1F": 8709136234304635958 + "\u5750\u9A91\u5938\u7236": 5832032900766460901 + "\u5750\u9A91\u731B\u72B8\u5DE8\u8C61": -8967214403483054586 + "\u5750\u9A91\u7AE0\u9C7C\u9F99\u602A": -7780062422128557239 + "\u5750\u9A91\u86C7": -2603366498479644879 + "\u5750\u9A91\u9F20\u8F6E\u8F66": -766125048374709915 + "\u58A8\u9CB6": 9121915149756916171 + "\u5927\u529B\u795E": 2294232733595153773 + "\u5927\u561F\u561F\u718A": 4565890007865618600 + "\u5927\u9EC4": 3270274879490545369 + "\u5927\u9F99\u867E": -5837244502977438911 + "\u5929\u9A6C\u72EC\u89D2\u517D": 5845077427761511230 + "\u592B\u8BF8\u738B": 5358611765146032027 + "\u5996\u517D\u5927\u5E08": 240141157011718579 + "\u5996\u7CBE\u5927\u5E08": -1716944312405617680 + "\u59DC\u5C0F\u864E-\u5305\u88F9": 976920894516159488 + "\u59DC\u5C0F\u864E\u5BA0\u7269": 8780404257049909685 + "\u5A5A\u793C\u5C0F\u7CBE\u7075": -4102753651087519193 + "\u5B8C\u7F8E\u72FC\u517D": 2051389965591791066 + "\u5BA0\u7269\u9F9F": -9069185473173207278 + "\u5BBD\u5634\u5947\u8DB3": 3923283054353718253 + "\u5BD2\u51B0\u516C\u4E3B": 5162190744570807023 + "\u5C0F\u53F6\u8702": 1260158470535001342 + "\u5C0F\u6050\u9F99\u9ED1": -3978123565527777436 + "\u5C0F\u6076\u9B54\u5B9D\u5B9D": 5869530315202488245 + "\u5C0F\u661F\u661F": -5766796019343044718 + "\u5C0F\u6D63\u718A2013": 4761260353619251994 + "\u5C0F\u718A\u732B": -286866722369472829 + "\u5C0F\u7231\u795E": 3975128795418736473 + "\u5C0F\u795E\u9F99": -6601320214655915368 + "\u5C0F\u9752\u86D9": -2968309662622269019 + "\u5C0F\u9C7C\u4EBA\u84DD": -1629528913922291470 + "\u5C16\u5634\u5947\u8DB3": 3399696408144525628 + "\u5CA9\u7075\u6218\u58EB": -4601688875021258139 + "\u5D29\u96F7\u796D\u7940": 4565780530745884653 + "\u5DE8\u5634\u5947\u8DB3": -775406598812459126 + "\u5DE8\u8725\u9A91\u5BA0": 8364010907526070595 + "\u5DEB\u5E08\u5927\u5E08": 1443587575782034719 + "\u5DEB\u6BD2\u5A03\u5A03": -9130130978614676848 + "\u5E1D\u9AA8": 6079061307379724335 + "\u5E74\u517D": -935515132348710893 + "\u5E7C\u5E74\u72D7": -2683230168444292377 + "\u5E7C\u7EB9\u874E": 2594168159999103898 + "\u5E7D\u7075\u6218\u58EB": -2580883542837522599 + "\u5E87\u4F51\u5723\u7075": -1656000868842717255 + "\u5F69\u8776\u7CBE": 1816992623328980696 + "\u6076\u9B54\u6B66\u58EB": -4668662453811303055 + "\u60C5\u610F\u7720\u7720": 4533168132302811970 + "\u60E9\u6212\u5723\u7075": -6253350054177033525 + "\u62B1\u62B1\u5154": -8078279741307161646 + "\u63A2\u9669\u8005": -7323157684606412197 + "\u6469\u6258\u8F6601": 7814855233830030605 + "\u6551\u8D4E\u5723\u7075": -3743129268595755158 + "\u6556\u8499": -4758498462991222254 + "\u6587\u6587\u8702": 5179563338035416090 + "\u6591\u6593\u8C79": -6597375973850601335 + "\u6591\u70B9\u72D7": -7242366771491568549 + "\u65CB\u9F9F": 3183282947759080139 + "\u65E0\u5934\u9A91\u5175\u5C06\u519B": -3263897060833216507 + "\u65F1\u6C34\u7CBE": -171744097984286008 + "\u66B4\u7259\u725B\u55BD\u7F57": 4407824115011775096 + "\u6708\u795E\u955C\u50CF": -915448330982881557 + "\u673A\u68B0\u6218\u72EE": 5645623770702419709 + "\u6740\u4EBA\u8702": -1568642463071967579 + "\u677E\u9F20": 2675778661114748114 + "\u6781\u4E50\u9E1F": -5719511436536500448 + "\u6784\u88C5\u7535\u864E": -3928166005407398555 + "\u6885\u82B1\u9E7F": 3373014947491871480 + "\u6B27\u7F8E\u4F01\u9E45\u7279\u5DE5\u961F": 6210623677321134656 + "\u6B27\u7F8E\u6597\u725B\u72AC": -4751671160438643955 + "\u6B27\u7F8E\u6CF0\u8FEA\u718A": 1080571280393642180 + "\u6B27\u7F8E\u7280\u725B": 2735278855100806964 + "\u6B27\u7F8E\u9752\u86D9\u9A91\u5BA0": 4078819350122612897 + "\u6B27\u7F8E\u9E2D\u5634\u517D": 6083583899666519781 + "\u6B66\u4FA0\u5927\u5E08": 8628021155361191150 + "\u6C34\u4E0B\u4E09\u7532\u866B": -3493934796162339337 + "\u6C34\u7CBE": -7484804629092475137 + "\u6CD5\u5E08\u5927\u5E08": -8557828188797091310 + "\u6CE2\u6CE2\u9E1F\u5B9D\u5B9D": 6295150746609032387 + "\u6CE5\u9B3C": -8890147876584332555 + "\u6D77\u661F\u4EBA": 1790548273943971518 + "\u6DA1\u6F29\u796D\u7940": 1836622654451061665 + "\u6DF1\u6D77\u6050\u9C7C": -8464937618098854164 + "\u6E05\u9759\u7409\u7483": -259001198055151068 + "\u6E38\u8361\u7684\u9E66\u9E49": -1558909173705586083 + "\u706B\u51E4\u51F0": -759725251971893661 + "\u706B\u708E\u7ED3\u6676": -7840492976248776561 + "\u706B\u795E\u795D\u878D": -2484174525015764025 + "\u7075\u72D0": -1861562017412225000 + "\u7075\u8725\u730E\u4EBA\u5140\u7A81\u5B50": -5540297608667971109 + "\u707E\u5384\u5E7B\u5F71": 1586909952980412015 + "\u708E\u7206\u5E7B\u5F71": -2392409786937822931 + "\u708E\u7CBE": -8145612282980557026 + "\u70BD\u5929\u51E4\u51F0": 2379432449074730504 + "\u70C8\u706B\u6050\u9E1F": -5702290937800855764 + "\u716E\u9F99\u5DEB\u5E08\u5C0F\u5DF4\u5C14\u7F55": -2659893549041852319 + "\u718A\u5E7C\u5E74": 7838570956121329303 + "\u718A\u5E7C\u5E74amd": 8208755852676441885 + "\u718A\u6210\u5E74": 9108701500098430086 + "\u718A\u732B\u9A91\u5BA0": -7597222918885723643 + "\u71C3\u60C5\u7075\u682A": -3575408863773661167 + "\u7279\u6548\u72EC\u89D2\u517D": 7546366904178275625 + "\u72D7\u5E7C\u5E74": -8565941674753699959 + "\u72EC\u89D2\u517D\u9ED1": -943989868680520301 + "\u72EE\u5B50": 2703141624223555764 + "\u731E\u7301\u5C71\u732B": -8274319207658720445 + "\u732A\u6210\u5E74": 2369715346733919436 + "\u732B\u5934\u9E70": 6170891739972905336 + "\u732B\u5E7C\u5E74": 4687707014211484080 + "\u7334\u5B50\u5750\u9A91": -6754617906632301000 + "\u7360\u7259\u72FC": 5258207248989765697 + "\u7384\u864E": 8139137666281335399 + "\u7389\u6696\u84DD\u7530": -8672643125401386894 + "\u767D\u718A": -5990860695874337886 + "\u767D\u8C61": -4017305585349332959 + "\u767D\u8C79": 3270117931806079820 + "\u767D\u9E64": -3283556498132221655 + "\u767E\u88C2\u7F20\u4E1D": 7191192939472285070 + "\u773C\u775B\u7334": 3367480740141464233 + "\u773C\u955C\u7334": 4233854580431436200 + "\u77F3\u543C\u602A": 8949776176894391555 + "\u7834\u80C6\u5E7B\u5F71": 3060737160781884207 + "\u795D\u878D\u9B42\u5B88": 5165566764941040815 + "\u795E\u4ED9\u9C7C": -7782149249378087548 + "\u795E\u7334\u609F\u7A7A": 933038092852482464 + "\u796D\u7940\u4F7F\u5F92\u9AD8\u7EA7": -9162033584301095324 + "\u7985\u610F\u5723\u7075": -6140006632387332937 + "\u7A7F\u5C71\u7532": -6218988243847048453 + "\u7AE0\u9C7C\u9F99\u602A\u5750\u9A91": -3789492534882150118 + "\u7CBE\u7075\u72FC": 6555825397798648950 + "\u7EA2\u6591\u5929\u725B": -3006287735333673052 + "\u7EA2\u8272\u677E\u9F20": 3205742294960550351 + "\u7EA2\u8774\u8776": -1075433903528311768 + "\u7EDB\u73E0\u4E4B\u5492": -5033629396133853278 + "\u7EFF\u72EE\u5B50": -849794002336219926 + "\u7F8E\u4EBA\u9C7C": -8027449906167297211 + "\u7FA4\u9E70\u5CED\u58C1": 3892489076467100991 + "\u7FBD\u7075\u5927\u5E08": 3379210225121171325 + "\u7FBD\u8292\u5927\u5E08": -1191363802904613688 + "\u8001\u864E": 1094997553752833046 + "\u80A5\u4FEE\u7F57": 7779925675840100998 + "\u80FD\u91CF\u7ED3\u6676\u4F53\u51B0": -4228471687060973097 + "\u82B1\u82DE\u75AF\u5973": -3826433562198236230 + "\u83B2\u5B50\u6B62\u9B42": 2656110920820152845 + "\u840C\u5C0F\u59B9": 2039231434766526707 + "\u84DD\u8272\u8001\u9E70": 3994227074055096983 + "\u84DD\u8C79\u5B50": -8206624327602552078 + "\u865A\u65E0\u6E38\u795E": -1783523894827256525 + "\u86B0\u8712": 2684697760551499748 + "\u8774\u8776\u5170\u7CBE": 4538095113401932587 + "\u8840\u72FC\u52C7\u58EB": 8337053955067922047 + "\u8840\u8E44\u72FC": -6056542217300384115 + "\u8C79\u5B50\u6210\u5E74": 8518142368020003691 + "\u8C79\u6210\u5E74": -4420205821143836953 + "\u8D64\u7EC3\u86C7": 8337226890692220414 + "\u8DB3\u7403\u5B9D\u8D1D": 2779424721587717902 + "\u8F7B\u70DF\u7075\u73E0": 5770249928922016760 + "\u8FDB\u5316\u86CB": 7350218344889300090 + "\u8FEA\u8D5B\u5965\u9ED1\u9F99": 7052355875545818601 + "\u901A\u5E7D\u9B54\u864E": 125918074511103138 + "\u901A\u5E7D\u9B54\u864E\u5B9D\u5B9D": -4986888722389809940 + "\u901A\u7384\u4ED9\u864E": -2988341438793587085 + "\u901A\u7384\u4ED9\u864E\u5B9D\u5B9D": -8450665318544664123 + "\u91D1\u5149\u72EE\u5B50": 5427809935555925242 + "\u91D1\u5149\u7535\u6BCD": -3585015039906874464 + "\u91D1\u6BDB\u72AC": 8454564510039523883 + "\u91D1\u732A": 35312182075310795 + "\u91D1\u7532\u5929\u795E": 4906251608686691510 + "\u91D1\u7FC5\u8702": -9220066557892656355 + "\u91D1\u8C79": -8308453353776438338 + "\u91D1\u9C7C": -1276637907834780160 + "\u91D1\u9C7C2\u5C0F": 1360795068090770335 + "\u91D1\u9C7Camd": 3368985981468055604 + "\u94F6\u7FFC\u72D0": -4112912360922225688 + "\u957F\u81C2\u86EE": 4770460241914837283 + "\u95EA\u7535\u9CD0": -6626137049779787001 + "\u95FB\u81A6": -7950906600707232505 + "\u9646\u5316\u7684\u6D77\u9F9F\u8910\u8272": -3207759718678917909 + "\u9646\u751F\u673A\u5668\u8783\u87F9": 1486330012793506160 + "\u96EA\u4EBA\u5750\u9A91": -5531472747190247850 + "\u96EA\u5154\u5B9D\u5B9D": -4108824405665653816 + "\u96EA\u5973": 5767406666624812437 + "\u96EA\u5A03\u5A03": -2913925632198307442 + "\u96EA\u6218\u58EB": -4101375067555909828 + "\u96EA\u86EE\u795E\u5B98\u5854\u5854": 836201571305608481 + "\u96EA\u9E92\u9E9F": -4614417575908885870 + "\u96F7\u7535\u7F8A\u9A91\u5BA0": 923891042279268164 + "\u9707\u6012\u5E7B\u5F71": 2171186417853978046 + "\u9752\u86A8": -5823697672384841897 + "\u98DE\u5929\u732A": 4619312374270746533 + "\u98DE\u5929\u864E\u5996": 1272387441733722157 + "\u98DE\u9F99\u5750\u9A91": -2520659235877938153 + "\u997F\u72FC": -2965707870462899923 + "\u9A86\u9A7C": -9167861617246840000 + "\u9A91\u5BA0\u9A6C\u767D": 1085609132299936189 + "\u9A91\u5BA0\u9A6C\u7EA2": 182640489969869182 + "\u9A91\u5BA0\u9A6C\u7EFF": 5785550259722088886 + "\u9A91\u5BA0\u9A6C\u9ED1": -7161815750179080873 + "\u9A91\u9F99": 6231238641199662873 + "\u9AD8\u7EA7\u72FC\u517D": -3502050342859282315 + "\u9B45\u5F71": 3089994706210134406 + "\u9B45\u5F71\u6362\u8272\u6A59\u8272": -5846975890781696247 + "\u9B45\u7075\u5927\u5E08": -7803237990122169046 + "\u9B54\u795E\u86A9\u5C24": 5386462482370642405 + "\u9CB2\u9E4F": -9136028477539578731 + "\u9CB8\u6D9B\u901A\u7075\u5E08\u9CB8\u54C8\u5C14": 1967709991467218030 + "\u9CDE\u7532\u5C71\u732B": 7192459892030505997 + "\u9E3D\u5B50\u5750\u9A91": -8051619146963620342 + "\u9E66\u9E49": 7762155304481556813 + "\u9E8B\u9E7F": 4188135470953424461 + "\u9E92\u9E9F\u58A8": -2494427439958894768 + "\u9E92\u9E9F\u7EFF": -216211741030299109 + "\u9ED1\u6697\u5F98\u5F8A\u8005": -3957499734540771497 + "\u9ED1\u6697\u65A5\u5019": 7201545261400015915 + "\u9ED1\u8C79": -6437279559205883052 + "\u9F7F\u86EE\u4EBA": -6184761503028884366 + "\u9F99\u5750\u9A91": 8799521064568840787 + "\u9F99\u5BAB\u795E\u4ED9\u9C7C": -6456108764491421256 + "\u9F99\u5E74\u6625\u8282\u5750\u9A91": 6755471664253092890 + "\u9F99\u86ED": -8765884514149461195 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/iconlist_pet.txt b/Assets/Resources/iconlist_pet.txt new file mode 100644 index 0000000000..73d83874c9 --- /dev/null +++ b/Assets/Resources/iconlist_pet.txt @@ -0,0 +1,290 @@ +32 +32 +18 +16 +白鹤.dds +17173小章鱼.dds +2013飞天猪.dds +2015北美狮子.dds +2015帮派冰龙.dds +2015帮派火龙.dds +2015拉弥亚.dds +2015机器人宠物.dds +2015柯基宠物.dds +2015热气球飞骑.dds +2015独角兽.dds +2015狮鹫坐骑.dds +2015西方恶龙.dds +2016人族炫彩风车.dds +2016悟空坐骑.dds +2016灰姑娘马车.dds +q小龙.dds +sina小浪.dds +yy女熊.dds +yy男熊.dds +一周年坐骑龙.dds +三头狗.dds +上古兽.dds +中国金龙.dds +九尾火狐.dds +五色鹿.dds +五花蛛.dds +五花蝎.dds +人鱼.dds +仓鼠.dds +仙人掌.dds +仙人球.dds +伏羲魂守.dds +僵尸兵.dds +兔子幼年.dds +兔幼年.dds +兔齿山猫.dds +共工魂守.dds +关海法.dds +冰凤凰.dds +冰石行者.dds +凤凰骑宠.dds +凤鸣灵株.dds +创世黑暗祭祀.dds +刺客大师.dds +剑灵大师.dds +力士.dds +劣魔.dds +原始人.dds +双头狼.dds +双子星.dds +变异毒囊蛙.dds +变异的野狗.dds +可爱气泡鱼.dds +可爱螃蟹.dds +可爱鱼妖.dds +后土魂守.dds +和风灵珠.dds +噬光.dds +园艺剪刀手.dds +园艺区哨兵.dds +土拔鼠国王.dds +土蝼卫兵.dds +土蝼哨兵.dds +土蝼战士.dds +土貂.dds +圣诞麋鹿坐骑.dds +地行彩鸟.dds +坐骑夸父.dds +坐骑猛犸巨象.dds +坐骑章鱼龙怪.dds +坐骑蛇.dds +坐骑鼠轮车.dds +墨鲶.dds +大力神.dds +大嘟嘟熊.dds +大黄.dds +大龙虾.dds +天马独角兽.dds +夫诸王.dds +妖兽大师.dds +妖精大师.dds +姜小虎-包裹.dds +姜小虎宠物.dds +婚礼小精灵.dds +完美狼兽.dds +宠物龟.dds +宽嘴奇足.dds +寒冰公主.dds +小叶蜂.dds +小恐龙黑.dds +小恶魔宝宝.dds +小星星.dds +小浣熊2013.dds +小熊猫.dds +小爱神.dds +小神龙.dds +小青蛙.dds +小鱼人蓝.dds +尖嘴奇足.dds +岩灵战士.dds +崩雷祭祀.dds +巨嘴奇足.dds +巨蜥骑宠.dds +巫师大师.dds +巫毒娃娃.dds +帝骨.dds +年兽.dds +幼年狗.dds +幼纹蝎.dds +幽灵战士.dds +庇佑圣灵.dds +彩蝶精.dds +恶魔武士.dds +情意眠眠.dds +惩戒圣灵.dds +抱抱兔.dds +探险者.dds +摩托车01.dds +救赎圣灵.dds +敖蒙.dds +文文蜂.dds +斑斓豹.dds +斑点狗.dds +旋龟.dds +无头骑兵将军.dds +旱水精.dds +暴牙牛喽罗.dds +月神镜像.dds +机械战狮.dds +杀人蜂.dds +松鼠.dds +极乐鸟.dds +构装电虎.dds +梅花鹿.dds +欧美企鹅特工队.dds +欧美斗牛犬.dds +欧美泰迪熊.dds +欧美犀牛.dds +欧美青蛙骑宠.dds +欧美鸭嘴兽.dds +武侠大师.dds +水下三甲虫.dds +水精.dds +法师大师.dds +波波鸟宝宝.dds +泥鬼.dds +海星人.dds +涡漩祭祀.dds +深海恐鱼.dds +清静琉璃.dds +游荡的鹦鹉.dds +火凤凰.dds +火炎结晶.dds +火神祝融.dds +灵狐.dds +灵蜥猎人兀突子.dds +灾厄幻影.dds +炎爆幻影.dds +炎精.dds +炽天凤凰.dds +烈火恐鸟.dds +煮龙巫师小巴尔罕.dds +熊幼年.dds +熊幼年amd.dds +熊成年.dds +熊猫骑宠.dds +燃情灵株.dds +特效独角兽.dds +狗幼年.dds +独角兽黑.dds +狮子.dds +猞猁山猫.dds +猪成年.dds +猫头鹰.dds +猫幼年.dds +猴子坐骑.dds +獠牙狼.dds +玄虎.dds +玉暖蓝田.dds +白熊.dds +白象.dds +白豹.dds +百裂缠丝.dds +眼睛猴.dds +眼镜猴.dds +石吼怪.dds +破胆幻影.dds +祝融魂守.dds +神仙鱼.dds +神猴悟空.dds +祭祀使徒高级.dds +禅意圣灵.dds +穿山甲.dds +章鱼龙怪坐骑.dds +精灵狼.dds +红斑天牛.dds +红色松鼠.dds +红蝴蝶.dds +绛珠之咒.dds +绿狮子.dds +美人鱼.dds +群鹰峭壁.dds +羽灵大师.dds +羽芒大师.dds +老虎.dds +肥修罗.dds +能量结晶体冰.dds +花苞疯女.dds +莲子止魂.dds +萌小妹.dds +蓝色老鹰.dds +蓝豹子.dds +虚无游神.dds +蚰蜒.dds +蝴蝶兰精.dds +血狼勇士.dds +血蹄狼.dds +豹子成年.dds +豹成年.dds +赤练蛇.dds +足球宝贝.dds +轻烟灵珠.dds +进化蛋.dds +迪赛奥黑龙.dds +通幽魔虎.dds +通幽魔虎宝宝.dds +通玄仙虎.dds +通玄仙虎宝宝.dds +金光狮子.dds +金光电母.dds +金毛犬.dds +金猪.dds +金甲天神.dds +金翅蜂.dds +金豹.dds +金鱼.dds +金鱼2小.dds +金鱼amd.dds +银翼狐.dds +长臂蛮.dds +闪电鳐.dds +闻膦.dds +陆化的海龟褐色.dds +陆生机器螃蟹.dds +雪人坐骑.dds +雪兔宝宝.dds +雪女.dds +雪娃娃.dds +雪战士.dds +雪蛮神官塔塔.dds +雪麒麟.dds +雷电羊骑宠.dds +震怒幻影.dds +青蚨.dds +飞天猪.dds +飞天虎妖.dds +飞龙坐骑.dds +饿狼.dds +骆驼.dds +骑宠马白.dds +骑宠马红.dds +骑宠马绿.dds +骑宠马黑.dds +骑龙.dds +高级狼兽.dds +魅影.dds +魅影换色橙色.dds +魅灵大师.dds +魔神蚩尤.dds +鲲鹏.dds +鲸涛通灵师鲸哈尔.dds +鳞甲山猫.dds +鸽子坐骑.dds +鹦鹉.dds +麋鹿.dds +麒麟墨.dds +麒麟绿.dds +黑暗徘徊者.dds +黑暗斥候.dds +黑豹.dds +齿蛮人.dds +龙坐骑.dds +龙宫神仙鱼.dds +龙年春节坐骑.dds +龙蛭.dds diff --git a/Assets/Resources/iconlist_pet.txt.meta b/Assets/Resources/iconlist_pet.txt.meta new file mode 100644 index 0000000000..58d3a522ce --- /dev/null +++ b/Assets/Resources/iconlist_pet.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 55d983872b71c814da90f0c9beaacdd4 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: