更新
This commit is contained in:
parent
63d22a0090
commit
ae0c39c54e
|
|
@ -1310,8 +1310,16 @@ export default class MapConroler extends cc.Component {
|
||||||
for (let j = 0; j < cc.fx.GameConfig.WALL_INFO[0].length; j++) {
|
for (let j = 0; j < cc.fx.GameConfig.WALL_INFO[0].length; j++) {
|
||||||
for (let k = 0; k < this.wallArray.length; k++) {
|
for (let k = 0; k < this.wallArray.length; k++) {
|
||||||
if (this.wallArray[k].getChildByName("wall").getComponent("Wall").num == cc.fx.GameConfig.WALL_INFO[0][j].num
|
if (this.wallArray[k].getChildByName("wall").getComponent("Wall").num == cc.fx.GameConfig.WALL_INFO[0][j].num
|
||||||
&& (this.wallArray[k].getChildByName("wall").getComponent("Wall").special < 2 || this.wallArray[k].getChildByName("wall").getComponent("Wall").special > 5)) {
|
&& (this.wallArray[k].getChildByName("wall").getComponent("Wall").special != 2 && this.wallArray[k].getChildByName("wall").getComponent("Wall").special != 4
|
||||||
wallTemp.push(this.wallArray[k]);
|
&& this.wallArray[k].getChildByName("wall").getComponent("Wall").special != 5)) {
|
||||||
|
if (this.wallArray[k].getChildByName("wall").getComponent("Wall").wall_Info.longAndShort != undefined ||
|
||||||
|
this.wallArray[k].getChildByName("wall").getComponent("Wall").wall_Info.colorArray != undefined) {
|
||||||
|
console.log("跳过长短门或者变色门");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
wallTemp.push(this.wallArray[k]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1328,6 +1336,7 @@ export default class MapConroler extends cc.Component {
|
||||||
// 移动到下一组的位置
|
// 移动到下一组的位置
|
||||||
i += length;
|
i += length;
|
||||||
}
|
}
|
||||||
|
//顺时针跳跃
|
||||||
if (this.jump_state == true) {
|
if (this.jump_state == true) {
|
||||||
}
|
}
|
||||||
//如果是逆时针
|
//如果是逆时针
|
||||||
|
|
@ -1353,7 +1362,7 @@ export default class MapConroler extends cc.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// console.log("排序后的WALL_INFO数组:", this.revolvingWallArray);
|
// console.log("排序后的WALL_INFO数组:", this.jumpWallArray);
|
||||||
}
|
}
|
||||||
|
|
||||||
//创建旋转门设置功能
|
//创建旋转门设置功能
|
||||||
|
|
@ -1839,6 +1848,24 @@ export default class MapConroler extends cc.Component {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
changeJumpWall() {
|
||||||
|
//没有跳跃门,直接不处理
|
||||||
|
if (this.jump_state == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// console.log("跳跃一次");
|
||||||
|
//有跳跃门,根据跳跃门数组,改变跳跃门状态,受跳跃方向影响
|
||||||
|
for (let i = 0; i < this.jumpWallArray.length; i++) {
|
||||||
|
let wall = this.jumpWallArray[i];
|
||||||
|
if (wall[0].getChildByName("wall").getComponent("Wall").special == 2) {
|
||||||
|
wall[0].getChildByName("wall").getComponent("Wall").special = 3;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
wall[0].getChildByName("wall").getComponent("Wall").special = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
changeRevolvingWall() {
|
changeRevolvingWall() {
|
||||||
//没有旋转门,直接不处理
|
//没有旋转门,直接不处理
|
||||||
if (this.revolving_state == 0) {
|
if (this.revolving_state == 0) {
|
||||||
|
|
@ -2276,6 +2303,7 @@ export default class MapConroler extends cc.Component {
|
||||||
console.log("特殊处理——————————————", type);
|
console.log("特殊处理——————————————", type);
|
||||||
if (type == true) {
|
if (type == true) {
|
||||||
this.changeRevolvingWall();
|
this.changeRevolvingWall();
|
||||||
|
this.changeJumpWall();
|
||||||
this.changeLongAndShortWall();
|
this.changeLongAndShortWall();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,7 @@ export default class Wall extends cc.Component {
|
||||||
teamDoors: any;
|
teamDoors: any;
|
||||||
openNode: cc.Node;
|
openNode: cc.Node;
|
||||||
revolvingNode: cc.Node;
|
revolvingNode: cc.Node;
|
||||||
|
jumpNode: cc.Node;
|
||||||
freezeNode: cc.Node;
|
freezeNode: cc.Node;
|
||||||
open: boolean;
|
open: boolean;
|
||||||
freezeNumber: number;
|
freezeNumber: number;
|
||||||
|
|
@ -196,10 +197,19 @@ export default class Wall extends cc.Component {
|
||||||
else {
|
else {
|
||||||
this.special = this.wall_Info.special;
|
this.special = this.wall_Info.special;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.num = this.wall_Info.num;
|
this.num = this.wall_Info.num;
|
||||||
this.length = this.wall_Info.length;
|
this.length = this.wall_Info.length;
|
||||||
|
//旋转门
|
||||||
let name2 = "rotate" + this.wall_Info.length;
|
let name2 = "rotate" + this.wall_Info.length;
|
||||||
this.revolvingNode = this.node.parent.getChildByName("revolving").getChildByName(name2);
|
this.revolvingNode = this.node.parent.getChildByName("revolving").getChildByName(name2);
|
||||||
|
|
||||||
|
//跳跃门
|
||||||
|
this.jumpNode = this.node.parent.getChildByName("jump");
|
||||||
|
if (this.wall_Info.jump != undefined) {
|
||||||
|
this.jumpNode.active = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (this.wall_Info.colorArray) {
|
if (this.wall_Info.colorArray) {
|
||||||
this.colorArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1);
|
this.colorArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1);
|
||||||
this.colorStartArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1);
|
this.colorStartArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1);
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
<key>10color1.png</key>
|
<key>10color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{707,1141},{138,69}}</string>
|
<string>{{291,1272},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -20,11 +20,11 @@
|
||||||
<key>10color2.png</key>
|
<key>10color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{637,876},{258,69}}</string>
|
<string>{{720,909},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<true/>
|
<false/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{0,0},{258,69}}</string>
|
<string>{{0,0},{258,69}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
<key>10color4.png</key>
|
<key>10color4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{341,1134},{61,146}}</string>
|
<string>{{2,1112},{61,146}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
<key>10color5.png</key>
|
<key>10color5.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{756,814},{61,266}}</string>
|
<string>{{2,988},{61,266}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -85,7 +85,7 @@
|
||||||
<key>1color1.png</key>
|
<key>1color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{473,1268},{138,69}}</string>
|
<string>{{2,1431},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
<key>1color2.png</key>
|
<key>1color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,1201},{258,69}}</string>
|
<string>{{381,996},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -124,7 +124,7 @@
|
||||||
<key>1color4.png</key>
|
<key>1color4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{489,1071},{61,146}}</string>
|
<string>{{490,1067},{61,146}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -163,7 +163,7 @@
|
||||||
<key>2color1.png</key>
|
<key>2color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{333,1268},{138,69}}</string>
|
<string>{{2,1360},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -176,7 +176,7 @@
|
||||||
<key>2color2.png</key>
|
<key>2color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,1130},{258,69}}</string>
|
<string>{{381,925},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -202,7 +202,7 @@
|
||||||
<key>2color4.png</key>
|
<key>2color4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{341,1071},{61,146}}</string>
|
<string>{{342,1067},{61,146}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -215,7 +215,7 @@
|
||||||
<key>2color5.png</key>
|
<key>2color5.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{756,751},{61,266}}</string>
|
<string>{{381,862},{61,266}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -241,11 +241,11 @@
|
||||||
<key>3color1.png</key>
|
<key>3color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,1343},{138,69}}</string>
|
<string>{{146,1316},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<false/>
|
<true/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{0,0},{138,69}}</string>
|
<string>{{0,0},{138,69}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -254,11 +254,11 @@
|
||||||
<key>3color2.png</key>
|
<key>3color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,1059},{258,69}}</string>
|
<string>{{649,876},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<false/>
|
<true/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{0,0},{258,69}}</string>
|
<string>{{0,0},{258,69}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
<key>3color4.png</key>
|
<key>3color4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{762,485},{61,146}}</string>
|
<string>{{868,1118},{61,146}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -293,7 +293,7 @@
|
||||||
<key>3color5.png</key>
|
<key>3color5.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{381,736},{61,267}}</string>
|
<string>{{2,799},{61,267}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -319,7 +319,7 @@
|
||||||
<key>4color1.png</key>
|
<key>4color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{142,1272},{138,69}}</string>
|
<string>{{220,1217},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -332,7 +332,7 @@
|
||||||
<key>4color2.png</key>
|
<key>4color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,988},{258,69}}</string>
|
<string>{{756,838},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -358,7 +358,7 @@
|
||||||
<key>4color4.png</key>
|
<key>4color4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{762,422},{61,146}}</string>
|
<string>{{720,1118},{61,146}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -371,7 +371,7 @@
|
||||||
<key>4color5.png</key>
|
<key>4color5.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,799},{61,267}}</string>
|
<string>{{381,736},{61,267}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -397,7 +397,7 @@
|
||||||
<key>5color1.png</key>
|
<key>5color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{2,1272},{138,69}}</string>
|
<string>{{478,1201},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -410,11 +410,11 @@
|
||||||
<key>5color2.png</key>
|
<key>5color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{270,953},{258,69}}</string>
|
<string>{{756,767},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<true/>
|
<false/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{0,0},{258,69}}</string>
|
<string>{{0,0},{258,69}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -475,7 +475,7 @@
|
||||||
<key>6color1.png</key>
|
<key>6color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{481,1197},{138,69}}</string>
|
<string>{{338,1201},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -488,7 +488,7 @@
|
||||||
<key>6color2.png</key>
|
<key>6color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{377,862},{258,69}}</string>
|
<string>{{762,635},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -553,7 +553,7 @@
|
||||||
<key>7color1.png</key>
|
<key>7color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{262,1213},{138,69}}</string>
|
<string>{{618,1136},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -566,7 +566,7 @@
|
||||||
<key>7color2.png</key>
|
<key>7color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{756,938},{258,69}}</string>
|
<string>{{762,564},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -631,7 +631,7 @@
|
||||||
<key>8color1.png</key>
|
<key>8color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{341,1197},{138,69}}</string>
|
<string>{{478,1130},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -644,7 +644,7 @@
|
||||||
<key>8color2.png</key>
|
<key>8color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{762,548},{259,69}}</string>
|
<string>{{762,422},{259,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -670,7 +670,7 @@
|
||||||
<key>8color4.png</key>
|
<key>8color4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{489,1134},{61,145}}</string>
|
<string>{{2,1175},{61,145}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -709,7 +709,7 @@
|
||||||
<key>9color1.png</key>
|
<key>9color1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{848,1070},{138,69}}</string>
|
<string>{{338,1130},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -722,7 +722,7 @@
|
||||||
<key>9color2.png</key>
|
<key>9color2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{762,619},{258,69}}</string>
|
<string>{{762,493},{258,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -787,7 +787,7 @@
|
||||||
<key>dikuai.png</key>
|
<key>dikuai.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{684,1281},{120,120}}</string>
|
<string>{{827,1181},{120,120}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -800,7 +800,7 @@
|
||||||
<key>downLeft.png</key>
|
<key>downLeft.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{926,346},{74,122}}</string>
|
<string>{{271,673},{74,122}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-34,-12}</string>
|
<string>{-34,-12}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -813,11 +813,11 @@
|
||||||
<key>downRight.png</key>
|
<key>downRight.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{806,1344},{68,120}}</string>
|
<string>{{949,1181},{68,120}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{33,-13}</string>
|
<string>{33,-13}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<true/>
|
<false/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{72,26},{68,120}}</string>
|
<string>{{72,26},{68,120}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -826,7 +826,7 @@
|
||||||
<key>heng1.png</key>
|
<key>heng1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{845,1275},{136,67}}</string>
|
<string>{{689,1181},{136,67}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,1}</string>
|
<string>{-1,1}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -839,7 +839,7 @@
|
||||||
<key>heng2.png</key>
|
<key>heng2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{707,1212},{136,67}}</string>
|
<string>{{291,1343},{136,67}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,1}</string>
|
<string>{-1,1}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -852,7 +852,7 @@
|
||||||
<key>heng3.png</key>
|
<key>heng3.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{341,1002},{256,67}}</string>
|
<string>{{720,1049},{256,67}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,1}</string>
|
<string>{-1,1}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -865,7 +865,7 @@
|
||||||
<key>heng4.png</key>
|
<key>heng4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{377,933},{256,67}}</string>
|
<string>{{720,980},{256,67}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,1}</string>
|
<string>{-1,1}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -878,7 +878,7 @@
|
||||||
<key>jumpHeng.png</key>
|
<key>jumpHeng.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{636,1136},{138,69}}</string>
|
<string>{{149,1176},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -901,10 +901,23 @@
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
<string>{61,146}</string>
|
<string>{61,146}</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
<key>jump_arror.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>frame</key>
|
||||||
|
<string>{{927,290},{37,95}}</string>
|
||||||
|
<key>offset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>rotated</key>
|
||||||
|
<true/>
|
||||||
|
<key>sourceColorRect</key>
|
||||||
|
<string>{{0,0},{37,95}}</string>
|
||||||
|
<key>sourceSize</key>
|
||||||
|
<string>{37,95}</string>
|
||||||
|
</dict>
|
||||||
<key>leftDown.png</key>
|
<key>leftDown.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{271,673},{138,72}}</string>
|
<string>{{271,797},{138,72}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,-37}</string>
|
<string>{-1,-37}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -917,7 +930,7 @@
|
||||||
<key>leftUp.png</key>
|
<key>leftUp.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{910,470},{62,112}}</string>
|
<string>{{150,1112},{62,112}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-39,17}</string>
|
<string>{-39,17}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -956,7 +969,7 @@
|
||||||
<key>shu1.png</key>
|
<key>shu1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{852,1009},{59,142}}</string>
|
<string>{{2,1299},{59,142}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,2}</string>
|
<string>{-1,2}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -969,7 +982,7 @@
|
||||||
<key>shu2.png</key>
|
<key>shu2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{708,1009},{59,142}}</string>
|
<string>{{2,1238},{59,142}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,2}</string>
|
<string>{-1,2}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -982,7 +995,7 @@
|
||||||
<key>shu3.png</key>
|
<key>shu3.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{756,877},{59,263}}</string>
|
<string>{{2,1051},{59,263}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,2}</string>
|
<string>{-1,2}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -995,7 +1008,7 @@
|
||||||
<key>shu4.png</key>
|
<key>shu4.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{759,690},{59,263}}</string>
|
<string>{{759,706},{59,263}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,2}</string>
|
<string>{-1,2}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1021,11 +1034,11 @@
|
||||||
<key>shu_zl1_1.png</key>
|
<key>shu_zl1_1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{345,793},{58,34}}</string>
|
<string>{{918,385},{58,34}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<true/>
|
<false/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{0,0},{58,34}}</string>
|
<string>{{0,0},{58,34}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -1034,7 +1047,7 @@
|
||||||
<key>shu_zl1_2.png</key>
|
<key>shu_zl1_2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{345,673},{118,34}}</string>
|
<string>{{345,911},{118,34}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1073,7 +1086,7 @@
|
||||||
<key>shu_zl2_1.png</key>
|
<key>shu_zl2_1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{343,914},{32,54}}</string>
|
<string>{{722,797},{32,54}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1086,7 +1099,7 @@
|
||||||
<key>shu_zl2_11.png</key>
|
<key>shu_zl2_11.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{343,853},{32,59}}</string>
|
<string>{{722,736},{32,59}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1099,7 +1112,7 @@
|
||||||
<key>shu_zl2_2.png</key>
|
<key>shu_zl2_2.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{722,858},{32,114}}</string>
|
<string>{{347,795},{32,114}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1112,7 +1125,7 @@
|
||||||
<key>shu_zl2_22.png</key>
|
<key>shu_zl2_22.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{722,736},{32,120}}</string>
|
<string>{{347,673},{32,120}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1164,7 +1177,7 @@
|
||||||
<key>turn_bg.png</key>
|
<key>turn_bg.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{927,290},{80,54}}</string>
|
<string>{{926,329},{80,54}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1177,7 +1190,7 @@
|
||||||
<key>upLeft.png</key>
|
<key>upLeft.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{650,736},{138,70}}</string>
|
<string>{{270,937},{138,70}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,34}</string>
|
<string>{-1,34}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1190,7 +1203,7 @@
|
||||||
<key>upRight.png</key>
|
<key>upRight.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{271,813},{138,70}}</string>
|
<string>{{650,736},{138,70}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-2,35}</string>
|
<string>{-2,35}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1203,7 +1216,7 @@
|
||||||
<key>wal_up.png</key>
|
<key>wal_up.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{910,470},{62,112}}</string>
|
<string>{{150,1112},{62,112}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-39,17}</string>
|
<string>{-39,17}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1216,11 +1229,11 @@
|
||||||
<key>wall1.png</key>
|
<key>wall1.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{708,1070},{138,69}}</string>
|
<string>{{267,1077},{138,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
<false/>
|
<true/>
|
||||||
<key>sourceColorRect</key>
|
<key>sourceColorRect</key>
|
||||||
<string>{{0,0},{138,69}}</string>
|
<string>{{0,0},{138,69}}</string>
|
||||||
<key>sourceSize</key>
|
<key>sourceSize</key>
|
||||||
|
|
@ -1242,7 +1255,7 @@
|
||||||
<key>wall7.png</key>
|
<key>wall7.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{613,1276},{61,69}}</string>
|
<string>{{217,1357},{61,69}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1255,7 +1268,7 @@
|
||||||
<key>wall_down.png</key>
|
<key>wall_down.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{271,673},{138,72}}</string>
|
<string>{{271,797},{138,72}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{-1,-37}</string>
|
<string>{-1,-37}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1268,7 +1281,7 @@
|
||||||
<key>zhangai.png</key>
|
<key>zhangai.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>frame</key>
|
<key>frame</key>
|
||||||
<string>{{847,1141},{132,137}}</string>
|
<string>{{431,1272},{132,137}}</string>
|
||||||
<key>offset</key>
|
<key>offset</key>
|
||||||
<string>{0,0}</string>
|
<string>{0,0}</string>
|
||||||
<key>rotated</key>
|
<key>rotated</key>
|
||||||
|
|
@ -1288,7 +1301,7 @@
|
||||||
<key>size</key>
|
<key>size</key>
|
||||||
<string>{1024,2048}</string>
|
<string>{1024,2048}</string>
|
||||||
<key>smartupdate</key>
|
<key>smartupdate</key>
|
||||||
<string>$TexturePacker:SmartUpdate:fffbceb4fae7b43ac3c28f30ac0e304e$</string>
|
<string>$TexturePacker:SmartUpdate:2cb67d9f04e89a2a7d5150f7bdcaf35a$</string>
|
||||||
<key>textureFileName</key>
|
<key>textureFileName</key>
|
||||||
<string>door.png</string>
|
<string>door.png</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 707,
|
"trimX": 291,
|
||||||
"trimY": 1141,
|
"trimY": 1272,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -39,11 +39,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 637,
|
"trimX": 720,
|
||||||
"trimY": 876,
|
"trimY": 909,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -88,8 +88,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 341,
|
"trimX": 2,
|
||||||
"trimY": 1134,
|
"trimY": 1112,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 146,
|
"height": 146,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -111,8 +111,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 756,
|
"trimX": 2,
|
||||||
"trimY": 814,
|
"trimY": 988,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 266,
|
"height": 266,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -157,8 +157,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 473,
|
"trimX": 2,
|
||||||
"trimY": 1268,
|
"trimY": 1431,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -180,8 +180,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 381,
|
||||||
"trimY": 1201,
|
"trimY": 996,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -226,8 +226,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 489,
|
"trimX": 490,
|
||||||
"trimY": 1071,
|
"trimY": 1067,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 146,
|
"height": 146,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -295,8 +295,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 333,
|
"trimX": 2,
|
||||||
"trimY": 1268,
|
"trimY": 1360,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -318,8 +318,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 381,
|
||||||
"trimY": 1130,
|
"trimY": 925,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -364,8 +364,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 341,
|
"trimX": 342,
|
||||||
"trimY": 1071,
|
"trimY": 1067,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 146,
|
"height": 146,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -387,8 +387,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 756,
|
"trimX": 381,
|
||||||
"trimY": 751,
|
"trimY": 862,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 266,
|
"height": 266,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -430,11 +430,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 146,
|
||||||
"trimY": 1343,
|
"trimY": 1316,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -453,11 +453,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 649,
|
||||||
"trimY": 1059,
|
"trimY": 876,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -502,8 +502,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 762,
|
"trimX": 868,
|
||||||
"trimY": 485,
|
"trimY": 1118,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 146,
|
"height": 146,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -525,8 +525,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 381,
|
"trimX": 2,
|
||||||
"trimY": 736,
|
"trimY": 799,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 267,
|
"height": 267,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -571,8 +571,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 142,
|
"trimX": 220,
|
||||||
"trimY": 1272,
|
"trimY": 1217,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -594,8 +594,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 756,
|
||||||
"trimY": 988,
|
"trimY": 838,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -640,8 +640,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 762,
|
"trimX": 720,
|
||||||
"trimY": 422,
|
"trimY": 1118,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 146,
|
"height": 146,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -663,8 +663,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 381,
|
||||||
"trimY": 799,
|
"trimY": 736,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 267,
|
"height": 267,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -709,8 +709,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 2,
|
"trimX": 478,
|
||||||
"trimY": 1272,
|
"trimY": 1201,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -729,11 +729,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 270,
|
"trimX": 756,
|
||||||
"trimY": 953,
|
"trimY": 767,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -847,8 +847,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 481,
|
"trimX": 338,
|
||||||
"trimY": 1197,
|
"trimY": 1201,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -870,8 +870,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 377,
|
"trimX": 762,
|
||||||
"trimY": 862,
|
"trimY": 635,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -985,8 +985,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 262,
|
"trimX": 618,
|
||||||
"trimY": 1213,
|
"trimY": 1136,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -1008,8 +1008,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 756,
|
"trimX": 762,
|
||||||
"trimY": 938,
|
"trimY": 564,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -1123,8 +1123,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 341,
|
"trimX": 478,
|
||||||
"trimY": 1197,
|
"trimY": 1130,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -1147,7 +1147,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 762,
|
"trimX": 762,
|
||||||
"trimY": 548,
|
"trimY": 422,
|
||||||
"width": 259,
|
"width": 259,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 259,
|
"rawWidth": 259,
|
||||||
|
|
@ -1192,8 +1192,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 489,
|
"trimX": 2,
|
||||||
"trimY": 1134,
|
"trimY": 1175,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 145,
|
"height": 145,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -1261,8 +1261,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 848,
|
"trimX": 338,
|
||||||
"trimY": 1070,
|
"trimY": 1130,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -1285,7 +1285,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 762,
|
"trimX": 762,
|
||||||
"trimY": 619,
|
"trimY": 493,
|
||||||
"width": 258,
|
"width": 258,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -1399,8 +1399,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 684,
|
"trimX": 827,
|
||||||
"trimY": 1281,
|
"trimY": 1181,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
|
@ -1422,8 +1422,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": -34,
|
"offsetX": -34,
|
||||||
"offsetY": -12,
|
"offsetY": -12,
|
||||||
"trimX": 926,
|
"trimX": 271,
|
||||||
"trimY": 346,
|
"trimY": 673,
|
||||||
"width": 74,
|
"width": 74,
|
||||||
"height": 122,
|
"height": 122,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -1442,11 +1442,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 33,
|
"offsetX": 33,
|
||||||
"offsetY": -13,
|
"offsetY": -13,
|
||||||
"trimX": 806,
|
"trimX": 949,
|
||||||
"trimY": 1344,
|
"trimY": 1181,
|
||||||
"width": 68,
|
"width": 68,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -1468,8 +1468,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 1,
|
"offsetY": 1,
|
||||||
"trimX": 845,
|
"trimX": 689,
|
||||||
"trimY": 1275,
|
"trimY": 1181,
|
||||||
"width": 136,
|
"width": 136,
|
||||||
"height": 67,
|
"height": 67,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -1491,8 +1491,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 1,
|
"offsetY": 1,
|
||||||
"trimX": 707,
|
"trimX": 291,
|
||||||
"trimY": 1212,
|
"trimY": 1343,
|
||||||
"width": 136,
|
"width": 136,
|
||||||
"height": 67,
|
"height": 67,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -1514,8 +1514,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 1,
|
"offsetY": 1,
|
||||||
"trimX": 341,
|
"trimX": 720,
|
||||||
"trimY": 1002,
|
"trimY": 1049,
|
||||||
"width": 256,
|
"width": 256,
|
||||||
"height": 67,
|
"height": 67,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -1537,8 +1537,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 1,
|
"offsetY": 1,
|
||||||
"trimX": 377,
|
"trimX": 720,
|
||||||
"trimY": 933,
|
"trimY": 980,
|
||||||
"width": 256,
|
"width": 256,
|
||||||
"height": 67,
|
"height": 67,
|
||||||
"rawWidth": 258,
|
"rawWidth": 258,
|
||||||
|
|
@ -1560,8 +1560,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 636,
|
"trimX": 149,
|
||||||
"trimY": 1136,
|
"trimY": 1176,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -1596,6 +1596,29 @@
|
||||||
"spriteType": "normal",
|
"spriteType": "normal",
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
},
|
},
|
||||||
|
"jump_arror.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "d5aed327-9af9-4f3e-9928-287ed852d2cb",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": true,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 927,
|
||||||
|
"trimY": 290,
|
||||||
|
"width": 37,
|
||||||
|
"height": 95,
|
||||||
|
"rawWidth": 37,
|
||||||
|
"rawHeight": 95,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
"leftDown.png": {
|
"leftDown.png": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000",
|
"uuid": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000",
|
||||||
|
|
@ -1607,7 +1630,7 @@
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": -37,
|
"offsetY": -37,
|
||||||
"trimX": 271,
|
"trimX": 271,
|
||||||
"trimY": 673,
|
"trimY": 797,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 72,
|
"height": 72,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -1629,8 +1652,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -39,
|
"offsetX": -39,
|
||||||
"offsetY": 17,
|
"offsetY": 17,
|
||||||
"trimX": 910,
|
"trimX": 150,
|
||||||
"trimY": 470,
|
"trimY": 1112,
|
||||||
"width": 62,
|
"width": 62,
|
||||||
"height": 112,
|
"height": 112,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -1698,8 +1721,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 2,
|
"offsetY": 2,
|
||||||
"trimX": 852,
|
"trimX": 2,
|
||||||
"trimY": 1009,
|
"trimY": 1299,
|
||||||
"width": 59,
|
"width": 59,
|
||||||
"height": 142,
|
"height": 142,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -1721,8 +1744,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 2,
|
"offsetY": 2,
|
||||||
"trimX": 708,
|
"trimX": 2,
|
||||||
"trimY": 1009,
|
"trimY": 1238,
|
||||||
"width": 59,
|
"width": 59,
|
||||||
"height": 142,
|
"height": 142,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -1744,8 +1767,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 2,
|
"offsetY": 2,
|
||||||
"trimX": 756,
|
"trimX": 2,
|
||||||
"trimY": 877,
|
"trimY": 1051,
|
||||||
"width": 59,
|
"width": 59,
|
||||||
"height": 263,
|
"height": 263,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -1768,7 +1791,7 @@
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 2,
|
"offsetY": 2,
|
||||||
"trimX": 759,
|
"trimX": 759,
|
||||||
"trimY": 690,
|
"trimY": 706,
|
||||||
"width": 59,
|
"width": 59,
|
||||||
"height": 263,
|
"height": 263,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -1810,11 +1833,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 345,
|
"trimX": 918,
|
||||||
"trimY": 793,
|
"trimY": 385,
|
||||||
"width": 58,
|
"width": 58,
|
||||||
"height": 34,
|
"height": 34,
|
||||||
"rawWidth": 58,
|
"rawWidth": 58,
|
||||||
|
|
@ -1837,7 +1860,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 345,
|
"trimX": 345,
|
||||||
"trimY": 673,
|
"trimY": 911,
|
||||||
"width": 118,
|
"width": 118,
|
||||||
"height": 34,
|
"height": 34,
|
||||||
"rawWidth": 118,
|
"rawWidth": 118,
|
||||||
|
|
@ -1905,8 +1928,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 343,
|
"trimX": 722,
|
||||||
"trimY": 914,
|
"trimY": 797,
|
||||||
"width": 32,
|
"width": 32,
|
||||||
"height": 54,
|
"height": 54,
|
||||||
"rawWidth": 32,
|
"rawWidth": 32,
|
||||||
|
|
@ -1928,8 +1951,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 343,
|
"trimX": 722,
|
||||||
"trimY": 853,
|
"trimY": 736,
|
||||||
"width": 32,
|
"width": 32,
|
||||||
"height": 59,
|
"height": 59,
|
||||||
"rawWidth": 32,
|
"rawWidth": 32,
|
||||||
|
|
@ -1951,8 +1974,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 722,
|
"trimX": 347,
|
||||||
"trimY": 858,
|
"trimY": 795,
|
||||||
"width": 32,
|
"width": 32,
|
||||||
"height": 114,
|
"height": 114,
|
||||||
"rawWidth": 32,
|
"rawWidth": 32,
|
||||||
|
|
@ -1974,8 +1997,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 722,
|
"trimX": 347,
|
||||||
"trimY": 736,
|
"trimY": 673,
|
||||||
"width": 32,
|
"width": 32,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 32,
|
"rawWidth": 32,
|
||||||
|
|
@ -2066,8 +2089,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 927,
|
"trimX": 926,
|
||||||
"trimY": 290,
|
"trimY": 329,
|
||||||
"width": 80,
|
"width": 80,
|
||||||
"height": 54,
|
"height": 54,
|
||||||
"rawWidth": 80,
|
"rawWidth": 80,
|
||||||
|
|
@ -2089,8 +2112,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": 34,
|
"offsetY": 34,
|
||||||
"trimX": 650,
|
"trimX": 270,
|
||||||
"trimY": 736,
|
"trimY": 937,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 70,
|
"height": 70,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -2112,8 +2135,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -2,
|
"offsetX": -2,
|
||||||
"offsetY": 35,
|
"offsetY": 35,
|
||||||
"trimX": 271,
|
"trimX": 650,
|
||||||
"trimY": 813,
|
"trimY": 736,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 70,
|
"height": 70,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -2135,8 +2158,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": -39,
|
"offsetX": -39,
|
||||||
"offsetY": 17,
|
"offsetY": 17,
|
||||||
"trimX": 910,
|
"trimX": 150,
|
||||||
"trimY": 470,
|
"trimY": 1112,
|
||||||
"width": 62,
|
"width": 62,
|
||||||
"height": 112,
|
"height": 112,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -2155,11 +2178,11 @@
|
||||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 708,
|
"trimX": 267,
|
||||||
"trimY": 1070,
|
"trimY": 1077,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
|
@ -2204,8 +2227,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 613,
|
"trimX": 217,
|
||||||
"trimY": 1276,
|
"trimY": 1357,
|
||||||
"width": 61,
|
"width": 61,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 61,
|
"rawWidth": 61,
|
||||||
|
|
@ -2228,7 +2251,7 @@
|
||||||
"offsetX": -1,
|
"offsetX": -1,
|
||||||
"offsetY": -37,
|
"offsetY": -37,
|
||||||
"trimX": 271,
|
"trimX": 271,
|
||||||
"trimY": 673,
|
"trimY": 797,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 72,
|
"height": 72,
|
||||||
"rawWidth": 146,
|
"rawWidth": 146,
|
||||||
|
|
@ -2250,8 +2273,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 847,
|
"trimX": 431,
|
||||||
"trimY": 1141,
|
"trimY": 1272,
|
||||||
"width": 132,
|
"width": 132,
|
||||||
"height": 137,
|
"height": 137,
|
||||||
"rawWidth": 132,
|
"rawWidth": 132,
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 155 KiB After Width: | Height: | Size: 157 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 5.1 KiB |
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"ver": "2.3.7",
|
|
||||||
"uuid": "5a69fa64-a89a-497c-a2be-5d7de287b512",
|
|
||||||
"importer": "texture",
|
|
||||||
"type": "sprite",
|
|
||||||
"wrapMode": "clamp",
|
|
||||||
"filterMode": "bilinear",
|
|
||||||
"premultiplyAlpha": false,
|
|
||||||
"genMipmaps": false,
|
|
||||||
"packable": true,
|
|
||||||
"width": 138,
|
|
||||||
"height": 69,
|
|
||||||
"platformSettings": {},
|
|
||||||
"subMetas": {
|
|
||||||
"jumpHeng": {
|
|
||||||
"ver": "1.0.6",
|
|
||||||
"uuid": "3acde7eb-0288-4e75-9198-3afd00de702a",
|
|
||||||
"importer": "sprite-frame",
|
|
||||||
"rawTextureUuid": "5a69fa64-a89a-497c-a2be-5d7de287b512",
|
|
||||||
"trimType": "auto",
|
|
||||||
"trimThreshold": 1,
|
|
||||||
"rotated": false,
|
|
||||||
"offsetX": 0,
|
|
||||||
"offsetY": 0,
|
|
||||||
"trimX": 0,
|
|
||||||
"trimY": 0,
|
|
||||||
"width": 138,
|
|
||||||
"height": 69,
|
|
||||||
"rawWidth": 138,
|
|
||||||
"rawHeight": 69,
|
|
||||||
"borderTop": 0,
|
|
||||||
"borderBottom": 0,
|
|
||||||
"borderLeft": 0,
|
|
||||||
"borderRight": 0,
|
|
||||||
"subMetas": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.3 KiB |
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"ver": "2.3.7",
|
|
||||||
"uuid": "a2887ad8-16c2-4910-b0e8-6bc29ed627e2",
|
|
||||||
"importer": "texture",
|
|
||||||
"type": "sprite",
|
|
||||||
"wrapMode": "clamp",
|
|
||||||
"filterMode": "bilinear",
|
|
||||||
"premultiplyAlpha": false,
|
|
||||||
"genMipmaps": false,
|
|
||||||
"packable": true,
|
|
||||||
"width": 61,
|
|
||||||
"height": 146,
|
|
||||||
"platformSettings": {},
|
|
||||||
"subMetas": {
|
|
||||||
"jumpShu": {
|
|
||||||
"ver": "1.0.6",
|
|
||||||
"uuid": "72068613-d17d-44d0-b4da-6a94bd629bed",
|
|
||||||
"importer": "sprite-frame",
|
|
||||||
"rawTextureUuid": "a2887ad8-16c2-4910-b0e8-6bc29ed627e2",
|
|
||||||
"trimType": "auto",
|
|
||||||
"trimThreshold": 1,
|
|
||||||
"rotated": false,
|
|
||||||
"offsetX": 0,
|
|
||||||
"offsetY": 0,
|
|
||||||
"trimX": 0,
|
|
||||||
"trimY": 0,
|
|
||||||
"width": 61,
|
|
||||||
"height": 146,
|
|
||||||
"rawWidth": 61,
|
|
||||||
"rawHeight": 146,
|
|
||||||
"borderTop": 0,
|
|
||||||
"borderBottom": 0,
|
|
||||||
"borderLeft": 0,
|
|
||||||
"borderRight": 0,
|
|
||||||
"subMetas": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -43,8 +43,6 @@
|
||||||
"num": 10,
|
"num": 10,
|
||||||
"color": 10,
|
"color": 10,
|
||||||
"special": 0,
|
"special": 0,
|
||||||
"jump": true,
|
|
||||||
"jumpDirection": true,
|
|
||||||
"length": 2
|
"length": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -52,6 +50,8 @@
|
||||||
"num": 12,
|
"num": 12,
|
||||||
"color": 10,
|
"color": 10,
|
||||||
"special": 0,
|
"special": 0,
|
||||||
|
"jump": true,
|
||||||
|
"jumpDirection": true,
|
||||||
"length": 0
|
"length": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -25,186 +25,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [
|
"_components": [],
|
||||||
{
|
|
||||||
"__id__": 8
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 9
|
"__id__": 8
|
||||||
},
|
|
||||||
"_opacity": 255,
|
|
||||||
"_color": {
|
|
||||||
"__type__": "cc.Color",
|
|
||||||
"r": 255,
|
|
||||||
"g": 255,
|
|
||||||
"b": 255,
|
|
||||||
"a": 255
|
|
||||||
},
|
|
||||||
"_contentSize": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 79,
|
|
||||||
"height": 53
|
|
||||||
},
|
|
||||||
"_anchorPoint": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"_trs": {
|
|
||||||
"__type__": "TypedArray",
|
|
||||||
"ctor": "Float64Array",
|
|
||||||
"array": [
|
|
||||||
180,
|
|
||||||
-33,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
1,
|
|
||||||
1,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"_eulerAngles": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"_skewX": 0,
|
|
||||||
"_skewY": 0,
|
|
||||||
"_is3DNode": false,
|
|
||||||
"_groupIndex": 0,
|
|
||||||
"groupIndex": 0,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.Node",
|
|
||||||
"_name": "arror",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"_parent": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_children": [],
|
|
||||||
"_active": true,
|
|
||||||
"_components": [
|
|
||||||
{
|
|
||||||
"__id__": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_prefab": {
|
|
||||||
"__id__": 4
|
|
||||||
},
|
|
||||||
"_opacity": 255,
|
|
||||||
"_color": {
|
|
||||||
"__type__": "cc.Color",
|
|
||||||
"r": 0,
|
|
||||||
"g": 255,
|
|
||||||
"b": 167,
|
|
||||||
"a": 255
|
|
||||||
},
|
|
||||||
"_contentSize": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 36,
|
|
||||||
"height": 24
|
|
||||||
},
|
|
||||||
"_anchorPoint": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"_trs": {
|
|
||||||
"__type__": "TypedArray",
|
|
||||||
"ctor": "Float64Array",
|
|
||||||
"array": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
-1,
|
|
||||||
1,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"_eulerAngles": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"_skewX": 0,
|
|
||||||
"_skewY": 0,
|
|
||||||
"_is3DNode": false,
|
|
||||||
"_groupIndex": 0,
|
|
||||||
"groupIndex": 0,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.Sprite",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"node": {
|
|
||||||
"__id__": 2
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"_materials": [
|
|
||||||
{
|
|
||||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_srcBlendFactor": 770,
|
|
||||||
"_dstBlendFactor": 771,
|
|
||||||
"_spriteFrame": {
|
|
||||||
"__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a"
|
|
||||||
},
|
|
||||||
"_type": 0,
|
|
||||||
"_sizeMode": 1,
|
|
||||||
"_fillType": 0,
|
|
||||||
"_fillCenter": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_fillStart": 0,
|
|
||||||
"_fillRange": 0,
|
|
||||||
"_isTrimmedMode": true,
|
|
||||||
"_atlas": {
|
|
||||||
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInfo",
|
|
||||||
"root": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"asset": {
|
|
||||||
"__id__": 0
|
|
||||||
},
|
|
||||||
"fileId": "abl+L48MxEJ6gjdOC/lCrz",
|
|
||||||
"sync": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.Node",
|
|
||||||
"_name": "New Sprite",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"_parent": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_children": [],
|
|
||||||
"_active": true,
|
|
||||||
"_components": [
|
|
||||||
{
|
|
||||||
"__id__": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_prefab": {
|
|
||||||
"__id__": 7
|
|
||||||
},
|
},
|
||||||
"_opacity": 255,
|
"_opacity": 255,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -229,7 +52,71 @@
|
||||||
"ctor": "Float64Array",
|
"ctor": "Float64Array",
|
||||||
"array": [
|
"array": [
|
||||||
0,
|
0,
|
||||||
-6.265,
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "icon",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_children": [],
|
||||||
|
"_active": true,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 3
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 4
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 138,
|
||||||
|
"height": 69
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
@ -258,7 +145,7 @@
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 5
|
"__id__": 2
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"_materials": [
|
"_materials": [
|
||||||
|
|
@ -298,12 +185,76 @@
|
||||||
"fileId": "a3kkTbautPNZFSW42UJLRv",
|
"fileId": "a3kkTbautPNZFSW42UJLRv",
|
||||||
"sync": false
|
"sync": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "arror",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_children": [],
|
||||||
|
"_active": true,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 6
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 7
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 37,
|
||||||
|
"height": 95
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
0,
|
||||||
|
14.559,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
-0.7071067811865475,
|
||||||
|
0.7071067811865476,
|
||||||
|
-1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": -90
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Sprite",
|
"__type__": "cc.Sprite",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 5
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"_materials": [
|
"_materials": [
|
||||||
|
|
@ -314,10 +265,10 @@
|
||||||
"_srcBlendFactor": 770,
|
"_srcBlendFactor": 770,
|
||||||
"_dstBlendFactor": 771,
|
"_dstBlendFactor": 771,
|
||||||
"_spriteFrame": {
|
"_spriteFrame": {
|
||||||
"__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb"
|
"__uuid__": "d5aed327-9af9-4f3e-9928-287ed852d2cb"
|
||||||
},
|
},
|
||||||
"_type": 1,
|
"_type": 0,
|
||||||
"_sizeMode": 0,
|
"_sizeMode": 1,
|
||||||
"_fillType": 0,
|
"_fillType": 0,
|
||||||
"_fillCenter": {
|
"_fillCenter": {
|
||||||
"__type__": "cc.Vec2",
|
"__type__": "cc.Vec2",
|
||||||
|
|
@ -332,6 +283,17 @@
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "abl+L48MxEJ6gjdOC/lCrz",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|
|
||||||
|
|
@ -40,12 +40,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 139
|
"__id__": 139
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [],
|
"_components": [],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 142
|
"__id__": 148
|
||||||
},
|
},
|
||||||
"_opacity": 255,
|
"_opacity": 255,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -4674,7 +4677,7 @@
|
||||||
"__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb"
|
"__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb"
|
||||||
},
|
},
|
||||||
"_type": 0,
|
"_type": 0,
|
||||||
"_sizeMode": 1,
|
"_sizeMode": 0,
|
||||||
"_fillType": 0,
|
"_fillType": 0,
|
||||||
"_fillCenter": {
|
"_fillCenter": {
|
||||||
"__type__": "cc.Vec2",
|
"__type__": "cc.Vec2",
|
||||||
|
|
@ -5155,6 +5158,228 @@
|
||||||
"fileId": "0dE0P0/9FCQ6EtKeyVhCMh",
|
"fileId": "0dE0P0/9FCQ6EtKeyVhCMh",
|
||||||
"sync": false
|
"sync": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "jump",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_children": [
|
||||||
|
{
|
||||||
|
"__id__": 140
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_active": false,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 143
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 144
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 138,
|
||||||
|
"height": 69
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-1.878,
|
||||||
|
-39.089,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "arror",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_children": [],
|
||||||
|
"_active": true,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 141
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 142
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 37,
|
||||||
|
"height": 95
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-4.39,
|
||||||
|
14.424,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
-0.7071067811865475,
|
||||||
|
0.7071067811865476,
|
||||||
|
-1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": -90
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 140
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "d5aed327-9af9-4f3e-9928-287ed852d2cb"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "ffs1uVWUlPxaGizZP7TjYP",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "3702b92b-6a57-493c-8a8a-f1b8fcbacb5e"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "caNx2aqR9P471+h2bylgIu",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "length",
|
"_name": "length",
|
||||||
|
|
@ -5166,11 +5391,11 @@
|
||||||
"_active": false,
|
"_active": false,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 140
|
"__id__": 146
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 141
|
"__id__": 147
|
||||||
},
|
},
|
||||||
"_opacity": 10,
|
"_opacity": 10,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -5224,7 +5449,7 @@
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 139
|
"__id__": 145
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"_materials": [
|
"_materials": [
|
||||||
|
|
|
||||||
|
|
@ -40,12 +40,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 139
|
"__id__": 139
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [],
|
"_components": [],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 142
|
"__id__": 148
|
||||||
},
|
},
|
||||||
"_opacity": 255,
|
"_opacity": 255,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -4507,8 +4510,8 @@
|
||||||
},
|
},
|
||||||
"_contentSize": {
|
"_contentSize": {
|
||||||
"__type__": "cc.Size",
|
"__type__": "cc.Size",
|
||||||
"width": 79,
|
"width": 80,
|
||||||
"height": 53
|
"height": 54
|
||||||
},
|
},
|
||||||
"_anchorPoint": {
|
"_anchorPoint": {
|
||||||
"__type__": "cc.Vec2",
|
"__type__": "cc.Vec2",
|
||||||
|
|
@ -5153,6 +5156,228 @@
|
||||||
"fileId": "aeCCFODu1H16nXIA3d5Vpb",
|
"fileId": "aeCCFODu1H16nXIA3d5Vpb",
|
||||||
"sync": false
|
"sync": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "jump",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_children": [
|
||||||
|
{
|
||||||
|
"__id__": 140
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_active": false,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 143
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 144
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 61,
|
||||||
|
"height": 146
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-39.314,
|
||||||
|
-0.871,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "arror",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_children": [],
|
||||||
|
"_active": true,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 141
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 142
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 37,
|
||||||
|
"height": 95
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-5.328000000000003,
|
||||||
|
14.992,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
6.123233995736766e-17,
|
||||||
|
-1,
|
||||||
|
1,
|
||||||
|
-1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 180
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 140
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "d5aed327-9af9-4f3e-9928-287ed852d2cb"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "29C2IzGHtP5pzN3HinmTIP",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "af314d12-e3f7-47d3-80b6-1fef0010e4c2"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "a9+apD8XBJ0KKD1/gJzBZ1",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "length",
|
"_name": "length",
|
||||||
|
|
@ -5164,11 +5389,11 @@
|
||||||
"_active": false,
|
"_active": false,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 140
|
"__id__": 146
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 141
|
"__id__": 147
|
||||||
},
|
},
|
||||||
"_opacity": 10,
|
"_opacity": 10,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -5222,7 +5447,7 @@
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 139
|
"__id__": 145
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"_materials": [
|
"_materials": [
|
||||||
|
|
@ -5254,7 +5479,7 @@
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
"__id__": 139
|
"__id__": 145
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
|
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
|
||||||
|
|
|
||||||
|
|
@ -40,12 +40,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 139
|
"__id__": 139
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [],
|
"_components": [],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 142
|
"__id__": 148
|
||||||
},
|
},
|
||||||
"_opacity": 255,
|
"_opacity": 255,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -5153,6 +5156,228 @@
|
||||||
"fileId": "970Ry1rz1C/5B8Jq1XgWom",
|
"fileId": "970Ry1rz1C/5B8Jq1XgWom",
|
||||||
"sync": false
|
"sync": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "jump",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_children": [
|
||||||
|
{
|
||||||
|
"__id__": 140
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_active": false,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 143
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 144
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 61,
|
||||||
|
"height": 146
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
37.306,
|
||||||
|
-0.871,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "arror",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_children": [],
|
||||||
|
"_active": true,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 141
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 142
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 37,
|
||||||
|
"height": 95
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-5.573,
|
||||||
|
14.503,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
-1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 140
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "d5aed327-9af9-4f3e-9928-287ed852d2cb"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "97/MngeFVLu5EKfyHw7PGZ",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "af314d12-e3f7-47d3-80b6-1fef0010e4c2"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "72M/LeMe5ECJ2tTCv4Z/Ev",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "length",
|
"_name": "length",
|
||||||
|
|
@ -5164,11 +5389,11 @@
|
||||||
"_active": false,
|
"_active": false,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 140
|
"__id__": 146
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 141
|
"__id__": 147
|
||||||
},
|
},
|
||||||
"_opacity": 10,
|
"_opacity": 10,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -5222,7 +5447,7 @@
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 139
|
"__id__": 145
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"_materials": [
|
"_materials": [
|
||||||
|
|
@ -5254,7 +5479,7 @@
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
"__id__": 139
|
"__id__": 145
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
|
"__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f"
|
||||||
|
|
|
||||||
|
|
@ -40,12 +40,15 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 139
|
"__id__": 139
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 145
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [],
|
"_components": [],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 142
|
"__id__": 148
|
||||||
},
|
},
|
||||||
"_opacity": 255,
|
"_opacity": 255,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -5153,6 +5156,228 @@
|
||||||
"fileId": "f8Za6jHHxMuafaHTJpkVyj",
|
"fileId": "f8Za6jHHxMuafaHTJpkVyj",
|
||||||
"sync": false
|
"sync": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "jump",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_children": [
|
||||||
|
{
|
||||||
|
"__id__": 140
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_active": false,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 143
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 144
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 138,
|
||||||
|
"height": 69
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-1.878,
|
||||||
|
33.854,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_name": "arror",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_children": [],
|
||||||
|
"_active": true,
|
||||||
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 141
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 142
|
||||||
|
},
|
||||||
|
"_opacity": 255,
|
||||||
|
"_color": {
|
||||||
|
"__type__": "cc.Color",
|
||||||
|
"r": 255,
|
||||||
|
"g": 255,
|
||||||
|
"b": 255,
|
||||||
|
"a": 255
|
||||||
|
},
|
||||||
|
"_contentSize": {
|
||||||
|
"__type__": "cc.Size",
|
||||||
|
"width": 37,
|
||||||
|
"height": 95
|
||||||
|
},
|
||||||
|
"_anchorPoint": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"_trs": {
|
||||||
|
"__type__": "TypedArray",
|
||||||
|
"ctor": "Float64Array",
|
||||||
|
"array": [
|
||||||
|
-4.39,
|
||||||
|
14.424,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0.7071067811865475,
|
||||||
|
0.7071067811865476,
|
||||||
|
-1,
|
||||||
|
1,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_eulerAngles": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 90
|
||||||
|
},
|
||||||
|
"_skewX": 0,
|
||||||
|
"_skewY": 0,
|
||||||
|
"_is3DNode": false,
|
||||||
|
"_groupIndex": 0,
|
||||||
|
"groupIndex": 0,
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 140
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "d5aed327-9af9-4f3e-9928-287ed852d2cb"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "deMEtwyT9HHr3hLWjM3lx7",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Sprite",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 139
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"_materials": [
|
||||||
|
{
|
||||||
|
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_srcBlendFactor": 770,
|
||||||
|
"_dstBlendFactor": 771,
|
||||||
|
"_spriteFrame": {
|
||||||
|
"__uuid__": "3702b92b-6a57-493c-8a8a-f1b8fcbacb5e"
|
||||||
|
},
|
||||||
|
"_type": 0,
|
||||||
|
"_sizeMode": 1,
|
||||||
|
"_fillType": 0,
|
||||||
|
"_fillCenter": {
|
||||||
|
"__type__": "cc.Vec2",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"_fillStart": 0,
|
||||||
|
"_fillRange": 0,
|
||||||
|
"_isTrimmedMode": true,
|
||||||
|
"_atlas": {
|
||||||
|
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__id__": 0
|
||||||
|
},
|
||||||
|
"fileId": "efHt+tW4pDFYKGfqsN7Gxv",
|
||||||
|
"sync": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "length",
|
"_name": "length",
|
||||||
|
|
@ -5164,11 +5389,11 @@
|
||||||
"_active": false,
|
"_active": false,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 140
|
"__id__": 146
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 141
|
"__id__": 147
|
||||||
},
|
},
|
||||||
"_opacity": 10,
|
"_opacity": 10,
|
||||||
"_color": {
|
"_color": {
|
||||||
|
|
@ -5222,7 +5447,7 @@
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 139
|
"__id__": 145
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"_materials": [
|
"_materials": [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user