diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts index 355ea1e..2b3cf51 100644 --- a/assets/Script/JiaZai.ts +++ b/assets/Script/JiaZai.ts @@ -142,7 +142,7 @@ export default class JiaZai extends cc.Component { // } // }); - this.createIcon(); + // this.createIcon(); cc.fx.GameConfig.GM_INFO.sceneValue = "HomeScene"; @@ -388,7 +388,7 @@ export default class JiaZai extends cc.Component { for (let i = 0; i < iconCount; i++) { let iconNode = cc.instantiate(this.icon); iconNode.parent = this.node.getChildByName("action"); - this.loadSpineSimple(iconNode, "action2"); + this.loadSpineSimple(iconNode, "action02"); // 计算每个icon的位置 let position: cc.Vec2; @@ -416,79 +416,44 @@ export default class JiaZai extends cc.Component { } } - // 加载spine动画的完整方法 - loadSpineAnimation(node: cc.Node, spinePath: string) { - // 同时加载spine的三个必要文件 - cc.resources.loadDir(spinePath, (err: any, assets: any[]) => { - if (err) { - console.error("加载spine资源失败:", err); - return; - } - // 分离不同类型的资源 - let jsonAsset: any = null; - let atlasAsset: any = null; - let textureAsset: any = null; - - assets.forEach(asset => { - if (asset instanceof cc.JsonAsset) { - jsonAsset = asset; - } else if (asset instanceof cc.TextAsset && asset.name.endsWith('.atlas')) { - atlasAsset = asset; - } else if (asset instanceof cc.Texture2D) { - textureAsset = asset; - } - }); - - if (!jsonAsset || !atlasAsset || !textureAsset) { - console.error("spine资源不完整:", { json: !!jsonAsset, atlas: !!atlasAsset, texture: !!textureAsset }); - return; - } - - // 创建spine组件 - const spine = node.addComponent(sp.Skeleton); - - // 设置spine数据 - spine.skeletonData = new sp.SkeletonData(); - spine.skeletonData.skeletonJson = jsonAsset.json; - spine.skeletonData.atlasText = atlasAsset.text; - spine.skeletonData.textures = [textureAsset]; - spine.skeletonData.textureNames = [textureAsset.name]; - - // 设置默认动画 - spine.defaultSkin = "default"; - spine.animation = "01"; // 替换为实际的动画名称 - spine.loop = true; - - // 播放动画 - spine.setAnimation(0, "animation", true); - - console.log("spine动画加载成功"); - }); - } - - // 或者使用更简单的方法 - 直接加载预配置的spine资源 - loadSpineSimple(node: cc.Node, spineName: string) { - // 使用cc.assetManager替换cc.resources.load + loadSpineSimple(iconNode: cc.Node, spineName: string) { + // 构建spine资源路径 const spinePath = `spine/${spineName}/skeleton`; - cc.assetManager.loadAny(spinePath, sp.SkeletonData, (err: any, skeletonData: sp.SkeletonData) => { + // 加载spine资源 + cc.resources.load(spinePath, sp.SkeletonData, (err: Error, skeletonData: sp.SkeletonData) => { if (err) { - console.error(`加载spine动画 ${spineName} 失败:`, err); + console.error(`加载spine资源失败: ${spinePath}`, err); return; } - const spine = node.addComponent(sp.Skeleton); - spine.skeletonData = skeletonData; - spine.defaultSkin = "default"; - spine.animation = "02"; // 替换为实际的动画名称 - spine.loop = true; - spine.setAnimation(0, "02", true); + // 检查节点是否已经有spine组件 + let spineComponent = iconNode.getComponent(sp.Skeleton); - // console.log(`spine动画 ${spineName} 加载成功`); + if (!spineComponent) { + // 如果没有spine组件,添加一个 + spineComponent = iconNode.addComponent(sp.Skeleton); + } + + // 设置skeleton数据 + spineComponent.skeletonData = skeletonData; + let actionNumber = ""; + if (spineName.startsWith("action")) { + actionNumber = spineName.substring(6); // 提取"action"后面的部分 + console.log(`提取的action编号: ${actionNumber}`); + } + spineComponent.setAnimation(0, actionNumber, true); + + // 设置spine组件属性 + spineComponent.premultipliedAlpha = true; + spineComponent.timeScale = 1.0; + + console.log(`成功加载spine动画: ${spineName}`); }); } + //监听后台 onGames() { //@ts-ignore diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts index 56ef985..5afa533 100644 --- a/assets/Script/module/Tool/GameTool.ts +++ b/assets/Script/module/Tool/GameTool.ts @@ -443,8 +443,8 @@ var GameTool = { //关卡上限 maxLevel() { let jg = false; - if (cc.fx.GameConfig.GM_INFO.level > 1050) { - cc.fx.GameConfig.GM_INFO.level = 1051; + if (cc.fx.GameConfig.GM_INFO.level > 1049) { + cc.fx.GameConfig.GM_INFO.level = 1050; jg = true; } return jg; diff --git a/assets/career/prefab/rankGame.prefab b/assets/career/prefab/rankGame.prefab index 724b116..aea6689 100644 --- a/assets/career/prefab/rankGame.prefab +++ b/assets/career/prefab/rankGame.prefab @@ -27,14 +27,14 @@ "_active": true, "_components": [ { - "__id__": 477 + "__id__": 501 }, { - "__id__": 478 + "__id__": 502 } ], "_prefab": { - "__id__": 479 + "__id__": 503 }, "_opacity": 255, "_color": { @@ -211,14 +211,14 @@ "__id__": 11 }, { - "__id__": 474 + "__id__": 498 }, { - "__id__": 475 + "__id__": 499 } ], "_prefab": { - "__id__": 476 + "__id__": 500 }, "_opacity": 255, "_color": { @@ -285,14 +285,14 @@ "__id__": 10 }, { - "__id__": 471 + "__id__": 495 }, { - "__id__": 472 + "__id__": 496 } ], "_prefab": { - "__id__": 473 + "__id__": 497 }, "_opacity": 255, "_color": { @@ -518,11 +518,11 @@ "_active": true, "_components": [ { - "__id__": 469 + "__id__": 493 } ], "_prefab": { - "__id__": 470 + "__id__": 494 }, "_opacity": 255, "_color": { @@ -1851,7 +1851,7 @@ "__id__": 44 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 46 @@ -1922,11 +1922,9 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "709d6e35-e6f0-4289-be96-c7746a89bc89" - }, + "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -2876,11 +2874,9 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "709d6e35-e6f0-4289-be96-c7746a89bc89" - }, + "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -3830,11 +3826,9 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "709d6e35-e6f0-4289-be96-c7746a89bc89" - }, + "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -4784,11 +4778,9 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "709d6e35-e6f0-4289-be96-c7746a89bc89" - }, + "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -5738,11 +5730,9 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "709d6e35-e6f0-4289-be96-c7746a89bc89" - }, + "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -6692,11 +6682,9 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "709d6e35-e6f0-4289-be96-c7746a89bc89" - }, + "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -7346,38 +7334,38 @@ "__id__": 213 }, { - "__id__": 245 + "__id__": 248 }, { - "__id__": 277 + "__id__": 283 }, { - "__id__": 306 + "__id__": 315 }, { - "__id__": 335 + "__id__": 347 }, { - "__id__": 364 + "__id__": 379 }, { - "__id__": 393 + "__id__": 411 }, { - "__id__": 422 + "__id__": 443 }, { - "__id__": 451 + "__id__": 475 } ], "_active": false, "_components": [ { - "__id__": 467 + "__id__": 491 } ], "_prefab": { - "__id__": 468 + "__id__": 492 }, "_opacity": 255, "_color": { @@ -7988,10 +7976,7 @@ "__id__": 217 }, { - "__id__": 223 - }, - { - "__id__": 229 + "__id__": 226 }, { "__id__": 232 @@ -8004,12 +7989,15 @@ }, { "__id__": 241 + }, + { + "__id__": 244 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 244 + "__id__": 247 }, "_opacity": 255, "_color": { @@ -8177,16 +8165,19 @@ "_children": [ { "__id__": 218 + }, + { + "__id__": 221 } ], "_active": true, "_components": [ { - "__id__": 221 + "__id__": 224 } ], "_prefab": { - "__id__": 222 + "__id__": 225 }, "_opacity": 255, "_color": { @@ -8342,6 +8333,117 @@ "fileId": "45fIIXJK5BR6gJLSAmTDlL", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 217 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 222 + } + ], + "_prefab": { + "__id__": 223 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 221 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 213 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "a93FaSaahKbpRFkOqb+95W", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", @@ -8384,17 +8486,17 @@ }, "_children": [ { - "__id__": 224 + "__id__": 227 } ], "_active": false, "_components": [ { - "__id__": 227 + "__id__": 230 } ], "_prefab": { - "__id__": 228 + "__id__": 231 }, "_opacity": 255, "_color": { @@ -8448,17 +8550,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 223 + "__id__": 226 }, "_children": [], "_active": true, "_components": [ { - "__id__": 225 + "__id__": 228 } ], "_prefab": { - "__id__": 226 + "__id__": 229 }, "_opacity": 255, "_color": { @@ -8512,7 +8614,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 224 + "__id__": 227 }, "_enabled": true, "_materials": [ @@ -8556,7 +8658,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 223 + "__id__": 226 }, "_enabled": true, "_materials": [ @@ -8607,11 +8709,11 @@ "_active": true, "_components": [ { - "__id__": 230 + "__id__": 233 } ], "_prefab": { - "__id__": 231 + "__id__": 234 }, "_opacity": 255, "_color": { @@ -8665,7 +8767,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 229 + "__id__": 232 }, "_enabled": true, "_materials": [ @@ -8716,11 +8818,11 @@ "_active": true, "_components": [ { - "__id__": 233 + "__id__": 236 } ], "_prefab": { - "__id__": 234 + "__id__": 237 }, "_opacity": 255, "_color": { @@ -8774,7 +8876,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 232 + "__id__": 235 }, "_enabled": true, "_materials": [ @@ -8823,11 +8925,11 @@ "_active": true, "_components": [ { - "__id__": 236 + "__id__": 239 } ], "_prefab": { - "__id__": 237 + "__id__": 240 }, "_opacity": 255, "_color": { @@ -8881,7 +8983,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 235 + "__id__": 238 }, "_enabled": true, "_materials": [ @@ -8931,11 +9033,11 @@ "_active": true, "_components": [ { - "__id__": 239 + "__id__": 242 } ], "_prefab": { - "__id__": 240 + "__id__": 243 }, "_opacity": 255, "_color": { @@ -8989,7 +9091,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 238 + "__id__": 241 }, "_enabled": true, "_materials": [ @@ -9039,11 +9141,11 @@ "_active": true, "_components": [ { - "__id__": 242 + "__id__": 245 } ], "_prefab": { - "__id__": 243 + "__id__": 246 }, "_opacity": 255, "_color": { @@ -9097,7 +9199,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 241 + "__id__": 244 }, "_enabled": true, "_materials": [ @@ -9156,21 +9258,15 @@ "__id__": 197 }, "_children": [ - { - "__id__": 246 - }, { "__id__": 249 }, { - "__id__": 255 + "__id__": 252 }, { "__id__": 261 }, - { - "__id__": 264 - }, { "__id__": 267 }, @@ -9179,12 +9275,18 @@ }, { "__id__": 273 + }, + { + "__id__": 276 + }, + { + "__id__": 279 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 276 + "__id__": 282 }, "_opacity": 255, "_color": { @@ -9238,17 +9340,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [], "_active": true, "_components": [ { - "__id__": 247 + "__id__": 250 } ], "_prefab": { - "__id__": 248 + "__id__": 251 }, "_opacity": 255, "_color": { @@ -9302,7 +9404,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 246 + "__id__": 249 }, "_enabled": true, "_materials": [ @@ -9334,7 +9436,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9347,21 +9449,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [ { - "__id__": 250 + "__id__": 253 + }, + { + "__id__": 256 } ], "_active": true, "_components": [ { - "__id__": 253 + "__id__": 259 } ], "_prefab": { - "__id__": 254 + "__id__": 260 }, "_opacity": 255, "_color": { @@ -9415,17 +9520,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 249 + "__id__": 252 }, "_children": [], "_active": true, "_components": [ { - "__id__": 251 + "__id__": 254 } ], "_prefab": { - "__id__": 252 + "__id__": 255 }, "_opacity": 251, "_color": { @@ -9479,7 +9584,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 250 + "__id__": 253 }, "_enabled": true, "_materials": [ @@ -9509,7 +9614,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9517,12 +9622,123 @@ "fileId": "30PtF4H/lFNIVvASIrA4Bo", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 252 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 257 + } + ], + "_prefab": { + "__id__": 258 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 256 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 248 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "81Hy8k6cRDd4LV46AiInTA", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 249 + "__id__": 252 }, "_enabled": true, "_materials": [ @@ -9542,7 +9758,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9555,21 +9771,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [ { - "__id__": 256 + "__id__": 262 } ], "_active": false, "_components": [ { - "__id__": 259 + "__id__": 265 } ], "_prefab": { - "__id__": 260 + "__id__": 266 }, "_opacity": 255, "_color": { @@ -9623,17 +9839,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 255 + "__id__": 261 }, "_children": [], "_active": true, "_components": [ { - "__id__": 257 + "__id__": 263 } ], "_prefab": { - "__id__": 258 + "__id__": 264 }, "_opacity": 255, "_color": { @@ -9687,7 +9903,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 256 + "__id__": 262 }, "_enabled": true, "_materials": [ @@ -9718,7 +9934,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9731,7 +9947,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 255 + "__id__": 261 }, "_enabled": true, "_materials": [ @@ -9763,7 +9979,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9776,17 +9992,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [], "_active": true, "_components": [ { - "__id__": 262 + "__id__": 268 } ], "_prefab": { - "__id__": 263 + "__id__": 269 }, "_opacity": 255, "_color": { @@ -9840,7 +10056,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 261 + "__id__": 267 }, "_enabled": true, "_materials": [ @@ -9870,7 +10086,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9883,17 +10099,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [], "_active": true, "_components": [ { - "__id__": 265 + "__id__": 271 } ], "_prefab": { - "__id__": 266 + "__id__": 272 }, "_opacity": 255, "_color": { @@ -9947,7 +10163,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 264 + "__id__": 270 }, "_enabled": true, "_materials": [ @@ -9979,7 +10195,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -9992,17 +10208,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [], "_active": true, "_components": [ { - "__id__": 268 + "__id__": 274 } ], "_prefab": { - "__id__": 269 + "__id__": 275 }, "_opacity": 255, "_color": { @@ -10056,7 +10272,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 267 + "__id__": 273 }, "_enabled": true, "_materials": [ @@ -10087,7 +10303,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10100,17 +10316,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [], "_active": true, "_components": [ { - "__id__": 271 + "__id__": 277 } ], "_prefab": { - "__id__": 272 + "__id__": 278 }, "_opacity": 255, "_color": { @@ -10164,7 +10380,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 270 + "__id__": 276 }, "_enabled": true, "_materials": [ @@ -10195,7 +10411,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10208,17 +10424,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 245 + "__id__": 248 }, "_children": [], "_active": true, "_components": [ { - "__id__": 274 + "__id__": 280 } ], "_prefab": { - "__id__": 275 + "__id__": 281 }, "_opacity": 255, "_color": { @@ -10272,7 +10488,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 273 + "__id__": 279 }, "_enabled": true, "_materials": [ @@ -10304,7 +10520,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10315,7 +10531,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 248 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10332,31 +10548,31 @@ }, "_children": [ { - "__id__": 278 - }, - { - "__id__": 281 + "__id__": 284 }, { "__id__": 287 }, - { - "__id__": 293 - }, { "__id__": 296 }, { - "__id__": 299 + "__id__": 302 }, { - "__id__": 302 + "__id__": 305 + }, + { + "__id__": 308 + }, + { + "__id__": 311 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 305 + "__id__": 314 }, "_opacity": 255, "_color": { @@ -10410,17 +10626,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [], "_active": true, "_components": [ { - "__id__": 279 + "__id__": 285 } ], "_prefab": { - "__id__": 280 + "__id__": 286 }, "_opacity": 255, "_color": { @@ -10474,7 +10690,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 278 + "__id__": 284 }, "_enabled": true, "_materials": [ @@ -10506,7 +10722,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10519,21 +10735,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [ { - "__id__": 282 + "__id__": 288 + }, + { + "__id__": 291 } ], "_active": true, "_components": [ { - "__id__": 285 + "__id__": 294 } ], "_prefab": { - "__id__": 286 + "__id__": 295 }, "_opacity": 255, "_color": { @@ -10587,17 +10806,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 281 + "__id__": 287 }, "_children": [], "_active": true, "_components": [ { - "__id__": 283 + "__id__": 289 } ], "_prefab": { - "__id__": 284 + "__id__": 290 }, "_opacity": 251, "_color": { @@ -10651,7 +10870,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 282 + "__id__": 288 }, "_enabled": true, "_materials": [ @@ -10681,7 +10900,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10689,12 +10908,123 @@ "fileId": "24aG9X4mZJYbHlLvxE6SMK", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 287 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 292 + } + ], + "_prefab": { + "__id__": 293 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 291 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 283 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "3ej8xJu4tKGJdFmBvQ2qj6", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 281 + "__id__": 287 }, "_enabled": true, "_materials": [ @@ -10714,7 +11044,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10727,21 +11057,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [ { - "__id__": 288 + "__id__": 297 } ], "_active": false, "_components": [ { - "__id__": 291 + "__id__": 300 } ], "_prefab": { - "__id__": 292 + "__id__": 301 }, "_opacity": 255, "_color": { @@ -10795,17 +11125,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 287 + "__id__": 296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 289 + "__id__": 298 } ], "_prefab": { - "__id__": 290 + "__id__": 299 }, "_opacity": 255, "_color": { @@ -10859,7 +11189,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 288 + "__id__": 297 }, "_enabled": true, "_materials": [ @@ -10890,7 +11220,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10903,7 +11233,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 287 + "__id__": 296 }, "_enabled": true, "_materials": [ @@ -10935,7 +11265,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -10948,17 +11278,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [], "_active": true, "_components": [ { - "__id__": 294 + "__id__": 303 } ], "_prefab": { - "__id__": 295 + "__id__": 304 }, "_opacity": 255, "_color": { @@ -11012,7 +11342,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 293 + "__id__": 302 }, "_enabled": true, "_materials": [ @@ -11042,7 +11372,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11055,17 +11385,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [], "_active": true, "_components": [ { - "__id__": 297 + "__id__": 306 } ], "_prefab": { - "__id__": 298 + "__id__": 307 }, "_opacity": 255, "_color": { @@ -11119,7 +11449,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 296 + "__id__": 305 }, "_enabled": true, "_materials": [ @@ -11151,7 +11481,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11164,17 +11494,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [], "_active": true, "_components": [ { - "__id__": 300 + "__id__": 309 } ], "_prefab": { - "__id__": 301 + "__id__": 310 }, "_opacity": 255, "_color": { @@ -11228,7 +11558,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 299 + "__id__": 308 }, "_enabled": true, "_materials": [ @@ -11259,7 +11589,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11272,17 +11602,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 277 + "__id__": 283 }, "_children": [], "_active": true, "_components": [ { - "__id__": 303 + "__id__": 312 } ], "_prefab": { - "__id__": 304 + "__id__": 313 }, "_opacity": 255, "_color": { @@ -11336,7 +11666,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 302 + "__id__": 311 }, "_enabled": true, "_materials": [ @@ -11367,7 +11697,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11378,7 +11708,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 277 + "__id__": 283 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11394,32 +11724,32 @@ "__id__": 197 }, "_children": [ - { - "__id__": 307 - }, - { - "__id__": 310 - }, { "__id__": 316 }, { - "__id__": 322 - }, - { - "__id__": 325 + "__id__": 319 }, { "__id__": 328 }, { - "__id__": 331 + "__id__": 334 + }, + { + "__id__": 337 + }, + { + "__id__": 340 + }, + { + "__id__": 343 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 334 + "__id__": 346 }, "_opacity": 255, "_color": { @@ -11473,17 +11803,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 317 } ], "_prefab": { - "__id__": 309 + "__id__": 318 }, "_opacity": 255, "_color": { @@ -11537,7 +11867,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 307 + "__id__": 316 }, "_enabled": true, "_materials": [ @@ -11569,7 +11899,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11582,21 +11912,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [ { - "__id__": 311 + "__id__": 320 + }, + { + "__id__": 323 } ], "_active": true, "_components": [ { - "__id__": 314 + "__id__": 326 } ], "_prefab": { - "__id__": 315 + "__id__": 327 }, "_opacity": 255, "_color": { @@ -11650,17 +11983,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 310 + "__id__": 319 }, "_children": [], "_active": true, "_components": [ { - "__id__": 312 + "__id__": 321 } ], "_prefab": { - "__id__": 313 + "__id__": 322 }, "_opacity": 251, "_color": { @@ -11714,7 +12047,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 311 + "__id__": 320 }, "_enabled": true, "_materials": [ @@ -11744,7 +12077,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11752,12 +12085,123 @@ "fileId": "5c6/WAT2NMjYduthOXwsOf", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 319 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 324 + } + ], + "_prefab": { + "__id__": 325 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 323 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 315 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "16A1tD/ZRG9rEhAuqqg/pn", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 310 + "__id__": 319 }, "_enabled": true, "_materials": [ @@ -11777,7 +12221,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11790,21 +12234,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [ { - "__id__": 317 + "__id__": 329 } ], "_active": false, "_components": [ { - "__id__": 320 + "__id__": 332 } ], "_prefab": { - "__id__": 321 + "__id__": 333 }, "_opacity": 255, "_color": { @@ -11858,17 +12302,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 316 + "__id__": 328 }, "_children": [], "_active": true, "_components": [ { - "__id__": 318 + "__id__": 330 } ], "_prefab": { - "__id__": 319 + "__id__": 331 }, "_opacity": 255, "_color": { @@ -11922,7 +12366,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 317 + "__id__": 329 }, "_enabled": true, "_materials": [ @@ -11953,7 +12397,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -11966,7 +12410,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 316 + "__id__": 328 }, "_enabled": true, "_materials": [ @@ -11998,7 +12442,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12011,17 +12455,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [], "_active": true, "_components": [ { - "__id__": 323 + "__id__": 335 } ], "_prefab": { - "__id__": 324 + "__id__": 336 }, "_opacity": 255, "_color": { @@ -12075,7 +12519,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 322 + "__id__": 334 }, "_enabled": true, "_materials": [ @@ -12107,7 +12551,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12120,17 +12564,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [], "_active": true, "_components": [ { - "__id__": 326 + "__id__": 338 } ], "_prefab": { - "__id__": 327 + "__id__": 339 }, "_opacity": 255, "_color": { @@ -12184,7 +12628,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 325 + "__id__": 337 }, "_enabled": true, "_materials": [ @@ -12214,7 +12658,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12227,17 +12671,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [], "_active": true, "_components": [ { - "__id__": 329 + "__id__": 341 } ], "_prefab": { - "__id__": 330 + "__id__": 342 }, "_opacity": 255, "_color": { @@ -12291,7 +12735,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 328 + "__id__": 340 }, "_enabled": true, "_materials": [ @@ -12322,7 +12766,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12335,17 +12779,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 306 + "__id__": 315 }, "_children": [], "_active": true, "_components": [ { - "__id__": 332 + "__id__": 344 } ], "_prefab": { - "__id__": 333 + "__id__": 345 }, "_opacity": 255, "_color": { @@ -12399,7 +12843,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 331 + "__id__": 343 }, "_enabled": true, "_materials": [ @@ -12430,7 +12874,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12441,7 +12885,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 306 + "__id__": 315 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12458,31 +12902,31 @@ }, "_children": [ { - "__id__": 336 - }, - { - "__id__": 339 - }, - { - "__id__": 345 + "__id__": 348 }, { "__id__": 351 }, - { - "__id__": 354 - }, - { - "__id__": 357 - }, { "__id__": 360 + }, + { + "__id__": 366 + }, + { + "__id__": 369 + }, + { + "__id__": 372 + }, + { + "__id__": 375 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 363 + "__id__": 378 }, "_opacity": 255, "_color": { @@ -12536,17 +12980,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 337 + "__id__": 349 } ], "_prefab": { - "__id__": 338 + "__id__": 350 }, "_opacity": 255, "_color": { @@ -12600,7 +13044,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 336 + "__id__": 348 }, "_enabled": true, "_materials": [ @@ -12632,7 +13076,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12645,21 +13089,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [ { - "__id__": 340 + "__id__": 352 + }, + { + "__id__": 355 } ], "_active": true, "_components": [ { - "__id__": 343 + "__id__": 358 } ], "_prefab": { - "__id__": 344 + "__id__": 359 }, "_opacity": 255, "_color": { @@ -12713,17 +13160,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 339 + "__id__": 351 }, "_children": [], "_active": true, "_components": [ { - "__id__": 341 + "__id__": 353 } ], "_prefab": { - "__id__": 342 + "__id__": 354 }, "_opacity": 251, "_color": { @@ -12777,7 +13224,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 340 + "__id__": 352 }, "_enabled": true, "_materials": [ @@ -12807,7 +13254,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12815,12 +13262,123 @@ "fileId": "468ERbB1hMQYmGH/Rwtalg", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 356 + } + ], + "_prefab": { + "__id__": 357 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 355 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 347 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "85WrSDcslJwYkFKGOLKPy+", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 339 + "__id__": 351 }, "_enabled": true, "_materials": [ @@ -12840,7 +13398,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -12853,21 +13411,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [ { - "__id__": 346 + "__id__": 361 } ], "_active": false, "_components": [ { - "__id__": 349 + "__id__": 364 } ], "_prefab": { - "__id__": 350 + "__id__": 365 }, "_opacity": 255, "_color": { @@ -12921,17 +13479,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 345 + "__id__": 360 }, "_children": [], "_active": true, "_components": [ { - "__id__": 347 + "__id__": 362 } ], "_prefab": { - "__id__": 348 + "__id__": 363 }, "_opacity": 255, "_color": { @@ -12985,7 +13543,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 346 + "__id__": 361 }, "_enabled": true, "_materials": [ @@ -13016,7 +13574,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13029,7 +13587,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 345 + "__id__": 360 }, "_enabled": true, "_materials": [ @@ -13061,7 +13619,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13074,17 +13632,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 352 + "__id__": 367 } ], "_prefab": { - "__id__": 353 + "__id__": 368 }, "_opacity": 255, "_color": { @@ -13138,7 +13696,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 351 + "__id__": 366 }, "_enabled": true, "_materials": [ @@ -13168,7 +13726,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13181,17 +13739,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 355 + "__id__": 370 } ], "_prefab": { - "__id__": 356 + "__id__": 371 }, "_opacity": 255, "_color": { @@ -13245,7 +13803,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 354 + "__id__": 369 }, "_enabled": true, "_materials": [ @@ -13277,7 +13835,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13290,17 +13848,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 358 + "__id__": 373 } ], "_prefab": { - "__id__": 359 + "__id__": 374 }, "_opacity": 255, "_color": { @@ -13354,7 +13912,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 357 + "__id__": 372 }, "_enabled": true, "_materials": [ @@ -13385,7 +13943,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13398,17 +13956,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 335 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 361 + "__id__": 376 } ], "_prefab": { - "__id__": 362 + "__id__": 377 }, "_opacity": 255, "_color": { @@ -13462,7 +14020,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 360 + "__id__": 375 }, "_enabled": true, "_materials": [ @@ -13493,7 +14051,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13504,7 +14062,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 335 + "__id__": 347 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13520,15 +14078,6 @@ "__id__": 197 }, "_children": [ - { - "__id__": 365 - }, - { - "__id__": 368 - }, - { - "__id__": 374 - }, { "__id__": 380 }, @@ -13536,16 +14085,25 @@ "__id__": 383 }, { - "__id__": 386 + "__id__": 392 }, { - "__id__": 389 + "__id__": 398 + }, + { + "__id__": 401 + }, + { + "__id__": 404 + }, + { + "__id__": 407 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 392 + "__id__": 410 }, "_opacity": 255, "_color": { @@ -13599,17 +14157,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [], "_active": true, "_components": [ { - "__id__": 366 + "__id__": 381 } ], "_prefab": { - "__id__": 367 + "__id__": 382 }, "_opacity": 255, "_color": { @@ -13663,7 +14221,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 365 + "__id__": 380 }, "_enabled": true, "_materials": [ @@ -13695,7 +14253,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13708,21 +14266,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [ { - "__id__": 369 + "__id__": 384 + }, + { + "__id__": 387 } ], "_active": true, "_components": [ { - "__id__": 372 + "__id__": 390 } ], "_prefab": { - "__id__": 373 + "__id__": 391 }, "_opacity": 255, "_color": { @@ -13776,17 +14337,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 368 + "__id__": 383 }, "_children": [], "_active": true, "_components": [ { - "__id__": 370 + "__id__": 385 } ], "_prefab": { - "__id__": 371 + "__id__": 386 }, "_opacity": 251, "_color": { @@ -13840,7 +14401,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 369 + "__id__": 384 }, "_enabled": true, "_materials": [ @@ -13870,7 +14431,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13878,12 +14439,123 @@ "fileId": "092zlPmdVKjaQ0aWPu8yEP", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 383 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 388 + } + ], + "_prefab": { + "__id__": 389 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 387 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 379 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "c8L7+mFupKIYr54cHqB9BE", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 368 + "__id__": 383 }, "_enabled": true, "_materials": [ @@ -13903,7 +14575,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -13916,21 +14588,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [ { - "__id__": 375 + "__id__": 393 } ], "_active": false, "_components": [ { - "__id__": 378 + "__id__": 396 } ], "_prefab": { - "__id__": 379 + "__id__": 397 }, "_opacity": 255, "_color": { @@ -13984,17 +14656,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 374 + "__id__": 392 }, "_children": [], "_active": true, "_components": [ { - "__id__": 376 + "__id__": 394 } ], "_prefab": { - "__id__": 377 + "__id__": 395 }, "_opacity": 255, "_color": { @@ -14048,7 +14720,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 375 + "__id__": 393 }, "_enabled": true, "_materials": [ @@ -14079,7 +14751,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14092,7 +14764,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 374 + "__id__": 392 }, "_enabled": true, "_materials": [ @@ -14124,7 +14796,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14137,17 +14809,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [], "_active": true, "_components": [ { - "__id__": 381 + "__id__": 399 } ], "_prefab": { - "__id__": 382 + "__id__": 400 }, "_opacity": 255, "_color": { @@ -14201,7 +14873,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 380 + "__id__": 398 }, "_enabled": true, "_materials": [ @@ -14231,7 +14903,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14244,17 +14916,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [], "_active": true, "_components": [ { - "__id__": 384 + "__id__": 402 } ], "_prefab": { - "__id__": 385 + "__id__": 403 }, "_opacity": 255, "_color": { @@ -14308,7 +14980,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 383 + "__id__": 401 }, "_enabled": true, "_materials": [ @@ -14340,7 +15012,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14353,17 +15025,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [], "_active": true, "_components": [ { - "__id__": 387 + "__id__": 405 } ], "_prefab": { - "__id__": 388 + "__id__": 406 }, "_opacity": 255, "_color": { @@ -14417,7 +15089,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 386 + "__id__": 404 }, "_enabled": true, "_materials": [ @@ -14448,7 +15120,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14461,17 +15133,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 364 + "__id__": 379 }, "_children": [], "_active": true, "_components": [ { - "__id__": 390 + "__id__": 408 } ], "_prefab": { - "__id__": 391 + "__id__": 409 }, "_opacity": 255, "_color": { @@ -14525,7 +15197,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 389 + "__id__": 407 }, "_enabled": true, "_materials": [ @@ -14556,7 +15228,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14567,7 +15239,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 364 + "__id__": 379 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14583,18 +15255,6 @@ "__id__": 197 }, "_children": [ - { - "__id__": 394 - }, - { - "__id__": 397 - }, - { - "__id__": 403 - }, - { - "__id__": 409 - }, { "__id__": 412 }, @@ -14602,13 +15262,25 @@ "__id__": 415 }, { - "__id__": 418 + "__id__": 424 + }, + { + "__id__": 430 + }, + { + "__id__": 433 + }, + { + "__id__": 436 + }, + { + "__id__": 439 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 421 + "__id__": 442 }, "_opacity": 255, "_color": { @@ -14662,17 +15334,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [], "_active": true, "_components": [ { - "__id__": 395 + "__id__": 413 } ], "_prefab": { - "__id__": 396 + "__id__": 414 }, "_opacity": 255, "_color": { @@ -14726,7 +15398,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 394 + "__id__": 412 }, "_enabled": true, "_materials": [ @@ -14758,7 +15430,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14771,21 +15443,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [ { - "__id__": 398 + "__id__": 416 + }, + { + "__id__": 419 } ], "_active": true, "_components": [ { - "__id__": 401 + "__id__": 422 } ], "_prefab": { - "__id__": 402 + "__id__": 423 }, "_opacity": 255, "_color": { @@ -14839,17 +15514,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 397 + "__id__": 415 }, "_children": [], "_active": true, "_components": [ { - "__id__": 399 + "__id__": 417 } ], "_prefab": { - "__id__": 400 + "__id__": 418 }, "_opacity": 251, "_color": { @@ -14903,7 +15578,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 398 + "__id__": 416 }, "_enabled": true, "_materials": [ @@ -14933,7 +15608,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14941,12 +15616,123 @@ "fileId": "74S0JEQTlAtJBcDrN3FtQv", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 415 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 420 + } + ], + "_prefab": { + "__id__": 421 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 419 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 411 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "cc9IORD5ZEkbapxDmk/ZZD", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 397 + "__id__": 415 }, "_enabled": true, "_materials": [ @@ -14966,7 +15752,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -14979,21 +15765,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [ { - "__id__": 404 + "__id__": 425 } ], "_active": false, "_components": [ { - "__id__": 407 + "__id__": 428 } ], "_prefab": { - "__id__": 408 + "__id__": 429 }, "_opacity": 255, "_color": { @@ -15047,17 +15833,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 403 + "__id__": 424 }, "_children": [], "_active": true, "_components": [ { - "__id__": 405 + "__id__": 426 } ], "_prefab": { - "__id__": 406 + "__id__": 427 }, "_opacity": 255, "_color": { @@ -15111,7 +15897,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 404 + "__id__": 425 }, "_enabled": true, "_materials": [ @@ -15142,7 +15928,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15155,7 +15941,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 403 + "__id__": 424 }, "_enabled": true, "_materials": [ @@ -15187,7 +15973,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15200,17 +15986,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [], "_active": true, "_components": [ { - "__id__": 410 + "__id__": 431 } ], "_prefab": { - "__id__": 411 + "__id__": 432 }, "_opacity": 255, "_color": { @@ -15264,7 +16050,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 409 + "__id__": 430 }, "_enabled": true, "_materials": [ @@ -15294,7 +16080,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15307,17 +16093,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [], "_active": true, "_components": [ { - "__id__": 413 + "__id__": 434 } ], "_prefab": { - "__id__": 414 + "__id__": 435 }, "_opacity": 255, "_color": { @@ -15371,7 +16157,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 412 + "__id__": 433 }, "_enabled": true, "_materials": [ @@ -15403,7 +16189,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15416,17 +16202,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [], "_active": true, "_components": [ { - "__id__": 416 + "__id__": 437 } ], "_prefab": { - "__id__": 417 + "__id__": 438 }, "_opacity": 255, "_color": { @@ -15480,7 +16266,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 415 + "__id__": 436 }, "_enabled": true, "_materials": [ @@ -15511,7 +16297,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15524,17 +16310,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 393 + "__id__": 411 }, "_children": [], "_active": true, "_components": [ { - "__id__": 419 + "__id__": 440 } ], "_prefab": { - "__id__": 420 + "__id__": 441 }, "_opacity": 255, "_color": { @@ -15588,7 +16374,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 418 + "__id__": 439 }, "_enabled": true, "_materials": [ @@ -15619,7 +16405,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15630,7 +16416,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 393 + "__id__": 411 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15646,32 +16432,32 @@ "__id__": 197 }, "_children": [ - { - "__id__": 423 - }, - { - "__id__": 426 - }, - { - "__id__": 432 - }, - { - "__id__": 438 - }, - { - "__id__": 441 - }, { "__id__": 444 }, { "__id__": 447 + }, + { + "__id__": 456 + }, + { + "__id__": 462 + }, + { + "__id__": 465 + }, + { + "__id__": 468 + }, + { + "__id__": 471 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 450 + "__id__": 474 }, "_opacity": 255, "_color": { @@ -15725,17 +16511,17 @@ "_name": "bg", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [], "_active": true, "_components": [ { - "__id__": 424 + "__id__": 445 } ], "_prefab": { - "__id__": 425 + "__id__": 446 }, "_opacity": 255, "_color": { @@ -15789,7 +16575,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 423 + "__id__": 444 }, "_enabled": true, "_materials": [ @@ -15821,7 +16607,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -15834,21 +16620,24 @@ "_name": "mask", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [ { - "__id__": 427 + "__id__": 448 + }, + { + "__id__": 451 } ], "_active": true, "_components": [ { - "__id__": 430 + "__id__": 454 } ], "_prefab": { - "__id__": 431 + "__id__": 455 }, "_opacity": 255, "_color": { @@ -15902,17 +16691,17 @@ "_name": "icon", "_objFlags": 0, "_parent": { - "__id__": 426 + "__id__": 447 }, "_children": [], "_active": true, "_components": [ { - "__id__": 428 + "__id__": 449 } ], "_prefab": { - "__id__": 429 + "__id__": 450 }, "_opacity": 251, "_color": { @@ -15966,7 +16755,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 427 + "__id__": 448 }, "_enabled": true, "_materials": [ @@ -15996,7 +16785,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16004,12 +16793,123 @@ "fileId": "15qNCXqfBLza/tvUGQk9EK", "sync": false }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "_parent": { + "__id__": 447 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 452 + } + ], + "_prefab": { + "__id__": 453 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 451 + }, + "_enabled": true, + "_materials": [], + "paused": false, + "defaultSkin": "", + "defaultAnimation": "", + "_preCacheMode": -1, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": null, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 443 + }, + "asset": { + "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" + }, + "fileId": "956Rx9XUVK/7PsdDCz4pcf", + "sync": false + }, { "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { - "__id__": 426 + "__id__": 447 }, "_enabled": true, "_materials": [ @@ -16029,7 +16929,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16042,21 +16942,21 @@ "_name": "kong", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [ { - "__id__": 433 + "__id__": 457 } ], "_active": false, "_components": [ { - "__id__": 436 + "__id__": 460 } ], "_prefab": { - "__id__": 437 + "__id__": 461 }, "_opacity": 255, "_color": { @@ -16110,17 +17010,17 @@ "_name": "New Label", "_objFlags": 0, "_parent": { - "__id__": 432 + "__id__": 456 }, "_children": [], "_active": true, "_components": [ { - "__id__": 434 + "__id__": 458 } ], "_prefab": { - "__id__": 435 + "__id__": 459 }, "_opacity": 255, "_color": { @@ -16174,7 +17074,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 433 + "__id__": 457 }, "_enabled": true, "_materials": [ @@ -16205,7 +17105,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16218,7 +17118,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 432 + "__id__": 456 }, "_enabled": true, "_materials": [ @@ -16250,7 +17150,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16263,17 +17163,17 @@ "_name": "kuang", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [], "_active": true, "_components": [ { - "__id__": 439 + "__id__": 463 } ], "_prefab": { - "__id__": 440 + "__id__": 464 }, "_opacity": 255, "_color": { @@ -16327,7 +17227,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 438 + "__id__": 462 }, "_enabled": true, "_materials": [ @@ -16357,7 +17257,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16370,17 +17270,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [], "_active": true, "_components": [ { - "__id__": 442 + "__id__": 466 } ], "_prefab": { - "__id__": 443 + "__id__": 467 }, "_opacity": 255, "_color": { @@ -16434,7 +17334,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 441 + "__id__": 465 }, "_enabled": true, "_materials": [ @@ -16466,7 +17366,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16479,17 +17379,17 @@ "_name": "name", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [], "_active": true, "_components": [ { - "__id__": 445 + "__id__": 469 } ], "_prefab": { - "__id__": 446 + "__id__": 470 }, "_opacity": 255, "_color": { @@ -16543,7 +17443,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 444 + "__id__": 468 }, "_enabled": true, "_materials": [ @@ -16574,7 +17474,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16587,17 +17487,17 @@ "_name": "level", "_objFlags": 0, "_parent": { - "__id__": 422 + "__id__": 443 }, "_children": [], "_active": true, "_components": [ { - "__id__": 448 + "__id__": 472 } ], "_prefab": { - "__id__": 449 + "__id__": 473 }, "_opacity": 255, "_color": { @@ -16651,7 +17551,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 447 + "__id__": 471 }, "_enabled": true, "_materials": [ @@ -16682,7 +17582,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16693,7 +17593,7 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 422 + "__id__": 443 }, "asset": { "__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242" @@ -16710,22 +17610,22 @@ }, "_children": [ { - "__id__": 452 + "__id__": 476 }, { - "__id__": 455 + "__id__": 479 }, { - "__id__": 458 + "__id__": 482 }, { - "__id__": 461 + "__id__": 485 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 466 + "__id__": 490 }, "_opacity": 255, "_color": { @@ -16779,17 +17679,17 @@ "_name": "one", "_objFlags": 0, "_parent": { - "__id__": 451 + "__id__": 475 }, "_children": [], "_active": false, "_components": [ { - "__id__": 453 + "__id__": 477 } ], "_prefab": { - "__id__": 454 + "__id__": 478 }, "_opacity": 255, "_color": { @@ -16843,7 +17743,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 452 + "__id__": 476 }, "_enabled": true, "_materials": [ @@ -16888,17 +17788,17 @@ "_name": "two", "_objFlags": 0, "_parent": { - "__id__": 451 + "__id__": 475 }, "_children": [], "_active": false, "_components": [ { - "__id__": 456 + "__id__": 480 } ], "_prefab": { - "__id__": 457 + "__id__": 481 }, "_opacity": 255, "_color": { @@ -16952,7 +17852,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 455 + "__id__": 479 }, "_enabled": true, "_materials": [ @@ -16997,17 +17897,17 @@ "_name": "three", "_objFlags": 0, "_parent": { - "__id__": 451 + "__id__": 475 }, "_children": [], "_active": false, "_components": [ { - "__id__": 459 + "__id__": 483 } ], "_prefab": { - "__id__": 460 + "__id__": 484 }, "_opacity": 255, "_color": { @@ -17061,7 +17961,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 458 + "__id__": 482 }, "_enabled": true, "_materials": [ @@ -17106,21 +18006,21 @@ "_name": "nomal", "_objFlags": 0, "_parent": { - "__id__": 451 + "__id__": 475 }, "_children": [ { - "__id__": 462 + "__id__": 486 } ], "_active": false, "_components": [ { - "__id__": 464 + "__id__": 488 } ], "_prefab": { - "__id__": 465 + "__id__": 489 }, "_opacity": 255, "_color": { @@ -17174,13 +18074,13 @@ "_name": "rank", "_objFlags": 0, "_parent": { - "__id__": 461 + "__id__": 485 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 463 + "__id__": 487 }, "_opacity": 255, "_color": { @@ -17245,7 +18145,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 461 + "__id__": 485 }, "_enabled": true, "_materials": [ @@ -17313,6 +18213,9 @@ "UI2": { "__uuid__": "933f7976-6238-4e66-bef6-a7e118893b12" }, + "iconPrefab": { + "__uuid__": "9f535aaa-49fd-42b8-ae6c-4ab4467f503f" + }, "_id": "" }, { @@ -17484,6 +18387,9 @@ "padding_left": 57, "_padding": 0, "padding_right": 0, + "iconPrefab": { + "__uuid__": "9f535aaa-49fd-42b8-ae6c-4ab4467f503f" + }, "UI": { "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" }, diff --git a/assets/career/script/CareerItem.ts b/assets/career/script/CareerItem.ts index b34c2d7..21867cb 100644 --- a/assets/career/script/CareerItem.ts +++ b/assets/career/script/CareerItem.ts @@ -19,6 +19,9 @@ export default class CareerItem extends cc.Component { UI2: cc.SpriteAtlas = null; randerChildren: any; + @property(cc.Prefab) + iconPrefab: cc.Prefab = null; + /**数据改变时调用 */ public dataChanged() { this.randerChildren = []; @@ -90,12 +93,26 @@ export default class CareerItem extends cc.Component { this.data.rankingData[i - 4].useravatar == "10" || this.data.rankingData[i - 4].useravatar == "11" || this.data.rankingData[i - 4].useravatar == "12" || this.data.rankingData[i - 4].useravatar == "13" || this.data.rankingData[i - 4].useravatar == "14" || this.data.rankingData[i - 4].useravatar == "15" || this.data.rankingData[i - 4].useravatar == "16" || this.data.rankingData[i - 4].useravatar == "17" ) { + this.node.children[i].getChildByName("mask").getChildByName("icon").active = false; + this.node.children[i].getChildByName("mask").getChildByName("sp").active = true; let useravatar = this.data.rankingData[i - 4].useravatar; - let useravatarTemp = "icon_" + useravatar; - // console.log("头像名称", useravatarTemp, "用户名字:", username); - this.node.children[i].getChildByName("mask").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.UI.getSpriteFrame(useravatarTemp); + if (this.node.children[i]) { + //this.firstRender.children[i].getChildByName("mask").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.UI.getSpriteFrame(useravatarTemp); + let actionName = this.getActionName(useravatar); + this.node.children[i].getChildByName("mask").getChildByName("sp").scale = 0.85; + this.loadSpineSimple(this.node.children[i].getChildByName("mask").getChildByName("sp"), actionName); + // this.node.children[i].getChildByName("mask").getChildByName("icon").width = 150; + // this.node.children[i].getChildByName("mask").getChildByName("icon").height = 150; + } + // let useravatar = this.data.rankingData[i - 4].useravatar; + // let useravatarTemp = "icon_" + useravatar; + // this.node.children[i].getChildByName("mask").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.UI.getSpriteFrame(useravatarTemp); + } + else { + this.node.children[i].getChildByName("mask").getChildByName("icon").active = true; + this.node.children[i].getChildByName("mask").getChildByName("sp").active = false; + this.setPic(this.data.rankingData[i - 4].useravatar, this.node.children[i].getChildByName("mask").getChildByName("icon")); } - else this.setPic(this.data.rankingData[i - 4].useravatar, this.node.children[i].getChildByName("mask").getChildByName("icon")); } } } @@ -105,6 +122,102 @@ export default class CareerItem extends cc.Component { } } + getActionName(useravatar: string) { + let actionName = "action01"; + switch (useravatar) { + case "0": + actionName = "action03"; + break; + case "1": + actionName = "action01"; + break; + case "2": + actionName = "action09"; + break; + case "3": + actionName = "action07"; + break; + case "4": + actionName = "action04"; + break; + case "5": + actionName = "action04"; + break; + case "6": + actionName = "action05"; + break; + case "7": + actionName = "action06"; + break; + case "8": + actionName = "action02"; + break; + case "9": + actionName = "action11"; + break; + case "10": + actionName = "action06"; + break; + case "11": + actionName = "action15"; + break; + case "12": + actionName = "action13"; + break; + case "13": + actionName = "action16"; + break; + case "14": + actionName = "action06"; + break; + case "15": + actionName = "action14"; + break; + case "16": + actionName = "action18"; + break; + + } + + return actionName; + } + + loadSpineSimple(iconNode: cc.Node, spineName: string) { + // 构建spine资源路径 + const spinePath = `spine/${spineName}/skeleton`; + + // 加载spine资源 + cc.resources.load(spinePath, sp.SkeletonData, (err: Error, skeletonData: sp.SkeletonData) => { + if (err) { + console.error(`加载spine资源失败: ${spinePath}`, err); + return; + } + + // 检查节点是否已经有spine组件 + let spineComponent = iconNode.getComponent(sp.Skeleton); + + if (!spineComponent) { + // 如果没有spine组件,添加一个 + spineComponent = iconNode.addComponent(sp.Skeleton); + } + + // 设置skeleton数据 + spineComponent.skeletonData = skeletonData; + let actionNumber = ""; + if (spineName.startsWith("action")) { + actionNumber = spineName.substring(6); // 提取"action"后面的部分 + + } + spineComponent.setAnimation(0, actionNumber, true); + + // 设置spine组件属性 + spineComponent.premultipliedAlpha = true; + spineComponent.timeScale = 1.0; + + + }); + } + public setPic(url, node) { // this.node.getChildByName("pic").getChildByName("icon").active = false; // this.node.getChildByName("pic").active = false; diff --git a/assets/career/script/CareerList.ts b/assets/career/script/CareerList.ts index a78b27d..298ffef 100644 --- a/assets/career/script/CareerList.ts +++ b/assets/career/script/CareerList.ts @@ -128,6 +128,9 @@ export default class CareerList extends cc.Component { randerChildren: any[]; topData: any; + @property(cc.Prefab) + iconPrefab: cc.Prefab = null; + @property(cc.SpriteAtlas) UI: cc.SpriteAtlas = null; @@ -498,20 +501,124 @@ export default class CareerList extends cc.Component { let useravatarTemp = "icon_" + useravatar; // console.log("222头像名称", useravatarTemp, "333用户名字:", username); if (this.firstRender.children[i]) { - this.firstRender.children[i].getChildByName("mask").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.UI.getSpriteFrame(useravatarTemp); + // this.firstRender.children[i].getChildByName("mask").getChildByName("icon").active = false; + + //this.firstRender.children[i].getChildByName("mask").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.UI.getSpriteFrame(useravatarTemp); + let actionName = this.getActionName(useravatar); + let iconNode = cc.instantiate(this.iconPrefab); + iconNode.parent = this.firstRender.children[i].getChildByName("mask"); + iconNode.setPosition(cc.v2(0, 0)); + iconNode.width = 150; iconNode.height = 150; + this.loadSpineSimple(iconNode, actionName); this.firstRender.children[i].getChildByName("mask").getChildByName("icon").width = 150; this.firstRender.children[i].getChildByName("mask").getChildByName("icon").height = 150; } } - else this.setPic(this.topData[i - 3].useravatar, this.firstRender.children[i].getChildByName("mask").getChildByName("icon")); + else { + this.firstRender.children[i].getChildByName("mask").getChildByName("icon").active = true; + this.setPic(this.topData[i - 3].useravatar, this.firstRender.children[i].getChildByName("mask").getChildByName("icon")); + } } } } } + } + getActionName(useravatar: string) { + let actionName = "action01"; + switch (useravatar) { + case "0": + actionName = "action03"; + break; + case "1": + actionName = "action01"; + break; + case "2": + actionName = "action09"; + break; + case "3": + actionName = "action07"; + break; + case "4": + actionName = "action04"; + break; + case "5": + actionName = "action04"; + break; + case "6": + actionName = "action05"; + break; + case "7": + actionName = "action06"; + break; + case "8": + actionName = "action02"; + break; + case "9": + actionName = "action11"; + break; + case "10": + actionName = "action06"; + break; + case "11": + actionName = "action15"; + break; + case "12": + actionName = "action13"; + break; + case "13": + actionName = "action16"; + break; + case "14": + actionName = "action06"; + break; + case "15": + actionName = "action14"; + break; + case "16": + actionName = "action18"; + break; + } + + return actionName; + } + + loadSpineSimple(iconNode: cc.Node, spineName: string) { + // 构建spine资源路径 + const spinePath = `spine/${spineName}/skeleton`; + + // 加载spine资源 + cc.resources.load(spinePath, sp.SkeletonData, (err: Error, skeletonData: sp.SkeletonData) => { + if (err) { + console.error(`加载spine资源失败: ${spinePath}`, err); + return; + } + + // 检查节点是否已经有spine组件 + let spineComponent = iconNode.getComponent(sp.Skeleton); + + if (!spineComponent) { + // 如果没有spine组件,添加一个 + spineComponent = iconNode.addComponent(sp.Skeleton); + } + + // 设置skeleton数据 + spineComponent.skeletonData = skeletonData; + let actionNumber = ""; + if (spineName.startsWith("action")) { + actionNumber = spineName.substring(6); // 提取"action"后面的部分 + + } + spineComponent.setAnimation(0, actionNumber, true); + + // 设置spine组件属性 + spineComponent.premultipliedAlpha = true; + spineComponent.timeScale = 1.0; + + }); } public setPic(url, node) { diff --git a/assets/prefab/prop/icon.prefab b/assets/prefab/prop/icon.prefab index d408a76..5239d44 100644 --- a/assets/prefab/prop/icon.prefab +++ b/assets/prefab/prop/icon.prefab @@ -36,8 +36,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 170, - "height": 170 + "width": 180, + "height": 180 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -74,7 +74,7 @@ "_id": "" }, { - "__type__": "cc.Sprite", + "__type__": "cc.Mask", "_name": "", "_objFlags": 0, "node": { @@ -86,21 +86,11 @@ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" } ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, "_spriteFrame": null, "_type": 0, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": null, + "_segments": 64, + "_N$alphaThreshold": 0.1, + "_N$inverted": false, "_id": "" }, { diff --git a/assets/resources/spine/action1.meta b/assets/resources/spine/action01.meta similarity index 81% rename from assets/resources/spine/action1.meta rename to assets/resources/spine/action01.meta index 14f4fb6..56a1c14 100644 --- a/assets/resources/spine/action1.meta +++ b/assets/resources/spine/action01.meta @@ -1,6 +1,6 @@ { "ver": "1.1.3", - "uuid": "ebb76f1b-2e0b-42ff-8437-241bb59df3ce", + "uuid": "ac19ca08-99a7-4377-a613-c07dcf12d7c6", "importer": "folder", "isBundle": false, "bundleName": "", diff --git a/assets/resources/spine/action1/skeleton.atlas b/assets/resources/spine/action01/skeleton.atlas similarity index 100% rename from assets/resources/spine/action1/skeleton.atlas rename to assets/resources/spine/action01/skeleton.atlas diff --git a/assets/resources/spine/action1/skeleton.atlas.meta b/assets/resources/spine/action01/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action1/skeleton.atlas.meta rename to assets/resources/spine/action01/skeleton.atlas.meta diff --git a/assets/resources/spine/action1/skeleton.json b/assets/resources/spine/action01/skeleton.json similarity index 100% rename from assets/resources/spine/action1/skeleton.json rename to assets/resources/spine/action01/skeleton.json diff --git a/assets/resources/spine/action1/skeleton.json.meta b/assets/resources/spine/action01/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action1/skeleton.json.meta rename to assets/resources/spine/action01/skeleton.json.meta diff --git a/assets/resources/spine/action1/skeleton.png b/assets/resources/spine/action01/skeleton.png similarity index 100% rename from assets/resources/spine/action1/skeleton.png rename to assets/resources/spine/action01/skeleton.png diff --git a/assets/resources/spine/action1/skeleton.png.meta b/assets/resources/spine/action01/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action1/skeleton.png.meta rename to assets/resources/spine/action01/skeleton.png.meta diff --git a/assets/resources/spine/action2.meta b/assets/resources/spine/action02.meta similarity index 81% rename from assets/resources/spine/action2.meta rename to assets/resources/spine/action02.meta index 73a3d6a..3af6cbd 100644 --- a/assets/resources/spine/action2.meta +++ b/assets/resources/spine/action02.meta @@ -1,6 +1,6 @@ { "ver": "1.1.3", - "uuid": "6f6f41ed-114a-40da-85ba-64b8f750a4e5", + "uuid": "c11043fd-962f-497b-a48b-173fd23a2477", "importer": "folder", "isBundle": false, "bundleName": "", diff --git a/assets/resources/spine/action2/skeleton.atlas b/assets/resources/spine/action02/skeleton.atlas similarity index 100% rename from assets/resources/spine/action2/skeleton.atlas rename to assets/resources/spine/action02/skeleton.atlas diff --git a/assets/resources/spine/action2/skeleton.atlas.meta b/assets/resources/spine/action02/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action2/skeleton.atlas.meta rename to assets/resources/spine/action02/skeleton.atlas.meta diff --git a/assets/resources/spine/action2/skeleton.json b/assets/resources/spine/action02/skeleton.json similarity index 100% rename from assets/resources/spine/action2/skeleton.json rename to assets/resources/spine/action02/skeleton.json diff --git a/assets/resources/spine/action2/skeleton.json.meta b/assets/resources/spine/action02/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action2/skeleton.json.meta rename to assets/resources/spine/action02/skeleton.json.meta diff --git a/assets/resources/spine/action2/skeleton.png b/assets/resources/spine/action02/skeleton.png similarity index 100% rename from assets/resources/spine/action2/skeleton.png rename to assets/resources/spine/action02/skeleton.png diff --git a/assets/resources/spine/action2/skeleton.png.meta b/assets/resources/spine/action02/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action2/skeleton.png.meta rename to assets/resources/spine/action02/skeleton.png.meta diff --git a/assets/resources/spine/action3.meta b/assets/resources/spine/action03.meta similarity index 81% rename from assets/resources/spine/action3.meta rename to assets/resources/spine/action03.meta index 877ea81..76c4e25 100644 --- a/assets/resources/spine/action3.meta +++ b/assets/resources/spine/action03.meta @@ -1,6 +1,6 @@ { "ver": "1.1.3", - "uuid": "b4552068-8abf-422e-99b9-eed547cb63b4", + "uuid": "d0b2a169-e40d-4c07-a5c9-cb31a8f31ecd", "importer": "folder", "isBundle": false, "bundleName": "", diff --git a/assets/resources/spine/action3/skeleton.atlas b/assets/resources/spine/action03/skeleton.atlas similarity index 100% rename from assets/resources/spine/action3/skeleton.atlas rename to assets/resources/spine/action03/skeleton.atlas diff --git a/assets/resources/spine/action3/skeleton.atlas.meta b/assets/resources/spine/action03/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action3/skeleton.atlas.meta rename to assets/resources/spine/action03/skeleton.atlas.meta diff --git a/assets/resources/spine/action3/skeleton.json b/assets/resources/spine/action03/skeleton.json similarity index 100% rename from assets/resources/spine/action3/skeleton.json rename to assets/resources/spine/action03/skeleton.json diff --git a/assets/resources/spine/action3/skeleton.json.meta b/assets/resources/spine/action03/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action3/skeleton.json.meta rename to assets/resources/spine/action03/skeleton.json.meta diff --git a/assets/resources/spine/action3/skeleton.png b/assets/resources/spine/action03/skeleton.png similarity index 100% rename from assets/resources/spine/action3/skeleton.png rename to assets/resources/spine/action03/skeleton.png diff --git a/assets/resources/spine/action3/skeleton.png.meta b/assets/resources/spine/action03/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action3/skeleton.png.meta rename to assets/resources/spine/action03/skeleton.png.meta diff --git a/assets/resources/spine/action4.meta b/assets/resources/spine/action04.meta similarity index 81% rename from assets/resources/spine/action4.meta rename to assets/resources/spine/action04.meta index 2ad305e..5dbd495 100644 --- a/assets/resources/spine/action4.meta +++ b/assets/resources/spine/action04.meta @@ -1,6 +1,6 @@ { "ver": "1.1.3", - "uuid": "b8a9b08c-95ef-4812-b5d5-c0f720c35c8c", + "uuid": "2d1a6407-aec5-4403-8cf0-0cf97feb69d4", "importer": "folder", "isBundle": false, "bundleName": "", diff --git a/assets/resources/spine/action4/skeleton.atlas b/assets/resources/spine/action04/skeleton.atlas similarity index 100% rename from assets/resources/spine/action4/skeleton.atlas rename to assets/resources/spine/action04/skeleton.atlas diff --git a/assets/resources/spine/action4/skeleton.atlas.meta b/assets/resources/spine/action04/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action4/skeleton.atlas.meta rename to assets/resources/spine/action04/skeleton.atlas.meta diff --git a/assets/resources/spine/action4/skeleton.json b/assets/resources/spine/action04/skeleton.json similarity index 100% rename from assets/resources/spine/action4/skeleton.json rename to assets/resources/spine/action04/skeleton.json diff --git a/assets/resources/spine/action4/skeleton.json.meta b/assets/resources/spine/action04/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action4/skeleton.json.meta rename to assets/resources/spine/action04/skeleton.json.meta diff --git a/assets/resources/spine/action4/skeleton.png b/assets/resources/spine/action04/skeleton.png similarity index 100% rename from assets/resources/spine/action4/skeleton.png rename to assets/resources/spine/action04/skeleton.png diff --git a/assets/resources/spine/action4/skeleton.png.meta b/assets/resources/spine/action04/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action4/skeleton.png.meta rename to assets/resources/spine/action04/skeleton.png.meta diff --git a/assets/resources/spine/action05.meta b/assets/resources/spine/action05.meta new file mode 100644 index 0000000..1df7de5 --- /dev/null +++ b/assets/resources/spine/action05.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "393f8237-353a-4678-9efa-bd8dbe0e0339", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action5/skeleton.atlas b/assets/resources/spine/action05/skeleton.atlas similarity index 100% rename from assets/resources/spine/action5/skeleton.atlas rename to assets/resources/spine/action05/skeleton.atlas diff --git a/assets/resources/spine/action5/skeleton.atlas.meta b/assets/resources/spine/action05/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action5/skeleton.atlas.meta rename to assets/resources/spine/action05/skeleton.atlas.meta diff --git a/assets/resources/spine/action5/skeleton.json b/assets/resources/spine/action05/skeleton.json similarity index 100% rename from assets/resources/spine/action5/skeleton.json rename to assets/resources/spine/action05/skeleton.json diff --git a/assets/resources/spine/action5/skeleton.json.meta b/assets/resources/spine/action05/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action5/skeleton.json.meta rename to assets/resources/spine/action05/skeleton.json.meta diff --git a/assets/resources/spine/action5/skeleton.png b/assets/resources/spine/action05/skeleton.png similarity index 100% rename from assets/resources/spine/action5/skeleton.png rename to assets/resources/spine/action05/skeleton.png diff --git a/assets/resources/spine/action5/skeleton.png.meta b/assets/resources/spine/action05/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action5/skeleton.png.meta rename to assets/resources/spine/action05/skeleton.png.meta diff --git a/assets/resources/spine/action06.meta b/assets/resources/spine/action06.meta new file mode 100644 index 0000000..f0fe214 --- /dev/null +++ b/assets/resources/spine/action06.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "d18d9343-e152-4073-b3ad-388c27344f84", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action6/skeleton.atlas b/assets/resources/spine/action06/skeleton.atlas similarity index 100% rename from assets/resources/spine/action6/skeleton.atlas rename to assets/resources/spine/action06/skeleton.atlas diff --git a/assets/resources/spine/action6/skeleton.atlas.meta b/assets/resources/spine/action06/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action6/skeleton.atlas.meta rename to assets/resources/spine/action06/skeleton.atlas.meta diff --git a/assets/resources/spine/action6/skeleton.json b/assets/resources/spine/action06/skeleton.json similarity index 100% rename from assets/resources/spine/action6/skeleton.json rename to assets/resources/spine/action06/skeleton.json diff --git a/assets/resources/spine/action6/skeleton.json.meta b/assets/resources/spine/action06/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action6/skeleton.json.meta rename to assets/resources/spine/action06/skeleton.json.meta diff --git a/assets/resources/spine/action6/skeleton.png b/assets/resources/spine/action06/skeleton.png similarity index 100% rename from assets/resources/spine/action6/skeleton.png rename to assets/resources/spine/action06/skeleton.png diff --git a/assets/resources/spine/action6/skeleton.png.meta b/assets/resources/spine/action06/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action6/skeleton.png.meta rename to assets/resources/spine/action06/skeleton.png.meta diff --git a/assets/resources/spine/action07.meta b/assets/resources/spine/action07.meta new file mode 100644 index 0000000..4356efe --- /dev/null +++ b/assets/resources/spine/action07.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "a19d3ebd-8d9c-41fe-aa83-af8e701ada24", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action7/skeleton.atlas b/assets/resources/spine/action07/skeleton.atlas similarity index 100% rename from assets/resources/spine/action7/skeleton.atlas rename to assets/resources/spine/action07/skeleton.atlas diff --git a/assets/resources/spine/action7/skeleton.atlas.meta b/assets/resources/spine/action07/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action7/skeleton.atlas.meta rename to assets/resources/spine/action07/skeleton.atlas.meta diff --git a/assets/resources/spine/action7/skeleton.json b/assets/resources/spine/action07/skeleton.json similarity index 100% rename from assets/resources/spine/action7/skeleton.json rename to assets/resources/spine/action07/skeleton.json diff --git a/assets/resources/spine/action7/skeleton.json.meta b/assets/resources/spine/action07/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action7/skeleton.json.meta rename to assets/resources/spine/action07/skeleton.json.meta diff --git a/assets/resources/spine/action7/skeleton.png b/assets/resources/spine/action07/skeleton.png similarity index 100% rename from assets/resources/spine/action7/skeleton.png rename to assets/resources/spine/action07/skeleton.png diff --git a/assets/resources/spine/action7/skeleton.png.meta b/assets/resources/spine/action07/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action7/skeleton.png.meta rename to assets/resources/spine/action07/skeleton.png.meta diff --git a/assets/resources/spine/action09.meta b/assets/resources/spine/action09.meta new file mode 100644 index 0000000..95ccf8f --- /dev/null +++ b/assets/resources/spine/action09.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "a48de90c-8b68-49e4-923b-d8248421f156", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.atlas b/assets/resources/spine/action09/skeleton.atlas similarity index 100% rename from assets/resources/spine/action9/skeleton.atlas rename to assets/resources/spine/action09/skeleton.atlas diff --git a/assets/resources/spine/action9/skeleton.atlas.meta b/assets/resources/spine/action09/skeleton.atlas.meta similarity index 100% rename from assets/resources/spine/action9/skeleton.atlas.meta rename to assets/resources/spine/action09/skeleton.atlas.meta diff --git a/assets/resources/spine/action09/skeleton.json b/assets/resources/spine/action09/skeleton.json new file mode 100644 index 0000000..99fe04f --- /dev/null +++ b/assets/resources/spine/action09/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"uTxQEn6GIMpLitxeBIAQuItjefM","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./09/","audio":"D:/默认头像拆件/01拆件"},"bones":[{"name":"root"}],"slots":[{"name":"80001","bone":"root","attachment":"80007"}],"skins":[{"name":"default","attachments":{"80001":{"80001":{"width":180,"height":180},"80002":{"width":180,"height":180},"80003":{"width":180,"height":180},"80004":{"width":180,"height":180},"80005":{"width":180,"height":180},"80006":{"width":180,"height":180},"80007":{"width":180,"height":180}}}}],"animations":{"09":{"slots":{"80001":{"attachment":[{"name":"80001"},{"time":0.2,"name":"80002"},{"time":0.3,"name":"80003"},{"time":0.4,"name":"80004"},{"time":0.5,"name":"80005"},{"time":0.6,"name":"80006"},{"time":0.7,"name":"80007"},{"time":0.8,"name":"80001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.json.meta b/assets/resources/spine/action09/skeleton.json.meta similarity index 100% rename from assets/resources/spine/action9/skeleton.json.meta rename to assets/resources/spine/action09/skeleton.json.meta diff --git a/assets/resources/spine/action09/skeleton.png b/assets/resources/spine/action09/skeleton.png new file mode 100644 index 0000000..a7f0cb6 Binary files /dev/null and b/assets/resources/spine/action09/skeleton.png differ diff --git a/assets/resources/spine/action9/skeleton.png.meta b/assets/resources/spine/action09/skeleton.png.meta similarity index 100% rename from assets/resources/spine/action9/skeleton.png.meta rename to assets/resources/spine/action09/skeleton.png.meta diff --git a/assets/resources/spine/action5.meta b/assets/resources/spine/action5.meta deleted file mode 100644 index 2163fab..0000000 --- a/assets/resources/spine/action5.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.3", - "uuid": "19983066-85a2-48cf-9040-30024602ccdf", - "importer": "folder", - "isBundle": false, - "bundleName": "", - "priority": 1, - "compressionType": {}, - "optimizeHotUpdate": {}, - "inlineSpriteFrames": {}, - "isRemoteBundle": {}, - "subMetas": {} -} \ No newline at end of file diff --git a/assets/resources/spine/action6.meta b/assets/resources/spine/action6.meta deleted file mode 100644 index ef19e6d..0000000 --- a/assets/resources/spine/action6.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.3", - "uuid": "c056ef3d-6fb0-489c-a92d-6beaf5fcb8b1", - "importer": "folder", - "isBundle": false, - "bundleName": "", - "priority": 1, - "compressionType": {}, - "optimizeHotUpdate": {}, - "inlineSpriteFrames": {}, - "isRemoteBundle": {}, - "subMetas": {} -} \ No newline at end of file diff --git a/assets/resources/spine/action7.meta b/assets/resources/spine/action7.meta deleted file mode 100644 index 059b2cd..0000000 --- a/assets/resources/spine/action7.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.3", - "uuid": "f44ddb0a-76b4-40c7-ae27-18d5140fa288", - "importer": "folder", - "isBundle": false, - "bundleName": "", - "priority": 1, - "compressionType": {}, - "optimizeHotUpdate": {}, - "inlineSpriteFrames": {}, - "isRemoteBundle": {}, - "subMetas": {} -} \ No newline at end of file diff --git a/assets/resources/spine/action9.meta b/assets/resources/spine/action9.meta deleted file mode 100644 index 9fe9069..0000000 --- a/assets/resources/spine/action9.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.3", - "uuid": "a5ac1945-1cbb-4fcb-adb5-cb03a46aeec7", - "importer": "folder", - "isBundle": false, - "bundleName": "", - "priority": 1, - "compressionType": {}, - "optimizeHotUpdate": {}, - "inlineSpriteFrames": {}, - "isRemoteBundle": {}, - "subMetas": {} -} \ No newline at end of file diff --git a/assets/resources/spine/action9/9.spine b/assets/resources/spine/action9/9.spine deleted file mode 100644 index bcc4916..0000000 Binary files a/assets/resources/spine/action9/9.spine and /dev/null differ diff --git a/assets/resources/spine/action9/9.spine.meta b/assets/resources/spine/action9/9.spine.meta deleted file mode 100644 index 12f34ef..0000000 --- a/assets/resources/spine/action9/9.spine.meta +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ver": "1.0.3", - "uuid": "825913ed-dee8-487b-acdc-43cb9cee4135", - "importer": "asset", - "subMetas": {} -} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.json b/assets/resources/spine/action9/skeleton.json deleted file mode 100644 index 43f6888..0000000 --- a/assets/resources/spine/action9/skeleton.json +++ /dev/null @@ -1 +0,0 @@ -{"skeleton":{"hash":"sYsXXzfp6n/R2ru0AgFZwhXvKRA","spine":"3.8.75","x":-90,"y":-90,"width":180,"height":180,"images":"./09/","audio":""},"bones":[{"name":"root"}],"slots":[{"name":"80001","bone":"root","attachment":"80007"},{"name":"80002","bone":"root"},{"name":"80003","bone":"root"},{"name":"80004","bone":"root"},{"name":"80005","bone":"root"},{"name":"80006","bone":"root"},{"name":"80007","bone":"root"}],"skins":[{"name":"default","attachments":{"80001":{"80001":{"width":180,"height":180},"80002":{"width":180,"height":180},"80003":{"width":180,"height":180},"80004":{"width":180,"height":180},"80005":{"width":180,"height":180},"80006":{"width":180,"height":180},"80007":{"width":180,"height":180}}}}],"animations":{"9":{"slots":{"80001":{"attachment":[{"name":"80001"},{"time":0.2,"name":"80002"},{"time":0.3,"name":"80003"},{"time":0.4,"name":"80004"},{"time":0.5,"name":"80005"},{"time":0.6,"name":"80006"},{"time":0.7,"name":"80007"},{"time":0.8,"name":"80001"}]}}},"animation":{}}} \ No newline at end of file diff --git a/assets/resources/spine/action9/skeleton.png b/assets/resources/spine/action9/skeleton.png deleted file mode 100644 index 20c2390..0000000 Binary files a/assets/resources/spine/action9/skeleton.png and /dev/null differ