资源上传

This commit is contained in:
YZ\249929363 2025-06-30 14:29:29 +08:00
parent 4ca3daaa48
commit b9b0f120be
1189 changed files with 7001 additions and 26477 deletions

View File

@ -395,15 +395,18 @@ export default class GameManager extends cc.Component {
cc.fx.StorageMessage.setStorage("prop",propInfoNew);
}
else{
cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze;
cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer;
cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand;
}
// cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze;
// cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer;
// cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand;
cc.fx.GameConfig.GM_INFO.freezeAmount = propInfo.freezeAmount;
cc.fx.GameConfig.GM_INFO.hammerAmount = propInfo.hammerAmount;
cc.fx.GameConfig.GM_INFO.magicAmount = propInfo.magicAmount;
}
// cc.fx.GameConfig.GM_INFO.freezeAmount = propInfo.freezeAmount;
// cc.fx.GameConfig.GM_INFO.hammerAmount = propInfo.hammerAmount;
// cc.fx.GameConfig.GM_INFO.magicAmount = propInfo.magicAmount;
cc.fx.GameTool.setUserProp(0,0,(data)=>{
});
}

View File

@ -137,6 +137,8 @@ export default class MapConroler extends cc.Component {
this.homeCanTouch = true;
this.againCanTouch = true;
this.new_mode = 0;
this.count_Time = 0;
this.add_Time = 0;
this.iceLabel.string = cc.fx.GameConfig.GM_INFO.freezeAmount.toString();
this.hammerLabel.string = cc.fx.GameConfig.GM_INFO.hammerAmount.toString();
@ -185,8 +187,7 @@ export default class MapConroler extends cc.Component {
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
this.count_Time = 0;
this.add_Time = 0;
NumberToImage.getTimeMargin(this.timeNumber,50,"time_",this.timeLabel)
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
// this.timeLabel.string = timeTemp.toString();
@ -214,7 +215,8 @@ export default class MapConroler extends cc.Component {
this.mapBlockArray = [];
this.freezeArray = [];
this.loackArray = [];
this.count_Time = 0;
this.add_Time = 0;
let startX = this.mapWidth%2==0?-(this.mapWidth-1)*60:-(this.mapWidth-1)*60;
let startY = this.mapHeight%2==0?-(this.mapHeight-1)*60:-(this.mapHeight-1)*60;
@ -1279,11 +1281,7 @@ wallInit() {
this.stopTimeCutDown();
// console.log("成功消除一个");
cc.fx.GameTool.changeCoin(40);
let timeData = {
count_Time:this.count_Time,
add_Time:this.add_Time
}
cc.fx.GameTool.addLevel(timeData);
cc.fx.GameTool.addLevel(this.count_Time,this.add_Time);
this.check_NewMode();
setTimeout(() => {
@ -1310,7 +1308,7 @@ wallInit() {
cc.fx.AudioManager._instance.playEffect("anniu_Big",null);
if(cc.fx.GameConfig.GM_INFO.level > 156){
cc.fx.GameConfig.GM_INFO.level = 156;
MapConroler._instance = null;
// MapConroler._instance = null;
if(this.new_mode == 3){
this.node.parent.parent.getChildByName("Win").active = false;
@ -1342,7 +1340,7 @@ wallInit() {
else{
// console.log("下一关");
MapConroler._instance = null;
// MapConroler._instance = null;
if(this.new_mode == 3){
this.node.parent.parent.getChildByName("Win").active = false;
@ -1378,7 +1376,7 @@ wallInit() {
this.againCanTouch = false;
MapConroler._instance = null;
// MapConroler._instance = null;
cc.fx.AudioManager._instance.playEffect("zhuan1",null);
this.node.parent.parent.parent.getChildByName("zhuanchang").active = true;
this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1,"up",false);
@ -1456,7 +1454,7 @@ wallInit() {
return;
}
// MiniGameSdk.API.showToast("体力值减少");
MapConroler._instance = null;
// MapConroler._instance = null;
cc.fx.GameConfig.LEVEL_INFO_init(false,0);
if(this.new_mode == 3){
this.node.parent.parent.getChildByName("Win").active = false;

View File

@ -149,13 +149,17 @@ export default class SceneManager extends cc.Component {
MiniGameSdk.API.showToast("体力值减少");
cc.fx.GameTool.setUserHealth(-1,(data)=>{
})
if(MapConroler._instance.count_Time){
let count_Time = MapConroler._instance.count_Time;
let add_Time = MapConroler._instance.add_Time;
let data = {
time:MapConroler._instance.count_Time,
add_Time:MapConroler._instance.add_Time,
time:count_Time,
add_Time:add_Time,
result:"give_up"
}
cc.fx.GameTool.shushu_Track("finish_stage",data);
}
}
this.node.getChildByName("Pause").getChildByName("btn").getComponent("btnControl").setTouch(false);
cc.fx.AudioManager._instance.playEffect("zhuan1",null);
this.node.getChildByName("zhuanchang").active = true;

View File

@ -331,7 +331,7 @@ var GameTool = {
//增加关卡数
addLevel(time){
addLevel(time1,time2){
cc.fx.GameConfig.GM_INFO.level += 1;
if(cc.fx.GameConfig.GM_INFO.level > 156){
cc.fx.GameConfig.GM_INFO.level = 156;
@ -343,13 +343,16 @@ var GameTool = {
}
// console.log("55555存储关卡数据:",levelInfo);
cc.fx.StorageMessage.setStorage("level",levelInfo);
if(time1 && time2){
let data = {
time:time.count_Time,
add_Time:time.add_Time,
time:time1,
add_Time:time2,
result:"success"
}
cc.fx.GameTool.shushu_Track("finish_stage",data);
MiniGameSdk.API.shushu_SetSuperProperties();
}
cc.fx.GameTool.setUserLevel((data)=>{
// console.log("存储结果:",data);
// console.log("上传",data);

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "afcb829a-5254-4c11-9105-dfd8221fb5a9",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "52d6fee1-c5ed-4712-8dbf-cbea31617bd1",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,34 +0,0 @@
jiekou_heng.png
size: 148,148
format: RGBA8888
filter: Linear,Linear
repeat: none
连接块/kou1
rotate: false
xy: 2, 121
size: 52, 24
orig: 52, 24
offset: 0, 0
index: -1
连接块/kou2
rotate: false
xy: 56, 121
size: 52, 24
orig: 52, 24
offset: 0, 0
index: -1
连接块/luosi
rotate: true
xy: 110, 122
size: 23, 21
orig: 23, 21
offset: 0, 0
index: -1
连接块/luosi2
rotate: false
xy: 133, 133
size: 12, 12
orig: 12, 12
offset: 0, 0
index: -1

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "b6ed74f8-9e62-419d-9ea7-59972f6e1a52",
"importer": "asset",
"subMetas": {}
}

View File

@ -1,264 +0,0 @@
{
"skeleton": {
"hash": "SglAgIli7zPuz0syxY5xlYrKWAw",
"spine": "3.8.99",
"x": -34.31,
"y": -28.63,
"width": 52,
"height": 60.36,
"images": "",
"audio": ""
},
"bones": [
{ "name": "root" },
{ "name": "bone3", "parent": "root", "x": -11.52, "y": 52.57 },
{ "name": "kou1", "parent": "bone3", "x": 17.41, "y": -32.85 },
{ "name": "bone", "parent": "bone3", "x": -10.72, "y": -32.17 },
{ "name": "luosi", "parent": "bone", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "bone2", "parent": "bone3", "x": 17.3, "y": -32.17 },
{ "name": "luosi2", "parent": "bone2", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "bone4", "parent": "root", "x": -11.52, "y": 16.22 },
{ "name": "kou2", "parent": "bone4", "x": 17.41, "y": -32.85 },
{ "name": "bone5", "parent": "bone4", "x": -10.72, "y": -32.17 },
{ "name": "luosi3", "parent": "bone5", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "bone6", "parent": "bone4", "x": 17.3, "y": -32.17 },
{ "name": "luosi4", "parent": "bone6", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }
],
"slots": [
{ "name": "连接块/连接块", "bone": "root" },
{ "name": "连接块/kou1", "bone": "kou1", "attachment": "连接块/kou2" },
{ "name": "连接块/kou2", "bone": "kou2", "attachment": "连接块/kou2" },
{ "name": "连接块/luosi", "bone": "luosi", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi6", "bone": "luosi3", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi4", "bone": "luosi2", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi8", "bone": "luosi4", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi2", "bone": "bone", "attachment": "连接块/luosi2" },
{ "name": "连接块/luosi5", "bone": "bone5", "attachment": "连接块/luosi2" },
{ "name": "连接块/luosi3", "bone": "bone2", "attachment": "连接块/luosi2" },
{ "name": "连接块/luosi7", "bone": "bone6", "attachment": "连接块/luosi2" }
],
"skins": [
{
"name": "default",
"attachments": {
"连接块/kou1": {
"连接块/kou1": { "x": 13.89, "width": 52, "height": 24 },
"连接块/kou2": { "x": -14.21, "width": 52, "height": 24 }
},
"连接块/kou2": {
"连接块/kou1": { "x": 13.89, "width": 52, "height": 24 },
"连接块/kou2": { "x": -14.21, "width": 52, "height": 24 }
},
"连接块/luosi": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
},
"连接块/luosi2": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi3": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi4": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
},
"连接块/luosi5": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi6": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
},
"连接块/luosi7": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi8": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
}
}
}
],
"animations": {
"animation": {
"slots": {
"连接块/kou1": {
"color": [
{ "time": 0.3333, "color": "ffffffff" },
{ "time": 0.6, "color": "ffffff00" }
]
},
"连接块/kou2": {
"color": [
{ "time": 0.6667, "color": "ffffffff" },
{ "time": 0.9333, "color": "ffffff00" }
]
},
"连接块/luosi": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffff00" },
{ "time": 0.3667, "color": "ffffffff" },
{ "time": 0.6667, "color": "ffffff00" }
]
},
"连接块/luosi2": {
"color": [
{ "time": 0.3333, "color": "ffffffff" },
{ "time": 0.3667, "color": "ffffff00" }
]
},
"连接块/luosi3": {
"color": [
{ "time": 0.4667, "color": "ffffffff" },
{ "time": 0.5, "color": "ffffff00" }
]
},
"连接块/luosi4": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.4667, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffffff" },
{ "time": 0.8, "color": "ffffff00" }
]
},
"连接块/luosi5": {
"color": [
{ "time": 0.5, "color": "ffffffff" },
{ "time": 0.5333, "color": "ffffff00" }
]
},
"连接块/luosi6": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffff00" },
{ "time": 0.3667, "color": "ffffffff" },
{ "time": 0.6667, "color": "ffffff00" }
]
},
"连接块/luosi7": {
"color": [
{ "time": 0.6333, "color": "ffffffff" },
{ "time": 0.6667, "color": "ffffff00" }
]
},
"连接块/luosi8": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.4667, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffffff" },
{ "time": 0.8, "color": "ffffff00" }
]
}
},
"bones": {
"kou1": {
"rotate": [
{ "time": 0.3333 },
{ "time": 0.4667, "angle": 35.85 },
{ "time": 0.6, "angle": -136.48 }
],
"translate": [
{ "time": 0.3333 },
{ "time": 0.6, "x": 160.21, "y": -504.28 }
]
},
"luosi": {
"rotate": [
{ "time": 0.3667 },
{ "time": 0.6667, "angle": -120.91 }
]
},
"bone": {
"rotate": [
{},
{ "time": 0.1667, "angle": -177 },
{ "time": 0.3333, "angle": 81.64 }
],
"translate": [
{ "time": 0.3333 },
{ "time": 0.6667, "x": -231.71, "y": 365.51 }
],
"scale": [
{},
{ "time": 0.3333, "x": 1.1, "y": 1.1 },
{ "time": 0.6667, "x": 3, "y": 3 }
]
},
"bone2": {
"rotate": [
{ "time": 0.1333 },
{ "time": 0.3, "angle": -177 },
{ "time": 0.4667, "angle": 81.64 }
],
"translate": [
{ "time": 0.4667 },
{ "time": 0.8, "x": 258.57, "y": 206.19 }
],
"scale": [
{ "time": 0.1333 },
{ "time": 0.4667, "x": 1.1, "y": 1.1 },
{ "time": 0.8, "x": 3, "y": 3 }
]
},
"luosi2": {
"rotate": [
{ "time": 0.5 },
{ "time": 0.8, "angle": -120.91 }
]
},
"kou2": {
"rotate": [
{ "time": 0.6667 },
{ "time": 0.9333, "angle": -136.48 }
],
"translate": [
{ "time": 0.6667 },
{ "time": 0.9333, "x": -410.73, "y": -378.57 }
]
},
"bone5": {
"rotate": [
{ "time": 0.1667 },
{ "time": 0.3333, "angle": -177 },
{ "time": 0.5, "angle": 81.64 }
],
"translate": [
{ "time": 0.5 },
{ "time": 0.8333, "x": -351.46, "y": -250.38 }
],
"scale": [
{ "time": 0.1667 },
{ "time": 0.5, "x": 1.1, "y": 1.1 },
{ "time": 0.8333, "x": 3, "y": 3 }
]
},
"luosi3": {
"rotate": [
{ "time": 0.3667 },
{ "time": 0.6667, "angle": -120.91 }
]
},
"bone6": {
"rotate": [
{ "time": 0.3 },
{ "time": 0.4667, "angle": -177 },
{ "time": 0.6333, "angle": 81.64 }
],
"translate": [
{ "time": 0.6333 },
{ "time": 0.9667, "x": 173.03, "y": -292.38 }
],
"scale": [
{ "time": 0.3 },
{ "time": 0.6333, "x": 1.1, "y": 1.1 },
{ "time": 0.9667, "x": 3, "y": 3 }
]
},
"luosi4": {
"rotate": [
{ "time": 0.5 },
{ "time": 0.8, "angle": -120.91 }
]
}
}
}
}
}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "ca1fbdcb-5180-4815-8751-4b66146e74de",
"importer": "spine",
"textures": [
"b422f3cf-81f1-4bda-9b15-c5ef7a9687b8"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "b422f3cf-81f1-4bda-9b15-c5ef7a9687b8",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 148,
"height": 148,
"platformSettings": {},
"subMetas": {
"jiekou_heng": {
"ver": "1.0.6",
"uuid": "6f9a9443-aa0d-4e1b-8cd1-03cba11a2aad",
"importer": "sprite-frame",
"rawTextureUuid": "b422f3cf-81f1-4bda-9b15-c5ef7a9687b8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -59,
"trimX": 2,
"trimY": 121,
"width": 143,
"height": 24,
"rawWidth": 148,
"rawHeight": 148,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "eec9349a-c7f0-4791-9e85-caba15e44e97",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,27 +0,0 @@
skeleton.png
size: 96,96
format: RGBA8888
filter: Linear,Linear
repeat: none
连接块/kou2shu
rotate: false
xy: 2, 39
size: 24, 52
orig: 24, 52
offset: 0, 0
index: -1
连接块/luosi
rotate: false
xy: 2, 16
size: 23, 21
orig: 23, 21
offset: 0, 0
index: -1
连接块/luosi2
rotate: false
xy: 2, 2
size: 12, 12
orig: 12, 12
offset: 0, 0
index: -1

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "319e830d-24b7-499e-b9ab-e6484934d981",
"importer": "asset",
"subMetas": {}
}

View File

@ -1,262 +0,0 @@
{
"skeleton": {
"hash": "8JO/UTer3ajOZPnOtjA7VMfz2+I",
"spine": "3.8.99",
"x": -476.91,
"y": -152.86,
"width": 795,
"height": 728,
"images": "",
"audio": "D:/work/block/做完的/解扣"
},
"bones": [
{ "name": "root", "x": 8.64, "y": -17.49 },
{ "name": "bone3", "parent": "root", "x": -11.52, "y": 52.57 },
{ "name": "kou1", "parent": "bone3", "x": 17.41, "y": -32.85 },
{ "name": "bone", "parent": "bone3", "x": 16.62, "y": -45.84 },
{ "name": "luosi", "parent": "bone", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "bone2", "parent": "bone3", "x": 16.9, "y": -19.1 },
{ "name": "luosi2", "parent": "bone2", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "bone4", "parent": "root", "x": -40.06, "y": 52.8 },
{ "name": "kou2", "parent": "bone4", "x": 17.41, "y": -32.85 },
{ "name": "bone5", "parent": "bone4", "x": 16.42, "y": -45.84 },
{ "name": "luosi3", "parent": "bone5", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "bone6", "parent": "bone4", "x": 16.5, "y": -18.9 },
{ "name": "luosi4", "parent": "bone6", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }
],
"slots": [
{ "name": "连接块/连接块", "bone": "root" },
{ "name": "连接块/kou1", "bone": "kou1", "attachment": "连接块/kou2shu" },
{ "name": "连接块/kou2", "bone": "kou2", "attachment": "连接块/kou2shu" },
{ "name": "连接块/luosi", "bone": "luosi", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi6", "bone": "luosi3", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi4", "bone": "luosi2", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi8", "bone": "luosi4", "attachment": "连接块/luosi" },
{ "name": "连接块/luosi2", "bone": "bone", "attachment": "连接块/luosi2" },
{ "name": "连接块/luosi5", "bone": "bone5", "attachment": "连接块/luosi2" },
{ "name": "连接块/luosi3", "bone": "bone2", "attachment": "连接块/luosi2" },
{ "name": "连接块/luosi7", "bone": "bone6", "attachment": "连接块/luosi2" }
],
"skins": [
{
"name": "default",
"attachments": {
"连接块/kou1": {
"连接块/kou2shu": { "width": 24, "height": 52 }
},
"连接块/kou2": {
"连接块/kou2shu": { "width": 24, "height": 52 }
},
"连接块/luosi": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
},
"连接块/luosi2": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi3": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi4": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
},
"连接块/luosi5": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi6": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
},
"连接块/luosi7": {
"连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 }
},
"连接块/luosi8": {
"连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 }
}
}
}
],
"animations": {
"animation": {
"slots": {
"连接块/kou1": {
"color": [
{ "time": 0.3333, "color": "ffffffff" },
{ "time": 0.6, "color": "ffffff00" }
]
},
"连接块/kou2": {
"color": [
{ "time": 0.6667, "color": "ffffffff" },
{ "time": 0.9333, "color": "ffffff00" }
]
},
"连接块/luosi": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffff00" },
{ "time": 0.3667, "color": "ffffffff" },
{ "time": 0.6667, "color": "ffffff00" }
]
},
"连接块/luosi2": {
"color": [
{ "time": 0.3333, "color": "ffffffff" },
{ "time": 0.3667, "color": "ffffff00" }
]
},
"连接块/luosi3": {
"color": [
{ "time": 0.4667, "color": "ffffffff" },
{ "time": 0.5, "color": "ffffff00" }
]
},
"连接块/luosi4": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.4667, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffffff" },
{ "time": 0.8, "color": "ffffff00" }
]
},
"连接块/luosi5": {
"color": [
{ "time": 0.5, "color": "ffffffff" },
{ "time": 0.5333, "color": "ffffff00" }
]
},
"连接块/luosi6": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffff00" },
{ "time": 0.3667, "color": "ffffffff" },
{ "time": 0.6667, "color": "ffffff00" }
]
},
"连接块/luosi7": {
"color": [
{ "time": 0.6333, "color": "ffffffff" },
{ "time": 0.6667, "color": "ffffff00" }
]
},
"连接块/luosi8": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.4667, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffffff" },
{ "time": 0.8, "color": "ffffff00" }
]
}
},
"bones": {
"kou1": {
"rotate": [
{ "time": 0.3333 },
{ "time": 0.4667, "angle": 35.85 },
{ "time": 0.6, "angle": -136.48 }
],
"translate": [
{ "time": 0.3333 },
{ "time": 0.6, "x": 160.21, "y": -504.28 }
]
},
"luosi": {
"rotate": [
{ "time": 0.3667 },
{ "time": 0.6667, "angle": -120.91 }
]
},
"bone": {
"rotate": [
{},
{ "time": 0.1667, "angle": -177 },
{ "time": 0.3333, "angle": 81.64 }
],
"translate": [
{ "time": 0.3333 },
{ "time": 0.6667, "x": -231.71, "y": 365.51 }
],
"scale": [
{},
{ "time": 0.3333, "x": 1.1, "y": 1.1 },
{ "time": 0.6667, "x": 3, "y": 3 }
]
},
"bone2": {
"rotate": [
{ "time": 0.1333 },
{ "time": 0.3, "angle": -177 },
{ "time": 0.4667, "angle": 81.64 }
],
"translate": [
{ "time": 0.4667 },
{ "time": 0.8, "x": 258.57, "y": 206.19 }
],
"scale": [
{ "time": 0.1333 },
{ "time": 0.4667, "x": 1.1, "y": 1.1 },
{ "time": 0.8, "x": 3, "y": 3 }
]
},
"luosi2": {
"rotate": [
{ "time": 0.5 },
{ "time": 0.8, "angle": -120.91 }
]
},
"kou2": {
"rotate": [
{ "time": 0.6667 },
{ "time": 0.9333, "angle": -112.36 }
],
"translate": [
{ "time": 0.6667 },
{ "time": 0.9333, "x": -410.73, "y": -378.57 }
]
},
"bone5": {
"rotate": [
{ "time": 0.1667 },
{ "time": 0.3333, "angle": -177 },
{ "time": 0.5, "angle": 81.64 }
],
"translate": [
{ "time": 0.5 },
{ "time": 0.8333, "x": -351.46, "y": -250.38 }
],
"scale": [
{ "time": 0.1667 },
{ "time": 0.5, "x": 1.1, "y": 1.1 },
{ "time": 0.8333, "x": 3, "y": 3 }
]
},
"luosi3": {
"rotate": [
{ "time": 0.3667 },
{ "time": 0.6667, "angle": -120.91 }
]
},
"bone6": {
"rotate": [
{ "time": 0.3 },
{ "time": 0.4667, "angle": -177 },
{ "time": 0.6333, "angle": 81.64 }
],
"translate": [
{ "time": 0.6333 },
{ "time": 0.9667, "x": 173.03, "y": -292.38 }
],
"scale": [
{ "time": 0.3 },
{ "time": 0.6333, "x": 1.1, "y": 1.1 },
{ "time": 0.9667, "x": 3, "y": 3 }
]
},
"luosi4": {
"rotate": [
{ "time": 0.5 },
{ "time": 0.8, "angle": -120.91 }
]
}
}
}
}
}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "0e005ec2-f5a3-41d3-8a99-7ea6d784440d",
"importer": "spine",
"textures": [
"dca5e70b-8d3f-4ac0-abe7-d0c5647f7837"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "dca5e70b-8d3f-4ac0-abe7-d0c5647f7837",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 96,
"height": 96,
"platformSettings": {},
"subMetas": {
"skeleton": {
"ver": "1.0.6",
"uuid": "06f9f620-7a88-4fb8-bc08-ac7d9db5b807",
"importer": "sprite-frame",
"rawTextureUuid": "dca5e70b-8d3f-4ac0-abe7-d0c5647f7837",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -34,
"offsetY": 1.5,
"trimX": 2,
"trimY": 2,
"width": 24,
"height": 89,
"rawWidth": 96,
"rawHeight": 96,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "8b8ec6d3-f576-46ed-beea-a154efe1621c",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,209 +0,0 @@
mofabang_baozha.png
size: 2040,2040
format: RGBA8888
filter: Linear,Linear
repeat: none
images/effects/Glow1
rotate: false
xy: 862, 1516
size: 216, 216
orig: 256, 256
offset: 20, 19
index: -1
images/effects/hit/hit_00
rotate: true
xy: 1379, 1762
size: 276, 272
orig: 400, 400
offset: 61, 64
index: -1
images/effects/hit/hit_01
rotate: false
xy: 1395, 1520
size: 248, 240
orig: 400, 400
offset: 76, 80
index: -1
images/effects/hit/hit_02
rotate: false
xy: 2, 1734
size: 332, 304
orig: 400, 400
offset: 39, 51
index: -1
images/effects/hit/hit_03
rotate: true
xy: 604, 1726
size: 312, 252
orig: 400, 400
offset: 50, 83
index: -1
images/effects/hit/hit_04
rotate: false
xy: 270, 1524
size: 272, 208
orig: 400, 400
offset: 78, 108
index: -1
images/effects/hit/hit_05
rotate: false
xy: 2, 1512
size: 266, 220
orig: 400, 400
offset: 79, 103
index: -1
images/effects/hit/hit_06
rotate: false
xy: 1117, 1496
size: 276, 240
orig: 400, 400
offset: 73, 94
index: -1
images/effects/hit/hit_07
rotate: true
xy: 1117, 1738
size: 300, 260
orig: 400, 400
offset: 67, 85
index: -1
images/effects/hit/hit_08
rotate: true
xy: 858, 1734
size: 304, 257
orig: 400, 400
offset: 69, 82
index: -1
images/effects/hit/hit_09
rotate: true
xy: 336, 1738
size: 300, 266
orig: 400, 400
offset: 70, 74
index: -1
images/effects/hit/hit_10
rotate: true
xy: 1645, 1380
size: 162, 230
orig: 400, 400
offset: 95, 114
index: -1
images/effects/hit/hit_11
rotate: false
xy: 1148, 1399
size: 101, 95
orig: 400, 400
offset: 99, 119
index: -1
images/effects/hit/hit_12
rotate: false
xy: 2037, 2037
size: 1, 1
orig: 400, 400
offset: 198, 213
index: -1
images/lizi/shoujibaodian_34
rotate: false
xy: 1653, 1719
size: 211, 319
orig: 1136, 640
offset: 696, 201
index: -1
images/lizi/shoujibaodian_35
rotate: true
xy: 544, 1546
size: 178, 316
orig: 1136, 640
offset: 694, 201
index: -1
images/lizi/shoujibaodian_36
rotate: true
xy: 1645, 1544
size: 173, 313
orig: 1136, 640
offset: 696, 200
index: -1
images/lizi/shoujibaodian_37
rotate: false
xy: 1866, 1810
size: 169, 228
orig: 1136, 640
offset: 698, 233
index: -1
images/lizi/shoujibaodian_38
rotate: true
xy: 544, 1378
size: 166, 228
orig: 1136, 640
offset: 702, 235
index: -1
images/lizi/shoujibaodian_39
rotate: true
xy: 270, 1358
size: 164, 219
orig: 1136, 640
offset: 703, 241
index: -1
images/lizi/shoujibaodian_40
rotate: true
xy: 1395, 1361
size: 157, 208
orig: 1136, 640
offset: 710, 249
index: -1
images/lizi/shoujibaodian_41
rotate: true
xy: 774, 1396
size: 118, 189
orig: 1136, 640
offset: 749, 266
index: -1
images/lizi/shoujibaodian_42
rotate: true
xy: 2, 1430
size: 80, 187
orig: 1136, 640
offset: 751, 268
index: -1
images/lizi/shoujibaodian_43
rotate: true
xy: 965, 1418
size: 76, 181
orig: 1136, 640
offset: 752, 269
index: -1
images/lizi/shoujibaodian_44
rotate: false
xy: 1960, 1665
size: 72, 143
orig: 1136, 640
offset: 753, 305
index: -1
images/lizi/shoujibaodian_45
rotate: false
xy: 1960, 1520
size: 69, 143
orig: 1136, 640
offset: 754, 304
index: -1
images/lizi/shoujibaodian_46
rotate: false
xy: 1947, 1376
size: 67, 142
orig: 1136, 640
offset: 755, 304
index: -1
images/lizi/shoujibaodian_47
rotate: false
xy: 191, 1369
size: 67, 141
orig: 1136, 640
offset: 755, 304
index: -1
images/lizi/shoujibaodian_48
rotate: false
xy: 1877, 1400
size: 68, 142
orig: 1136, 640
offset: 754, 303
index: -1

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "97459c20-5c45-444d-b533-f50d2406fe43",
"importer": "asset",
"subMetas": {}
}

View File

@ -1,167 +0,0 @@
{
"skeleton": {
"hash": "hZHGx+scAEPxWQrFsM0GBbRcUg0",
"spine": "3.8.99",
"x": -273.93,
"y": -795.48,
"width": 640,
"height": 1136,
"images": "",
"audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\300970_skill_hit"
},
"bones": [
{ "name": "root" },
{ "name": "all", "parent": "root" },
{ "name": "hit", "parent": "all" },
{ "name": "hit2", "parent": "all" },
{ "name": "glow", "parent": "all" },
{ "name": "lizi2", "parent": "root", "rotation": 90, "x": 1.13, "y": -2.39 }
],
"slots": [
{ "name": "images/bg", "bone": "root" },
{ "name": "images/effects/hit/hit_00", "bone": "hit", "attachment": "images/effects/hit/hit_00", "blend": "screen" },
{ "name": "images/effects/hit/hit_0", "bone": "hit2" },
{ "name": "images/effects/Glow1", "bone": "glow", "blend": "additive" },
{ "name": "images/lizi/shoujibaodian_34", "bone": "lizi2", "attachment": "images/lizi/shoujibaodian_34", "blend": "additive" }
],
"skins": [
{
"name": "default",
"attachments": {
"images/effects/Glow1": {
"images/effects/Glow1": { "width": 256, "height": 256 }
},
"images/effects/hit/hit_0": {
"images/effects/hit/hit_02": { "width": 400, "height": 400 },
"images/effects/hit/hit_03": { "width": 400, "height": 400 },
"images/effects/hit/hit_04": { "width": 400, "height": 400 },
"images/effects/hit/hit_05": { "width": 400, "height": 400 },
"images/effects/hit/hit_06": { "width": 400, "height": 400 },
"images/effects/hit/hit_07": { "width": 400, "height": 400 },
"images/effects/hit/hit_08": { "width": 400, "height": 400 },
"images/effects/hit/hit_09": { "width": 400, "height": 400 },
"images/effects/hit/hit_10": { "width": 400, "height": 400 },
"images/effects/hit/hit_11": { "width": 400, "height": 400 },
"images/effects/hit/hit_12": { "width": 400, "height": 400 },
"images/effects/hit/hit_13": { "width": 400, "height": 400 },
"images/effects/hit/hit_14": { "width": 1, "height": 1 }
},
"images/effects/hit/hit_00": {
"images/effects/hit/hit_00": { "width": 400, "height": 400 },
"images/effects/hit/hit_01": { "width": 400, "height": 400 }
},
"images/lizi/shoujibaodian_34": {
"images/lizi/shoujibaodian_34": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_35": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_36": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_37": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_38": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_39": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_40": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_41": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_42": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_43": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_44": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_45": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_46": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_47": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
"images/lizi/shoujibaodian_48": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }
}
}
}
],
"animations": {
"play": {
"slots": {
"images/effects/Glow1": {
"color": [
{ "time": 0.0333, "color": "5a05ffff" },
{ "time": 0.4667, "color": "bd00ff00" }
],
"attachment": [
{ "time": 0.0333, "name": "images/effects/Glow1" }
]
},
"images/effects/hit/hit_0": {
"attachment": [
{ "time": 0.1333, "name": "images/effects/hit/hit_02" },
{ "time": 0.1667, "name": "images/effects/hit/hit_03" },
{ "time": 0.2, "name": "images/effects/hit/hit_04" },
{ "time": 0.2333, "name": "images/effects/hit/hit_05" },
{ "time": 0.2667, "name": "images/effects/hit/hit_06" },
{ "time": 0.3, "name": "images/effects/hit/hit_07" },
{ "time": 0.3333, "name": "images/effects/hit/hit_08" },
{ "time": 0.3667, "name": "images/effects/hit/hit_09" },
{ "time": 0.4, "name": "images/effects/hit/hit_10" },
{ "time": 0.4333, "name": "images/effects/hit/hit_11" },
{ "time": 0.4667, "name": "images/effects/hit/hit_12" },
{ "time": 0.5, "name": "images/effects/hit/hit_13" },
{ "time": 0.5333, "name": "images/effects/hit/hit_14" },
{ "time": 0.5667, "name": null }
]
},
"images/effects/hit/hit_00": {
"color": [
{ "color": "ffffff00" },
{ "time": 0.0333, "color": "ffffffff" }
],
"attachment": [
{ "time": 0.0667, "name": "images/effects/hit/hit_01" },
{ "time": 0.1, "name": null }
]
},
"images/lizi/shoujibaodian_34": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffff00" },
{ "time": 0.3667, "color": "ffffffff", "curve": "stepped" },
{ "time": 1.3, "color": "ffffffff" },
{ "time": 1.3667, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.4333, "name": "images/lizi/shoujibaodian_35" },
{ "time": 0.5, "name": "images/lizi/shoujibaodian_36" },
{ "time": 0.5667, "name": "images/lizi/shoujibaodian_37" },
{ "time": 0.6333, "name": "images/lizi/shoujibaodian_38" },
{ "time": 0.7, "name": "images/lizi/shoujibaodian_39" },
{ "time": 0.7667, "name": "images/lizi/shoujibaodian_40" },
{ "time": 0.8333, "name": "images/lizi/shoujibaodian_41" },
{ "time": 0.9, "name": "images/lizi/shoujibaodian_42" },
{ "time": 0.9667, "name": "images/lizi/shoujibaodian_43" },
{ "time": 1.0333, "name": "images/lizi/shoujibaodian_44" },
{ "time": 1.1, "name": "images/lizi/shoujibaodian_45" },
{ "time": 1.1667, "name": "images/lizi/shoujibaodian_46" },
{ "time": 1.2333, "name": "images/lizi/shoujibaodian_47" },
{ "time": 1.3, "name": "images/lizi/shoujibaodian_48" }
]
}
},
"bones": {
"glow": {
"scale": [
{ "time": 0.0333, "x": 0.5, "y": 0.5 },
{ "time": 0.1333, "x": 2, "y": 2 },
{ "time": 0.4667, "x": 3, "y": 3 }
]
},
"hit": {
"scale": [
{ "time": 0.0333, "x": 1.5, "y": 1.5 }
]
},
"lizi2": {
"translate": [
{ "time": 0.3667 },
{ "time": 0.7667, "y": 6 },
{ "time": 1.3, "y": -20.01 }
],
"scale": [
{ "x": 0.7, "y": 0.7, "curve": "stepped" },
{ "time": 0.3667, "x": 0.7, "y": 0.7 },
{ "time": 1.3 }
]
}
}
}
}
}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "88cf729e-5501-40cb-9039-36e92ee9c49b",
"importer": "spine",
"textures": [
"ff0d5773-ca66-4087-b1b7-4777121d85be"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "ff0d5773-ca66-4087-b1b7-4777121d85be",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2040,
"height": 2040,
"platformSettings": {},
"subMetas": {
"mofabang_baozha": {
"ver": "1.0.6",
"uuid": "ba2878f1-3d11-4c66-8c2e-58e33b45e628",
"importer": "sprite-frame",
"rawTextureUuid": "ff0d5773-ca66-4087-b1b7-4777121d85be",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -678,
"trimX": 2,
"trimY": 1358,
"width": 2036,
"height": 680,
"rawWidth": 2040,
"rawHeight": 2040,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "f5c90851-ef9a-44a5-96de-54f17b7a766b",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,104 +0,0 @@
mofabang_texiao.png
size: 1000,1000
format: RGBA8888
filter: Linear,Linear
repeat: none
images/effects/chixu/chixu_00
rotate: false
xy: 2, 334
size: 151, 124
orig: 200, 200
offset: 12, 44
index: -1
images/effects/chixu/chixu_01
rotate: true
xy: 159, 567
size: 148, 132
orig: 200, 200
offset: 12, 37
index: -1
images/effects/chixu/chixu_02
rotate: false
xy: 2, 460
size: 153, 125
orig: 200, 200
offset: 15, 37
index: -1
images/effects/chixu/chixu_03
rotate: false
xy: 2, 587
size: 155, 128
orig: 200, 200
offset: 15, 36
index: -1
images/effects/chixu/chixu_04
rotate: true
xy: 157, 416
size: 149, 126
orig: 200, 200
offset: 21, 36
index: -1
images/effects/chixu/chixu_05
rotate: true
xy: 155, 265
size: 149, 123
orig: 200, 200
offset: 21, 36
index: -1
images/effects/chixu/chixu_06
rotate: false
xy: 148, 143
size: 147, 120
orig: 200, 200
offset: 23, 38
index: -1
images/effects/chixu/chixu_07
rotate: true
xy: 2, 61
size: 145, 119
orig: 200, 200
offset: 24, 39
index: -1
images/effects/chixu/chixu_08
rotate: false
xy: 2, 208
size: 144, 124
orig: 200, 200
offset: 23, 41
index: -1
images/effects/chixu/chixu_09
rotate: false
xy: 123, 23
size: 140, 118
orig: 200, 200
offset: 23, 43
index: -1
images/effects/chixu/chixu_10
rotate: true
xy: 265, 2
size: 139, 117
orig: 200, 200
offset: 23, 43
index: -1
images/effects/guangdian
rotate: false
xy: 2, 54
size: 5, 5
orig: 5, 5
offset: 0, 0
index: -1
images/effects/huiguang
rotate: false
xy: 2, 717
size: 278, 278
orig: 311, 310
offset: 17, 16
index: -1
images/effects/微信图片_20250515181822
rotate: false
xy: 280, 305
size: 93, 109
orig: 93, 109
offset: 0, 0
index: -1

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "13f1b3eb-4cde-4c8e-9dee-16929acd6d24",
"importer": "asset",
"subMetas": {}
}

View File

@ -1,269 +0,0 @@
{
"skeleton": {
"hash": "KwnUpLoFTPi0z5vmLJV6Z4zmnmE",
"spine": "3.8.99",
"x": -152.76,
"y": -158.93,
"width": 316.61,
"height": 310,
"images": "",
"audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\500210_skill1"
},
"bones": [
{ "name": "root" },
{ "name": "all", "parent": "root" },
{ "name": "shifa", "parent": "all", "scaleX": 1.5, "scaleY": 1.5 },
{ "name": "chixu", "parent": "shifa" },
{ "name": "chixu1", "parent": "chixu" },
{ "name": "chixu2", "parent": "chixu", "scaleX": -1 },
{ "name": "bone", "parent": "root", "x": 0.19, "y": -0.13 },
{ "name": "bone2", "parent": "root", "x": -2.4, "y": -1.65 },
{ "name": "bone3", "parent": "root", "x": -2.4, "y": -1.65 },
{ "name": "bone4", "parent": "root", "x": -2.4, "y": -1.65 },
{ "name": "bone5", "parent": "root", "x": -2.4, "y": -1.65 },
{ "name": "bone6", "parent": "root", "x": -2.4, "y": -1.65 },
{ "name": "bone7", "parent": "root", "x": -2.4, "y": -1.65 },
{ "name": "bone8", "parent": "root", "x": -2.4, "y": -1.65 }
],
"slots": [
{ "name": "images/effects/bg", "bone": "root" },
{ "name": "images/effects/chixu/chixu_0", "bone": "chixu2", "color": "d120a1ca", "blend": "additive" },
{ "name": "images/effects/微信图片_20250515181822", "bone": "bone", "attachment": "images/effects/微信图片_20250515181822" },
{ "name": "images/effects/chixu/chixu_00", "bone": "chixu1", "blend": "additive" },
{ "name": "images/effects/huiguang", "bone": "all", "attachment": "images/effects/huiguang", "blend": "additive" },
{ "name": "images/effects/guangdian", "bone": "bone2", "attachment": "images/effects/guangdian", "blend": "additive" },
{ "name": "images/effects/guangdian2", "bone": "bone3", "attachment": "images/effects/guangdian", "blend": "additive" },
{ "name": "images/effects/guangdian4", "bone": "bone5", "attachment": "images/effects/guangdian", "blend": "additive" },
{ "name": "images/effects/guangdian7", "bone": "bone8", "attachment": "images/effects/guangdian", "blend": "additive" },
{ "name": "images/effects/guangdian5", "bone": "bone6", "attachment": "images/effects/guangdian", "blend": "additive" },
{ "name": "images/effects/guangdian3", "bone": "bone4", "attachment": "images/effects/guangdian", "blend": "additive" },
{ "name": "images/effects/guangdian6", "bone": "bone7", "attachment": "images/effects/guangdian", "blend": "additive" }
],
"skins": [
{
"name": "default",
"attachments": {
"images/effects/chixu/chixu_0": {
"images/effects/chixu/chixu_00": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_01": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_02": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_03": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_04": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_05": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_06": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_07": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_08": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_09": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_10": { "width": 200, "height": 200 }
},
"images/effects/chixu/chixu_00": {
"images/effects/chixu/chixu_00": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_01": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_02": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_03": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_04": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_05": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_06": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_07": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_08": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_09": { "width": 200, "height": 200 },
"images/effects/chixu/chixu_10": { "width": 200, "height": 200 }
},
"images/effects/guangdian": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/guangdian2": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/guangdian3": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/guangdian4": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/guangdian5": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/guangdian6": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/guangdian7": {
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
},
"images/effects/huiguang": {
"images/effects/huiguang": { "x": 2.74, "y": -3.93, "rotation": 180, "width": 311, "height": 310 }
},
"images/effects/微信图片_20250515181822": {
"images/effects/微信图片_20250515181822": {
"x": 36.11,
"y": -31.15,
"scaleX": 2,
"scaleY": 2,
"rotation": 76.63,
"width": 93,
"height": 109
}
}
}
}
],
"animations": {
"play": {
"slots": {
"images/effects/chixu/chixu_0": {
"attachment": [
{ "time": 0.1333, "name": "images/effects/chixu/chixu_00" },
{ "time": 0.2, "name": "images/effects/chixu/chixu_01" },
{ "time": 0.2667, "name": "images/effects/chixu/chixu_02" },
{ "time": 0.3333, "name": "images/effects/chixu/chixu_03" },
{ "time": 0.4, "name": "images/effects/chixu/chixu_04" },
{ "time": 0.4667, "name": "images/effects/chixu/chixu_05" },
{ "time": 0.5333, "name": "images/effects/chixu/chixu_06" },
{ "time": 0.6, "name": "images/effects/chixu/chixu_07" },
{ "time": 0.6667, "name": "images/effects/chixu/chixu_08" },
{ "time": 0.7333, "name": "images/effects/chixu/chixu_09" },
{ "time": 0.8, "name": "images/effects/chixu/chixu_10" },
{ "time": 0.8667, "name": null }
]
},
"images/effects/chixu/chixu_00": {
"attachment": [
{ "name": "images/effects/chixu/chixu_06" },
{ "time": 0.0667, "name": "images/effects/chixu/chixu_07" },
{ "time": 0.1333, "name": "images/effects/chixu/chixu_08" },
{ "time": 0.2, "name": "images/effects/chixu/chixu_09" },
{ "time": 0.2667, "name": "images/effects/chixu/chixu_10" },
{ "time": 0.3333, "name": null },
{ "time": 0.6, "name": "images/effects/chixu/chixu_00" },
{ "time": 0.6667, "name": "images/effects/chixu/chixu_01" },
{ "time": 0.7333, "name": "images/effects/chixu/chixu_02" },
{ "time": 0.8, "name": "images/effects/chixu/chixu_03" },
{ "time": 0.8667, "name": "images/effects/chixu/chixu_04" },
{ "time": 0.9333, "name": "images/effects/chixu/chixu_05" }
]
},
"images/effects/guangdian": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" },
{ "time": 0.1667, "color": "ffffffff" },
{ "time": 0.2667, "color": "ffffff00" },
{ "time": 0.3667, "color": "ffffffed" },
{ "time": 0.4333, "color": "fffffff5" },
{ "time": 0.5333, "color": "ffffff33" },
{ "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.6667, "color": "ffffffff" },
{ "time": 0.8333, "color": "ffffff00" }
]
},
"images/effects/guangdian2": {
"color": [
{ "time": 0.3667, "color": "ffffffff" },
{ "time": 0.5333, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.9, "color": "ffffff00" },
{ "time": 0.9333, "color": "ffffffff" }
]
},
"images/effects/guangdian3": {
"color": [
{ "time": 0.2333, "color": "ffffffff" },
{ "time": 0.4, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.6333, "color": "ffffff00" },
{ "time": 0.6667, "color": "ffffffff" }
]
},
"images/effects/guangdian4": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.2, "color": "ffffff00" },
{ "time": 0.2333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.7333, "color": "ffffffff" },
{ "time": 0.9, "color": "ffffff00" }
]
},
"images/effects/guangdian5": {
"color": [
{ "color": "ffffff00" },
{ "time": 0.0333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.5333, "color": "ffffffff" },
{ "time": 0.7, "color": "ffffff00" }
]
},
"images/effects/guangdian6": {
"color": [
{ "time": 0.2333, "color": "ffffffff" },
{ "time": 0.4, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.6333, "color": "ffffff00" },
{ "time": 0.6667, "color": "ffffffff" }
]
},
"images/effects/guangdian7": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" },
{ "time": 0.1667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.6667, "color": "ffffffff" },
{ "time": 0.8333, "color": "ffffff00" }
]
},
"images/effects/huiguang": {
"color": [
{ "color": "ffffffff" },
{ "time": 0.4667, "color": "ffffff71" },
{ "time": 0.9333, "color": "ffffffff" }
]
}
},
"bones": {
"bone2": {
"translate": [
{ "time": 0.1667 },
{ "time": 0.8333, "x": 18.29, "y": 73.14 }
]
},
"bone3": {
"translate": [
{ "x": 34.13, "y": -4.63 },
{ "time": 0.5333, "x": 170.66, "y": -23.16, "curve": "stepped" },
{ "time": 0.8667, "x": 170.66, "y": -23.16 },
{ "time": 0.9333 }
]
},
"bone4": {
"translate": [
{ "x": 33.29, "y": 31.52 },
{ "time": 0.4, "x": -69.48, "y": -142.62 },
{ "time": 0.6667 },
{ "time": 0.9333, "x": 33.29, "y": 31.52 }
]
},
"bone5": {
"translate": [
{ "time": 0.2333 },
{ "time": 0.9, "x": -128.62, "y": -19.54 }
]
},
"bone6": {
"translate": [
{ "time": 0.0333 },
{ "time": 0.7, "x": -57.7, "y": 131.91 }
]
},
"bone7": {
"translate": [
{ "x": 18.08, "y": 13.84 },
{ "time": 0.4, "x": 98.49, "y": 94.57 },
{ "time": 0.6667 },
{ "time": 0.9333, "x": 18.08, "y": 13.84 }
]
},
"bone8": {
"translate": [
{ "time": 0.1667 },
{ "time": 0.8333, "x": 97.32, "y": 76.27 }
]
}
}
}
}
}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "86f338ab-4874-40d7-ac5e-06e2bf339c6c",
"importer": "spine",
"textures": [
"363ef00a-0ca9-4ccd-b4bc-62a7dec9b6de"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "363ef00a-0ca9-4ccd-b4bc-62a7dec9b6de",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1000,
"height": 1000,
"platformSettings": {},
"subMetas": {
"mofabang_texiao": {
"ver": "1.0.6",
"uuid": "d4d42228-3ee1-4a5f-808f-ce8b0b494ba7",
"importer": "sprite-frame",
"rawTextureUuid": "363ef00a-0ca9-4ccd-b4bc-62a7dec9b6de",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -308,
"offsetY": 1.5,
"trimX": 2,
"trimY": 2,
"width": 380,
"height": 993,
"rawWidth": 1000,
"rawHeight": 1000,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "fe7bac61-99b4-4653-9428-8e258da15302",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "43aa6fa9-d440-4a11-93ae-e92a87fc2c4a",
"importer": "directory",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "1aa36344-6803-464b-9ccd-bd47a2dc65d7",
"importer": "directory",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "a016c003-4b29-4f55-8f78-f3b6dd5abab6",
"importer": "directory",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "866e4be5-7181-407b-8a74-8822bf3e46db",
"importer": "directory",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "727ab669-af95-43be-9818-2065a98b84a5",
"importer": "image",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 192,
"height": 192,
"platformSettings": {},
"subMetas": {
"LiZi1": {
"ver": "1.0.6",
"uuid": "c5195cb6-e974-4b2b-9b9a-fa73a8c21cfb",
"importer": "sprite-frame",
"rawTextureUuid": "727ab669-af95-43be-9818-2065a98b84a5",
"trimType": "none",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 192,
"height": 192,
"rawWidth": 192,
"rawHeight": 192,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "c88c6283-3de7-4606-b65a-fa3e18c95049",
"importer": "image",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 200,
"height": 200,
"platformSettings": {},
"subMetas": {
"circle_00": {
"ver": "1.0.6",
"uuid": "3e2536e0-8913-4e18-80ed-ae109a6fa197",
"importer": "sprite-frame",
"rawTextureUuid": "c88c6283-3de7-4606-b65a-fa3e18c95049",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 200,
"height": 200,
"rawWidth": 200,
"rawHeight": 200,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "118d4d54-d313-4f52-b49f-593effa13423",
"importer": "image",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 73,
"height": 73,
"platformSettings": {},
"subMetas": {
"flash": {
"ver": "1.0.6",
"uuid": "a28b8261-be09-47df-aaa7-db3b6edebc3e",
"importer": "sprite-frame",
"rawTextureUuid": "118d4d54-d313-4f52-b49f-593effa13423",
"trimType": "none",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 73,
"height": 73,
"rawWidth": 73,
"rawHeight": 73,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "071c697b-6b3e-4294-a6bb-e433ef19e445",
"importer": "image",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 186,
"height": 218,
"platformSettings": {},
"subMetas": {
"bang": {
"ver": "1.0.6",
"uuid": "071c697b-6b3e-4294-a6bb-e433ef19e445@6c48a",
"importer": "texture",
"rawTextureUuid": "071c697b-6b3e-4294-a6bb-e433ef19e445",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 218,
"rawWidth": 186,
"rawHeight": 218,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,976 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "tuowei1",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "tuowei1",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 8
},
{
"__id__": 14
},
{
"__id__": 20
}
],
"_active": true,
"_components": [
{
"__id__": 26
},
{
"__id__": 28
}
],
"_prefab": {
"__id__": 30
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 368.365,
"y": 119.47800000000007,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "",
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}
},
{
"__type__": "cc.Node",
"_name": "bang",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
}
],
"_prefab": {
"__id__": 7
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 24.637,
"y": -44.506,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "",
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 186,
"height": 218
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "cdWk0F6LtP+JZwDprvKxmV"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "071c697b-6b3e-4294-a6bb-e433ef19e445@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f1svzuVr5Ek4L0JQ6gVnR0"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "41GQWZ2a5Ex6CABo1VEgRM",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "tailing",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 9
},
{
"__id__": 11
}
],
"_prefab": {
"__id__": 13
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "",
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 8
},
"_enabled": true,
"__prefab": {
"__id__": 10
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f2Tw/3NDdLoLhwO87Ntg5/"
},
{
"__type__": "cc.MotionStreak",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 8
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 128,
"b": 0,
"a": 255
},
"_preview": true,
"_fadeTime": 0.3,
"_minSeg": 1,
"_stroke": 20,
"_texture": {
"__uuid__": "c88c6283-3de7-4606-b65a-fa3e18c95049@6c48a",
"__expectedType__": "cc.Texture2D"
},
"_fastMode": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "6eMtdlXtxMZ6pJ12SfzsaD"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "d7Nu2TAIxA4b0/kSUg8bAf",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "em_flash_particle",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 15
},
{
"__id__": 17
}
],
"_prefab": {
"__id__": 19
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "",
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 14
},
"_enabled": true,
"__prefab": {
"__id__": 16
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81tLRN38lLaYloZwaXQYU9"
},
{
"__type__": "cc.ParticleSystem2D",
"_name": "Node<ParticleSystem2D>",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 14
},
"_enabled": true,
"__prefab": {
"__id__": 18
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 1,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"duration": -1,
"emissionRate": 224.9,
"life": 1,
"lifeVar": 0.5,
"angle": 0,
"angleVar": 360,
"startSize": 100,
"startSizeVar": 30,
"endSize": 1,
"endSizeVar": 0,
"startSpin": 50,
"startSpinVar": 20,
"endSpin": 20,
"endSpinVar": 0,
"sourcePos": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"posVar": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"emitterMode": 0,
"gravity": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"speed": 112.1,
"speedVar": 0,
"tangentialAccel": 0,
"tangentialAccelVar": 0,
"radialAccel": -88.8,
"radialAccelVar": 50,
"rotationIsDir": false,
"startRadius": 100,
"startRadiusVar": 0,
"endRadius": 0,
"endRadiusVar": 0,
"rotatePerS": 0,
"rotatePerSVar": 0,
"playOnLoad": true,
"autoRemoveOnFinish": false,
"_preview": true,
"preview": true,
"_custom": true,
"_file": null,
"_spriteFrame": {
"__uuid__": "727ab669-af95-43be-9818-2065a98b84a5@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_totalParticles": 100,
"_startColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 0
},
"_startColorVar": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 0
},
"_endColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_endColorVar": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 0
},
"_positionType": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "29Yg0IzqxLXpg3WEEEA8rx"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "79oTbIHqZP55cNO2Plw9CS",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "em_flash_0001",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 21
},
{
"__id__": 23
}
],
"_prefab": {
"__id__": 25
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "",
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
}
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 20
},
"_enabled": true,
"__prefab": {
"__id__": 22
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "63jpn9vu9KgJrVSe3VGxEH"
},
{
"__type__": "cc.ParticleSystem2D",
"_name": "Node<ParticleSystem2D>",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 20
},
"_enabled": true,
"__prefab": {
"__id__": 24
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 1,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"duration": -1,
"emissionRate": 100,
"life": 0.2,
"lifeVar": 0.5,
"angle": 0,
"angleVar": 360,
"startSize": 50,
"startSizeVar": 50,
"endSize": 0,
"endSizeVar": 0,
"startSpin": 0,
"startSpinVar": 0,
"endSpin": 0,
"endSpinVar": 0,
"sourcePos": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"posVar": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"emitterMode": 0,
"gravity": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"speed": 100,
"speedVar": 0,
"tangentialAccel": 0,
"tangentialAccelVar": 0,
"radialAccel": -100,
"radialAccelVar": 50,
"rotationIsDir": false,
"startRadius": 100,
"startRadiusVar": 0,
"endRadius": 0,
"endRadiusVar": 0,
"rotatePerS": 0,
"rotatePerSVar": 0,
"playOnLoad": true,
"autoRemoveOnFinish": false,
"_preview": true,
"preview": true,
"_custom": true,
"_file": null,
"_spriteFrame": {
"__uuid__": "118d4d54-d313-4f52-b49f-593effa13423@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_totalParticles": 100,
"_startColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_startColorVar": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_endColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_endColorVar": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_positionType": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "d6zZxSYVRKao65R/JgmRQm"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "12615JbA9PJ4FPoMzO8C6x",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 27
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bdEhcD5ulM9ZomwM3XdABi"
},
{
"__type__": "cc.ParticleSystem2D",
"_name": "Node<ParticleSystem2D>",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 29
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 1,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"duration": -1,
"emissionRate": 999.999985098839,
"life": 0.20000000298023224,
"lifeVar": 0.5,
"angle": 360,
"angleVar": 360,
"startSize": 3.369999885559082,
"startSizeVar": 50,
"endSize": 30.31999969482422,
"endSizeVar": 0,
"startSpin": -47.369998931884766,
"startSpinVar": 0,
"endSpin": -47.369998931884766,
"endSpinVar": -142.11000061035156,
"sourcePos": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"posVar": {
"__type__": "cc.Vec2",
"x": 7,
"y": 7
},
"emitterMode": 0,
"gravity": {
"__type__": "cc.Vec2",
"x": 0.25,
"y": 0.8600000143051147
},
"speed": 0,
"speedVar": 190.7899932861328,
"tangentialAccel": -92.11000061035156,
"tangentialAccelVar": 65.79000091552734,
"radialAccel": -671.0499877929688,
"radialAccelVar": 65.79000091552734,
"rotationIsDir": false,
"startRadius": 100,
"startRadiusVar": 0,
"endRadius": 0,
"endRadiusVar": 0,
"rotatePerS": 0,
"rotatePerSVar": 0,
"playOnLoad": true,
"autoRemoveOnFinish": false,
"_preview": true,
"preview": true,
"_custom": false,
"_file": {
"__uuid__": "e17b4526-57a2-48d3-acc9-cf09f30aa138",
"__expectedType__": "cc.ParticleAsset"
},
"_spriteFrame": {
"__uuid__": "24c419ea-63a8-4ea1-a9d0-7fc469489bbc@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_totalParticles": 200,
"_startColor": {
"__type__": "cc.Color",
"r": 203,
"g": 201,
"b": 86,
"a": 163
},
"_startColorVar": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"_endColor": {
"__type__": "cc.Color",
"r": 174,
"g": 162,
"b": 20,
"a": 214
},
"_endColorVar": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"_positionType": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "0bZtCWyVpB6rYhwnVfPfEd"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "2aAPYQxm1P2KXFrtMmSuR+",
"targetOverrides": null
}
]

View File

@ -1,9 +0,0 @@
{
"ver": "1.3.2",
"uuid": "32ec5e41-9aeb-475a-9ad2-1d0a81b8dfc2",
"importer": "prefab",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "a4736a35-1bd8-4751-89b4-d0bc089a2614",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,181 +0,0 @@
zhandan.png
size: 1020,1020
format: RGBA8888
filter: Linear,Linear
repeat: none
banyuan0001
rotate: true
xy: 758, 692
size: 86, 79
orig: 265, 209
offset: 87, 34
index: -1
banyuan0004
rotate: true
xy: 633, 273
size: 172, 133
orig: 265, 209
offset: 46, 11
index: -1
banyuan0007
rotate: false
xy: 2, 4
size: 242, 188
orig: 265, 209
offset: 10, 6
index: -1
banyuan0010
rotate: false
xy: 2, 194
size: 253, 195
orig: 265, 209
offset: 5, 7
index: -1
banyuan0013
rotate: false
xy: 2, 611
size: 259, 199
orig: 265, 209
offset: 2, 5
index: -1
banyuan0016
rotate: false
xy: 2, 812
size: 262, 203
orig: 265, 209
offset: 1, 3
index: -1
huoquan0001
rotate: true
xy: 758, 780
size: 123, 80
orig: 222, 151
offset: 52, 41
index: -1
huoquan0004
rotate: true
xy: 633, 17
size: 193, 140
orig: 222, 151
offset: 16, 9
index: -1
huoquan0006
rotate: true
xy: 463, 615
size: 209, 148
orig: 222, 151
offset: 7, 3
index: -1
huoquan0009
rotate: false
xy: 468, 870
size: 213, 145
orig: 222, 151
offset: 5, 2
index: -1
huoquan0012
rotate: true
xy: 613, 655
size: 213, 143
orig: 222, 151
offset: 5, 1
index: -1
huoquan0015
rotate: true
xy: 633, 447
size: 206, 140
orig: 222, 151
offset: 9, 1
index: -1
zaza0001
rotate: true
xy: 683, 905
size: 110, 98
orig: 251, 223
offset: 74, 45
index: -1
zaza0003
rotate: false
xy: 240, 408
size: 218, 201
orig: 251, 223
offset: 28, 0
index: -1
zaza0004
rotate: false
xy: 2, 391
size: 236, 218
orig: 251, 223
offset: 15, 0
index: -1
zaza0008
rotate: true
xy: 266, 612
size: 212, 195
orig: 251, 223
offset: 27, 6
index: -1
zaza0012
rotate: true
xy: 257, 191
size: 215, 198
orig: 251, 223
offset: 24, 6
index: -1
zaza0016
rotate: true
xy: 266, 826
size: 189, 200
orig: 251, 223
offset: 28, 4
index: -1
zaza0020
rotate: true
xy: 246, 2
size: 187, 205
orig: 251, 223
offset: 24, 2
index: -1
zaza0024
rotate: false
xy: 457, 212
size: 174, 194
orig: 251, 223
offset: 30, 6
index: -1
zaza0028
rotate: false
xy: 457, 16
size: 174, 194
orig: 251, 223
offset: 30, 6
index: -1
zaza0032
rotate: false
xy: 460, 415
size: 171, 194
orig: 251, 223
offset: 30, 6
index: -1
zhadan1
rotate: false
xy: 768, 352
size: 60, 93
orig: 62, 95
offset: 1, 1
index: -1
zhadan2
rotate: false
xy: 768, 267
size: 59, 83
orig: 62, 95
offset: 1, 1
index: -1
zhadan3
rotate: false
xy: 775, 447
size: 59, 76
orig: 62, 95
offset: 1, 1
index: -1

View File

@ -1,6 +0,0 @@
{
"ver": "1.0.3",
"uuid": "a2a2084f-96a0-4646-a699-ba9714473c81",
"importer": "asset",
"subMetas": {}
}

View File

@ -1,151 +0,0 @@
{
"skeleton": {
"hash": "k+H2C+mXFNRS2OlTrDJIvQAbPQ4",
"spine": "3.8.99",
"x": -35.7,
"y": -33.01,
"width": 62,
"height": 95,
"images": "./0/",
"audio": ""
},
"bones": [
{ "name": "root" },
{ "name": "banyuan0001", "parent": "root", "x": 107.34, "y": 35.2 },
{ "name": "huoquan0001", "parent": "root", "x": 104.99, "y": -67.86, "scaleX": 2, "scaleY": 2 },
{ "name": "zaza0001", "parent": "root", "x": 238.73, "y": -87.12, "scaleX": 2, "scaleY": 2 },
{ "name": "banyuan2", "parent": "root", "x": -4.44, "y": -26.16 },
{ "name": "banyuan1", "parent": "banyuan2", "x": -0.25, "y": 40.16 }
],
"slots": [
{ "name": "bg", "bone": "root" },
{ "name": "huoquan0001", "bone": "huoquan0001" },
{ "name": "zaza0001", "bone": "zaza0001" },
{ "name": "banyuan0001", "bone": "banyuan0001" },
{ "name": "zhadan", "bone": "banyuan1", "attachment": "zhadan1" }
],
"skins": [
{
"name": "default",
"attachments": {
"banyuan0001": {
"banyuan0001": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 },
"banyuan0004": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 },
"banyuan0007": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 },
"banyuan0010": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 },
"banyuan0013": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 },
"banyuan0016": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 }
},
"huoquan0001": {
"huoquan0001": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 },
"huoquan0004": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 },
"huoquan0006": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 },
"huoquan0009": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 },
"huoquan0012": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 },
"huoquan0015": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 }
},
"zaza0001": {
"zaza0001": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0003": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0004": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0008": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0012": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0016": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0020": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0024": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0028": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 },
"zaza0032": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }
},
"zhadan": {
"zhadan1": { "y": 0.5, "width": 62, "height": 95 },
"zhadan2": { "y": 0.5, "width": 62, "height": 95 },
"zhadan3": { "y": 0.5, "width": 62, "height": 95 }
}
}
}
],
"animations": {
"eff": {
"slots": {
"banyuan0001": {
"attachment": [
{ "time": 0.3333, "name": "banyuan0001" },
{ "time": 0.4333, "name": "banyuan0004" },
{ "time": 0.5333, "name": "banyuan0007" },
{ "time": 0.6333, "name": "banyuan0010" },
{ "time": 0.7333, "name": "banyuan0013" },
{ "time": 0.8333, "name": "banyuan0016" },
{ "time": 0.9333, "name": null }
]
},
"huoquan0001": {
"attachment": [
{ "time": 0.3333, "name": "huoquan0001" },
{ "time": 0.4333, "name": "huoquan0004" },
{ "time": 0.5, "name": "huoquan0006" },
{ "time": 0.6, "name": "huoquan0009" },
{ "time": 0.7, "name": "huoquan0012" },
{ "time": 0.8, "name": "huoquan0015" },
{ "time": 0.8333, "name": null }
]
},
"zaza0001": {
"color": [
{ "time": 1.1333, "color": "ffffffff" },
{ "time": 1.4, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.3333, "name": "zaza0001" },
{ "time": 0.4, "name": "zaza0003" },
{ "time": 0.4333, "name": "zaza0004" },
{ "time": 0.5667, "name": "zaza0008" },
{ "time": 0.7, "name": "zaza0012" },
{ "time": 0.8333, "name": "zaza0016" },
{ "time": 0.9667, "name": "zaza0020" },
{ "time": 1.1, "name": "zaza0024" },
{ "time": 1.2333, "name": "zaza0028" },
{ "time": 1.3333, "name": "zaza0032" },
{ "time": 1.4, "name": null }
]
},
"zhadan": {
"color": [
{ "time": 0.2667, "color": "ffffffff" },
{ "time": 0.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.0667, "name": "zhadan2" },
{ "time": 0.1333, "name": "zhadan3" }
]
}
},
"bones": {
"banyuan0001": {
"translate": [
{ "time": 0.3333, "x": -111.11, "y": -28.42 }
]
},
"huoquan0001": {
"translate": [
{ "time": 0.3333, "x": -104.86, "y": 63.21 }
]
},
"zaza0001": {
"translate": [
{ "time": 0.3333, "x": -240.31, "y": 91.73 }
]
},
"banyuan2": {
"scale": [
{},
{ "time": 0.0667, "x": 1.2, "y": 1.2 },
{ "time": 0.1333, "x": 0.9, "y": 0.9 },
{ "time": 0.2, "x": 1.1, "y": 1.1 },
{ "time": 0.2667 },
{ "time": 0.3333, "x": 1.2, "y": 1.2 }
]
}
}
}
}
}

View File

@ -1,10 +0,0 @@
{
"ver": "1.2.5",
"uuid": "2a1bffdc-6b63-425c-9710-a32b4d93ea4b",
"importer": "spine",
"textures": [
"15f7f173-be51-47f3-8314-66d14e63471f"
],
"scale": 1,
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 221 KiB

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "15f7f173-be51-47f3-8314-66d14e63471f",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1020,
"height": 1020,
"platformSettings": {},
"subMetas": {
"zhandan": {
"ver": "1.0.6",
"uuid": "f77c0d10-e213-4f25-9a5b-ac5d327158b8",
"importer": "sprite-frame",
"rawTextureUuid": "15f7f173-be51-47f3-8314-66d14e63471f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -90,
"offsetY": 1.5,
"trimX": 2,
"trimY": 2,
"width": 836,
"height": 1013,
"rawWidth": 1020,
"rawHeight": 1020,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -1,8 +1,8 @@
{
"ver": "1.2.6",
"uuid": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c",
"uuid": "ba9a4097-f4d2-4cc8-b325-34405e67b130",
"importer": "asset",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"size": {
"width": 2009,
"height": 1995
@ -11,9 +11,9 @@
"subMetas": {
"ice_0.png": {
"ver": "1.0.6",
"uuid": "e3336135-ade0-4e73-813e-893b3f1a02b5",
"uuid": "64fa6afd-16c6-4473-a5cf-844bcbd25f73",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -34,9 +34,9 @@
},
"ice_1.png": {
"ver": "1.0.6",
"uuid": "fa3cd527-294e-429f-b7ba-22662775fe0f",
"uuid": "73cd9b62-4f5f-4846-9be8-53f206b00a7f",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -57,9 +57,9 @@
},
"ice_10.png": {
"ver": "1.0.6",
"uuid": "65b2a758-2670-48ed-a008-328544dcd575",
"uuid": "d9d381ae-0c72-4ab4-a470-89bb04e2c78d",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -80,9 +80,9 @@
},
"ice_11.png": {
"ver": "1.0.6",
"uuid": "6e0fdf37-69be-4dbe-9d09-5c4f2e678b4a",
"uuid": "3b800928-497d-4c3f-a1d0-e6a919e4df02",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -103,9 +103,9 @@
},
"ice_12.png": {
"ver": "1.0.6",
"uuid": "c77015b4-f5c1-4179-a0e9-5d2cd6d6b9e5",
"uuid": "b5d05ad0-9ba6-40ca-9d11-b9fd23a0b1f7",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -126,9 +126,9 @@
},
"ice_13.png": {
"ver": "1.0.6",
"uuid": "b4b91baf-30a5-4a20-9084-ef6e355c06f7",
"uuid": "1dcd9c5e-14ca-455f-89b1-c0fb13ab5d33",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -149,9 +149,9 @@
},
"ice_14.png": {
"ver": "1.0.6",
"uuid": "b25c96cd-057b-4fc0-aa62-21f11068ecdd",
"uuid": "aa6f0547-ebd5-4e9c-919f-cdb7e4d09ce8",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -172,9 +172,9 @@
},
"ice_15.png": {
"ver": "1.0.6",
"uuid": "2764a9d6-9cd2-4e21-b697-d77664324940",
"uuid": "ceb856fb-1003-46dd-9a43-3c3c8399376e",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -195,9 +195,9 @@
},
"ice_16.png": {
"ver": "1.0.6",
"uuid": "bd4060ea-d0db-4bdb-9561-d63d034e7d01",
"uuid": "40386653-0f9c-46df-9dd3-5dac1bf804a7",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -218,9 +218,9 @@
},
"ice_17.png": {
"ver": "1.0.6",
"uuid": "6efd9b9f-19a1-4c83-8116-5b15cc775967",
"uuid": "f1428a88-74aa-4353-9a97-1d2325437304",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -241,9 +241,9 @@
},
"ice_18.png": {
"ver": "1.0.6",
"uuid": "2661e9df-d4da-4dcc-ac8d-cb16fcad7ea8",
"uuid": "78f63367-3765-4e5a-ba97-ba1ff164785b",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -264,9 +264,9 @@
},
"ice_19.png": {
"ver": "1.0.6",
"uuid": "21918f8d-57fb-4d73-992d-e58af9bf91ae",
"uuid": "c9773340-b1bc-4d65-b238-d316da70778d",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -287,9 +287,9 @@
},
"ice_2.png": {
"ver": "1.0.6",
"uuid": "b637d46b-64fc-4f24-b0bf-ec3d740a1180",
"uuid": "33d4d456-e972-4edd-9239-cb65b7e1a741",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -310,9 +310,9 @@
},
"ice_20.png": {
"ver": "1.0.6",
"uuid": "9cc4e23c-bc99-4daf-a03b-4335ebf6c167",
"uuid": "727e4b9d-8408-4bea-8a17-1ea8f55cb9eb",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -333,9 +333,9 @@
},
"ice_21.png": {
"ver": "1.0.6",
"uuid": "49aa5f88-cb13-4a14-ace5-e36d0d5ad9ae",
"uuid": "c1e2f27b-c5fe-41ce-964f-671a6acefbfe",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -356,9 +356,9 @@
},
"ice_22.png": {
"ver": "1.0.6",
"uuid": "0286d77f-e962-4050-8a77-250f4a3a139c",
"uuid": "abb431df-2fda-497e-9941-a1c7205b1945",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -379,9 +379,9 @@
},
"ice_3.png": {
"ver": "1.0.6",
"uuid": "510b87b7-3ed2-4bb5-8c02-be013ea1f9bc",
"uuid": "49c30af9-566f-4ccc-8967-371e632afaa9",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -402,9 +402,9 @@
},
"ice_4.png": {
"ver": "1.0.6",
"uuid": "486555ef-ae94-4faa-ad96-d807968d9d3a",
"uuid": "8c55e356-f4bb-4483-af03-f498c36f6639",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -425,9 +425,9 @@
},
"ice_5.png": {
"ver": "1.0.6",
"uuid": "d7c81651-f2a3-4da1-aad2-f48c9773d1aa",
"uuid": "01d1aed9-bd88-49f7-940f-39d72a62a6e7",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -448,9 +448,9 @@
},
"ice_6.png": {
"ver": "1.0.6",
"uuid": "07c5118d-73f4-4415-b80a-a94eb9b538c0",
"uuid": "eaa436a0-38d0-4580-9745-0d6ef1e3aa7d",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -471,9 +471,9 @@
},
"ice_7.png": {
"ver": "1.0.6",
"uuid": "f263ce47-c0cb-4cc3-a8cc-2ca91555a86d",
"uuid": "5e0a536d-4c5f-42f6-8f2f-5dabc3dc2d0e",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -494,9 +494,9 @@
},
"ice_8.png": {
"ver": "1.0.6",
"uuid": "59a70589-9d42-4065-9a9f-5dfc15edd0ed",
"uuid": "5e13bde7-1c9f-4a8e-afc7-d1d8e6df870b",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -517,9 +517,9 @@
},
"ice_9.png": {
"ver": "1.0.6",
"uuid": "3197674e-141b-4857-b39c-97d5b2e64782",
"uuid": "62429a89-373d-44cb-a978-af1f32ab409d",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -540,9 +540,9 @@
},
"xz_0.png": {
"ver": "1.0.6",
"uuid": "d5603a7d-2064-4cfd-aad9-9216b171f1fd",
"uuid": "138f8f36-a044-4bd6-bc77-537095928721",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -563,9 +563,9 @@
},
"xz_1.png": {
"ver": "1.0.6",
"uuid": "d7251c98-6e8e-4a25-a9b8-f679b5358540",
"uuid": "ce2c1c04-dfdd-485f-ba0b-9e9e2d5bd775",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -586,9 +586,9 @@
},
"xz_10.png": {
"ver": "1.0.6",
"uuid": "34a7a697-bfd3-414f-8443-b782bcaef077",
"uuid": "aa2fd905-3a30-4de0-82a9-e2340e62f004",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -609,9 +609,9 @@
},
"xz_11.png": {
"ver": "1.0.6",
"uuid": "cd5dc1b6-8181-4a84-9e92-5f391b5d08aa",
"uuid": "560503c2-3664-47c4-834f-b052031a95fe",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -632,9 +632,9 @@
},
"xz_12.png": {
"ver": "1.0.6",
"uuid": "c6b24109-dc9a-475e-8587-24b1c1ce211c",
"uuid": "528a16df-0cfd-4569-b06e-7b0045260762",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -655,9 +655,9 @@
},
"xz_13.png": {
"ver": "1.0.6",
"uuid": "515f65de-054a-4a3e-a49b-f04c522334c6",
"uuid": "56c79cf2-5c1c-4044-bf72-9c99c5302074",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -678,9 +678,9 @@
},
"xz_14.png": {
"ver": "1.0.6",
"uuid": "bbe9ff36-9442-4582-94b6-18c80b98a88b",
"uuid": "c6c8593c-e9ec-48fa-82ce-68de832b0588",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -701,9 +701,9 @@
},
"xz_15.png": {
"ver": "1.0.6",
"uuid": "bf0f6fdf-2cb6-4a4d-80b6-9bd2f2a70f64",
"uuid": "ab387f59-de04-44b9-b209-e8326eeaa6cf",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -724,9 +724,9 @@
},
"xz_16.png": {
"ver": "1.0.6",
"uuid": "9bc2635a-fd18-4c29-96f1-5bdf2e3ca994",
"uuid": "03a5a06c-65ca-4848-b677-814ceca367e9",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -747,9 +747,9 @@
},
"xz_17.png": {
"ver": "1.0.6",
"uuid": "85831139-37a3-419d-8ae2-63e3de280069",
"uuid": "740b4de2-f5ed-4218-b5ea-489795888132",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -770,9 +770,9 @@
},
"xz_18.png": {
"ver": "1.0.6",
"uuid": "2b68a266-8696-4acc-93a1-41067ad499f6",
"uuid": "326f4d71-ec3e-4e60-80b7-366644f8e4bc",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -793,9 +793,9 @@
},
"xz_19.png": {
"ver": "1.0.6",
"uuid": "322ab075-1404-4bd4-89a9-f9e530153a9b",
"uuid": "82bc9160-309d-4c6b-9895-5c0de13783c2",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -816,9 +816,9 @@
},
"xz_2.png": {
"ver": "1.0.6",
"uuid": "b189fafa-f688-4ba2-a11b-839d37caaa2d",
"uuid": "1dae414a-cce8-4e94-869b-ed869b85a7a2",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -839,9 +839,9 @@
},
"xz_20.png": {
"ver": "1.0.6",
"uuid": "53ebd7d6-1d1b-4d3a-a058-a18bfe3bd426",
"uuid": "f4c34816-7926-4e19-b11b-5ffd9340accb",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -862,9 +862,9 @@
},
"xz_21.png": {
"ver": "1.0.6",
"uuid": "9e765f43-6a24-4439-af86-ff266b9c28ab",
"uuid": "415f47f0-fad1-43e1-9bb0-a3829d65a394",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -885,9 +885,9 @@
},
"xz_22.png": {
"ver": "1.0.6",
"uuid": "d3ded0a3-0ec1-4f0e-8e62-e090263e06a3",
"uuid": "ba9b6fef-aacb-479a-8861-764c39e05d75",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -908,9 +908,9 @@
},
"xz_3.png": {
"ver": "1.0.6",
"uuid": "0a3badcc-62cb-40cb-8f95-0a7818c08c99",
"uuid": "67a3e1e8-b956-4a3c-861d-d81ec149a0bf",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -931,9 +931,9 @@
},
"xz_4.png": {
"ver": "1.0.6",
"uuid": "f77686ab-3aef-4ae9-8a04-55c03cf2b689",
"uuid": "b0c52cbf-9933-4e65-be5f-aeb2c16cb99c",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -954,9 +954,9 @@
},
"xz_5.png": {
"ver": "1.0.6",
"uuid": "5342450a-68a2-4c7d-b26a-327243e82e67",
"uuid": "0ac33287-c45a-471c-ac50-5039da17ea1d",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -977,9 +977,9 @@
},
"xz_6.png": {
"ver": "1.0.6",
"uuid": "9b0ac44e-5295-470f-87c1-28064efef2c1",
"uuid": "7b23c8ea-807d-4f55-90ba-bd725aff309c",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -1000,9 +1000,9 @@
},
"xz_7.png": {
"ver": "1.0.6",
"uuid": "8808dcaf-1158-4df2-8eff-725d85cf63f1",
"uuid": "dc762f76-685e-44d7-88f5-5bd670c20532",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
@ -1023,9 +1023,9 @@
},
"xz_8.png": {
"ver": "1.0.6",
"uuid": "7f4466e7-8e5e-41f0-9a31-37b2b86e8066",
"uuid": "f502ad08-6edf-4fc1-b3a2-45315d91c7d0",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": true,
@ -1046,9 +1046,9 @@
},
"xz_9.png": {
"ver": "1.0.6",
"uuid": "25e0fb3a-394e-42ae-b792-2748f15d82c9",
"uuid": "3193b747-13f1-4800-91ff-8de019c658da",
"importer": "sprite-frame",
"rawTextureUuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,

View File

Before

Width:  |  Height:  |  Size: 636 KiB

After

Width:  |  Height:  |  Size: 636 KiB

View File

@ -1,6 +1,6 @@
{
"ver": "2.3.7",
"uuid": "484f1896-8707-4cc7-8e61-9995a2133f09",
"uuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"importer": "texture",
"type": "raw",
"wrapMode": "clamp",
@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 992,
"height": 1851,
"width": 2009,
"height": 1995,
"platformSettings": {},
"subMetas": {}
}

View File

@ -314,9 +314,7 @@
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "b1760ce5-36c7-4d8b-bb5f-069a448ebbf2"
},
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
@ -328,9 +326,7 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
},
"_atlas": null,
"_id": ""
},
{

View File

@ -262,9 +262,7 @@
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "3042034a-eafb-4920-aacc-79bd4f56d417"
},
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
@ -276,9 +274,7 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
},
"_atlas": null,
"_id": ""
},
{

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 396 KiB

View File

@ -1,15 +0,0 @@
{
"ver": "2.3.7",
"uuid": "418b4767-01bf-4ac2-823b-9880f2a79215",
"importer": "texture",
"type": "raw",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1337,
"height": 975,
"platformSettings": {},
"subMetas": {}
}

View File

@ -1,926 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>frames</key>
<dict>
<key>10down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{1,565},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>10down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{125,565},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>10down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{370,565},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>10down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{735,565},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>10down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1,612},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>10down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{248,612},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>1down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{1,1},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>1down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{125,1},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>1down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{370,1},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>1down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{735,1},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>1down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1,48},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>1down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{248,48},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>2down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{861,1},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>2down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{615,48},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>2down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{1,95},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>2down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{860,48},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>2down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{366,95},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>2down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{613,95},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>3down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{1,142},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>3down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{125,142},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>3down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{370,142},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>3down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{735,142},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>3down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1,189},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>3down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{248,189},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>4down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{861,142},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>4down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{615,189},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>4down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{1,236},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>4down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{860,189},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>4down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{366,236},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>4down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{613,236},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>5down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{1,283},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>5down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{125,283},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>5down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{370,283},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>5down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{735,283},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>5down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1,330},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>5down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{248,330},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>6down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{861,283},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>6down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{615,330},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>6down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{1,377},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>6down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{860,330},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>6down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{366,377},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>6down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{613,377},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>7down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,46}</string>
<key>spriteSourceSize</key>
<string>{122,46}</string>
<key>textureRect</key>
<string>{{861,565},{122,46}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>7down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{244,46}</string>
<key>spriteSourceSize</key>
<string>{244,46}</string>
<key>textureRect</key>
<string>{{615,612},{244,46}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>7down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{364,46}</string>
<key>spriteSourceSize</key>
<string>{364,46}</string>
<key>textureRect</key>
<string>{{1,659},{364,46}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>7down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{46,124}</string>
<key>spriteSourceSize</key>
<string>{46,124}</string>
<key>textureRect</key>
<string>{{861,613},{46,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>7down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{46,246}</string>
<key>spriteSourceSize</key>
<string>{46,246}</string>
<key>textureRect</key>
<string>{{367,659},{46,246}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>7down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{46,366}</string>
<key>spriteSourceSize</key>
<string>{46,366}</string>
<key>textureRect</key>
<string>{{615,661},{46,366}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>8down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{1,424},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>8down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{125,424},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>8down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{370,424},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>8down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{735,424},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>8down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1,471},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>8down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{248,471},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>9down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{861,424},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>9down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{615,471},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>9down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{1,518},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>9down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{860,471},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>9down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{366,518},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>9down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{613,518},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
</dict>
<key>metadata</key>
<dict>
<key>format</key>
<integer>3</integer>
<key>pixelFormat</key>
<string>RGBA8888</string>
<key>premultiplyAlpha</key>
<false/>
<key>realTextureFileName</key>
<string>down.png</string>
<key>size</key>
<string>{986,708}</string>
<key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:e71e00cbca228ccc0b15a23585e90eb3:c43c34fe0ac0b70e0467bdecae7396c0:1f82f659e2591d395bca4b2a7c74dd8a$</string>
<key>textureFileName</key>
<string>down.png</string>
</dict>
</dict>
</plist>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

View File

@ -1,15 +0,0 @@
{
"ver": "2.3.7",
"uuid": "f5eb32ae-c97b-4173-abf2-83de016c2ace",
"importer": "texture",
"type": "raw",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2012,
"height": 331,
"platformSettings": {},
"subMetas": {}
}

View File

@ -1,38 +0,0 @@
{
"ver": "2.3.7",
"uuid": "0a33af4a-6c55-4b97-a88e-80ce9d1a2321",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 132,
"height": 137,
"platformSettings": {},
"subMetas": {
"zhangai": {
"ver": "1.0.6",
"uuid": "32135206-a480-425c-8ad9-1311f91b7314",
"importer": "sprite-frame",
"rawTextureUuid": "0a33af4a-6c55-4b97-a88e-80ce9d1a2321",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 132,
"height": 137,
"rawWidth": 132,
"rawHeight": 137,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -782,7 +782,7 @@
"heng": 1,
"shu": 1,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -782,7 +782,7 @@
"heng": 2,
"shu": 1,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1220,7 +1220,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1220,7 +1220,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1220,7 +1220,7 @@
"heng": 2,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1220,7 +1220,7 @@
"heng": 2,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1366,7 +1366,7 @@
"heng": 3,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -782,7 +782,7 @@
"heng": 1,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -782,7 +782,7 @@
"heng": 3,
"shu": 1,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -782,7 +782,7 @@
"heng": 1,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -782,7 +782,7 @@
"heng": 2,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 2,
"shu": 3,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1074,7 +1074,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

File diff suppressed because one or more lines are too long

View File

@ -1,28 +0,0 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "9color4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1276,
488,
60,
146
],
"offset": [
0,
0
],
"originalSize": [
60,
146
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -1,28 +0,0 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "5color2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
387,
671,
258,
69
],
"offset": [
0,
0
],
"originalSize": [
258,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,8 +2,8 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "ice_5",
"texture": "484f1896-8707-4cc7-8e61-9995a2133f09",
"atlas": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c",
"texture": "a7769b53-73c4-4fd2-bcad-e83d044a502e",
"atlas": "ba9a4097-f4d2-4cc8-b325-34405e67b130",
"rect": [
1269,
1185,

View File

@ -1074,7 +1074,7 @@
"heng": 3,
"shu": 2,
"ice_SpriteFrame": {
"__uuid__": "8b6fd107-6aa0-4523-8fd3-c0f064524b0c"
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
},
"_id": ""
},

View File

@ -1,29 +0,0 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "wall4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1129,
488,
137,
145
],
"offset": [
0,
0
],
"originalSize": [
137,
145
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -1,28 +0,0 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down2",
"texture": "f5eb32ae-c97b-4173-abf2-83de016c2ace",
"atlas": "31479c6e-5626-4598-97ab-f94303e9efe7",
"rect": [
615,
612,
244,
46
],
"offset": [
0,
0
],
"originalSize": [
244,
46
],
"capInsets": [
0,
0,
0,
0
]
}
}

Some files were not shown because too many files have changed in this diff Show More