diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts
index fd20fcb..568c95a 100644
--- a/assets/Script/Map.ts
+++ b/assets/Script/Map.ts
@@ -198,9 +198,11 @@ export default class MapConroler extends cc.Component {
private magicEffectIndex: number = 0;
private magicEffect1: cc.Node = null; // 第一套特效节点
private magicEffect2: cc.Node = null; // 第二套特效节点
- questionArray: any[];
+ questionArray: any[]; //问号块数组
blocks2: any[];
- boom17Blocks: any;
+ boom17Blocks: any; //消除炸弹块数组
+
+ vineBlock: any; //地图藤蔓数组
// ============================================
// Cocos生命周期 - onLoad方法
@@ -252,6 +254,7 @@ export default class MapConroler extends cc.Component {
this.blocks2 = [];
this.adhesiveBlock = []; //粘合快数组
this.boom17Blocks = []; //消除炸弹块数组(type=17)
+ this.vineBlock = []; //地图藤蔓数组
this.barrierBlock = [];
this.teamBlocks = []; //可移动地板块组队
this.leftDoors = []; //左门
diff --git a/assets/Script/Wall.ts b/assets/Script/Wall.ts
index 079dcb9..861b90e 100644
--- a/assets/Script/Wall.ts
+++ b/assets/Script/Wall.ts
@@ -807,56 +807,69 @@ export default class Wall extends cc.Component {
this.rightTween.stop();
this.rightTween = null;
}
- // 如果门要打开,确保scaleX是1;如果要关闭,确保scaleX接近0
- if (this.open == true) {
- if (this.openNode.children[0].scaleX < 1 && this.openNode.children[0].scaleX > 0.01) {
- this.openNode.children[0].scaleX = 1;
- }
- }
- else {
- if (this.openNode.children[0].scaleX < 1 && this.openNode.children[0].scaleX > 0.01) {
- this.openNode.children[0].scaleX = 0.01;
- }
- }
- // 计算目标scale值
- let fill = this.openNode.children[0].scaleX == 1 ? 0.01 : 1;
- if (this.openNode.children[0].scaleX < 0) fill = -fill;
-
- // 播放左边门的动画
- this.leftTween = cc.tween(this.openNode.children[0])
- .to(0.3, { scaleX: this.openNode.children[0].scaleX < 0 ? -fill : fill })
- .call(() => {
- this.leftTween = null; // 动画完成后清除引用
- if (this.open == true)
- this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -0.01 : 0.01;
- else
- this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -1 : 1;
- })
- .start();
-
- // 播放右边门的动画
- this.rightTween = cc.tween(this.openNode.children[1])
- .to(0.3, { scaleX: this.openNode.children[1].scaleX < 0 ? -fill : fill })
- .call(() => {
- this.rightTween = null; // 动画完成后清除引用
- if (this.open == true)
- this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -0.01 : 0.01;
- else
- this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -1 : 1;
- })
- .start();
-
- setTimeout(() => {
+ if (this.openNode) {
+ // 如果门要打开,确保scaleX是1;如果要关闭,确保scaleX接近0
if (this.open == true) {
- this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -0.01 : 0.01;
- this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -0.01 : 0.01;
+ if (this.openNode.children[0].scaleX < 1 && this.openNode.children[0].scaleX > 0.01) {
+ this.openNode.children[0].scaleX = 1;
+ }
}
else {
- this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -1 : 1;
- this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -1 : 1;
+ if (this.openNode.children[0].scaleX < 1 && this.openNode.children[0].scaleX > 0.01) {
+ this.openNode.children[0].scaleX = 0.01;
+ }
}
- }, 3100);
+ // 计算目标scale值
+ let fill = this.openNode.children[0].scaleX == 1 ? 0.01 : 1;
+ if (this.openNode.children[0].scaleX < 0) fill = -fill;
+ // 播放左边门的动画
+ if (this.openNode.children[0]) {
+ this.leftTween = cc.tween(this.openNode.children[0])
+ .to(0.3, { scaleX: this.openNode.children[0].scaleX < 0 ? -fill : fill })
+ .call(() => {
+ this.leftTween = null; // 动画完成后清除引用
+ if (this.open == true)
+ this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -0.01 : 0.01;
+ else
+ this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -1 : 1;
+ })
+ .start();
+ }
+ // 播放右边门的动画
+ if (this.openNode.children[1]) {
+ this.rightTween = cc.tween(this.openNode.children[1])
+ .to(0.3, { scaleX: this.openNode.children[1].scaleX < 0 ? -fill : fill })
+ .call(() => {
+ this.rightTween = null; // 动画完成后清除引用
+ if (this.open == true)
+ this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -0.01 : 0.01;
+ else
+ this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -1 : 1;
+ })
+ .start();
+ }
+
+
+ setTimeout(() => {
+ if (this.openNode) {
+ if (this.open == true) {
+ if (this.openNode.children[0])
+ this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -0.01 : 0.01;
+ if (this.openNode.children[1])
+ this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -0.01 : 0.01;
+ }
+ else {
+ if (this.openNode.children[0])
+ this.openNode.children[0].scaleX = this.openNode.children[0].scaleX < 0 ? -1 : 1;
+ if (this.openNode.children[1])
+ this.openNode.children[1].scaleX = this.openNode.children[1].scaleX < 0 ? -1 : 1;
+ }
+ }
+
+ }, 3100);
+ }
+
}
// ============================================
diff --git a/assets/Script/module/Config/GameConfig.ts b/assets/Script/module/Config/GameConfig.ts
index 8dcd970..10f81fb 100644
--- a/assets/Script/module/Config/GameConfig.ts
+++ b/assets/Script/module/Config/GameConfig.ts
@@ -299,7 +299,7 @@ export class GameConfig {
vibrateOpen: true, //震动
coinnum: 0, //每局的金币数
paid_user: false, //是否是付费用户
- version: "1.9.72", //版本号
+ version: "1.9.73", //版本号
shushu_DistinctId: "", //数数访客ID
shushu_AccountId: "", //数数账号ID
uid: "", //用户和后端唯一id
diff --git a/assets/TextureBlock/block/BlockBtnUI.plist b/assets/TextureBlock/block/BlockBtnUI.plist
index d17db47..649c205 100644
--- a/assets/TextureBlock/block/BlockBtnUI.plist
+++ b/assets/TextureBlock/block/BlockBtnUI.plist
@@ -7,20 +7,7 @@
btn_1.png
frame
- {{877,433},{92,98}}
- offset
- {0,1}
- rotated
-
- sourceColorRect
- {{4,0},{92,98}}
- sourceSize
- {100,100}
-
- btn_10.png
-
- frame
- {{666,512},{92,98}}
+ {{546,829},{92,98}}
offset
{0,1}
rotated
@@ -30,10 +17,23 @@
sourceSize
{100,100}
+ btn_10.png
+
+ frame
+ {{640,779},{92,98}}
+ offset
+ {0,1}
+ rotated
+
+ sourceColorRect
+ {{4,0},{92,98}}
+ sourceSize
+ {100,100}
+
btn_2.png
frame
- {{466,146},{92,96}}
+ {{740,779},{92,96}}
offset
{0,0}
rotated
@@ -46,7 +46,7 @@
btn_3.png
frame
- {{194,516},{94,98}}
+ {{161,737},{94,98}}
offset
{-1,1}
rotated
@@ -59,11 +59,11 @@
btn_4.png
frame
- {{98,516},{94,98}}
+ {{98,863},{94,98}}
offset
{-1,1}
rotated
-
+
sourceColorRect
{{2,0},{94,98}}
sourceSize
@@ -72,7 +72,7 @@
btn_5.png
frame
- {{572,516},{92,98}}
+ {{546,729},{92,98}}
offset
{-1,1}
rotated
@@ -85,7 +85,7 @@
btn_6.png
frame
- {{478,516},{92,98}}
+ {{452,747},{92,98}}
offset
{0,1}
rotated
@@ -98,7 +98,7 @@
btn_7.png
frame
- {{384,516},{92,98}}
+ {{928,332},{92,98}}
offset
{0,1}
rotated
@@ -111,7 +111,7 @@
btn_8.png
frame
- {{2,516},{94,98}}
+ {{2,857},{94,98}}
offset
{-1,1}
rotated
@@ -124,7 +124,7 @@
btn_9.png
frame
- {{290,516},{92,98}}
+ {{928,232},{92,98}}
offset
{0,0}
rotated
@@ -137,7 +137,7 @@
heng1_color10_down.png
frame
- {{527,47},{97,43}}
+ {{843,526},{97,43}}
offset
{0,0}
rotated
@@ -150,11 +150,11 @@
heng1_color10_up.png
frame
- {{929,885},{93,27}}
+ {{991,828},{93,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{93,27}}
sourceSize
@@ -163,7 +163,7 @@
heng1_color1_down.png
frame
- {{482,47},{97,43}}
+ {{841,427},{97,43}}
offset
{0,0}
rotated
@@ -176,7 +176,7 @@
heng1_color1_up.png
frame
- {{929,856},{93,27}}
+ {{896,886},{93,27}}
offset
{0,0}
rotated
@@ -189,7 +189,7 @@
heng1_color2_down.png
frame
- {{437,47},{97,43}}
+ {{470,847},{97,43}}
offset
{0,0}
rotated
@@ -202,7 +202,7 @@
heng1_color2_up.png
frame
- {{929,827},{93,27}}
+ {{896,857},{93,27}}
offset
{0,0}
rotated
@@ -215,7 +215,7 @@
heng1_color3_down.png
frame
- {{398,242},{97,43}}
+ {{342,908},{97,43}}
offset
{0,0}
rotated
@@ -228,7 +228,7 @@
heng1_color3_up.png
frame
- {{929,798},{93,27}}
+ {{896,828},{93,27}}
offset
{0,0}
rotated
@@ -241,7 +241,7 @@
heng1_color4_down.png
frame
- {{299,242},{97,43}}
+ {{243,908},{97,43}}
offset
{0,0}
rotated
@@ -254,11 +254,11 @@
heng1_color4_up.png
frame
- {{929,769},{93,27}}
+ {{983,733},{93,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{93,27}}
sourceSize
@@ -267,7 +267,7 @@
heng1_color5_down.png
frame
- {{200,242},{97,43}}
+ {{342,863},{97,43}}
offset
{0,0}
rotated
@@ -280,7 +280,7 @@
heng1_color5_up.png
frame
- {{929,740},{93,27}}
+ {{917,704},{93,27}}
offset
{0,0}
rotated
@@ -293,7 +293,7 @@
heng1_color6_down.png
frame
- {{101,242},{97,43}}
+ {{243,863},{97,43}}
offset
{0,0}
rotated
@@ -306,7 +306,7 @@
heng1_color6_up.png
frame
- {{929,711},{93,27}}
+ {{917,675},{93,27}}
offset
{0,0}
rotated
@@ -319,11 +319,11 @@
heng1_color7_down.png
frame
- {{2,242},{97,43}}
+ {{198,837},{97,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{97,43}}
sourceSize
@@ -332,7 +332,7 @@
heng1_color7_up.png
frame
- {{929,682},{93,27}}
+ {{917,646},{93,27}}
offset
{0,0}
rotated
@@ -345,7 +345,7 @@
heng1_color8_down.png
frame
- {{778,433},{97,43}}
+ {{739,873},{97,43}}
offset
{0,0}
rotated
@@ -358,7 +358,7 @@
heng1_color8_up.png
frame
- {{929,653},{93,27}}
+ {{917,617},{93,27}}
offset
{0,0}
rotated
@@ -371,7 +371,7 @@
heng1_color9_down.png
frame
- {{679,433},{97,43}}
+ {{640,873},{97,43}}
offset
{0,0}
rotated
@@ -384,7 +384,7 @@
heng1_color9_up.png
frame
- {{929,624},{93,27}}
+ {{544,929},{93,27}}
offset
{0,0}
rotated
@@ -397,11 +397,11 @@
heng2_color10_down.png
frame
- {{272,317},{197,43}}
+ {{330,665},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -410,11 +410,11 @@
heng2_color10_up.png
frame
- {{408,47},{193,27}}
+ {{640,750},{193,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{193,27}}
sourceSize
@@ -423,11 +423,11 @@
heng2_color1_down.png
frame
- {{227,317},{197,43}}
+ {{330,620},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -436,7 +436,7 @@
heng2_color1_up.png
frame
- {{392,287},{193,27}}
+ {{257,834},{193,27}}
offset
{0,0}
rotated
@@ -449,11 +449,11 @@
heng2_color2_down.png
frame
- {{182,317},{197,43}}
+ {{330,575},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -462,11 +462,11 @@
heng2_color2_up.png
frame
- {{379,47},{193,27}}
+ {{257,805},{193,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{193,27}}
sourceSize
@@ -475,11 +475,11 @@
heng2_color3_down.png
frame
- {{137,317},{197,43}}
+ {{330,530},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -488,11 +488,11 @@
heng2_color3_up.png
frame
- {{350,47},{193,27}}
+ {{257,776},{193,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{193,27}}
sourceSize
@@ -501,7 +501,7 @@
heng2_color4_down.png
frame
- {{92,317},{197,43}}
+ {{285,538},{197,43}}
offset
{0,0}
rotated
@@ -514,11 +514,11 @@
heng2_color4_up.png
frame
- {{321,47},{193,27}}
+ {{257,747},{193,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{193,27}}
sourceSize
@@ -527,7 +527,7 @@
heng2_color5_down.png
frame
- {{47,317},{197,43}}
+ {{240,538},{197,43}}
offset
{0,0}
rotated
@@ -540,7 +540,7 @@
heng2_color5_up.png
frame
- {{292,47},{193,27}}
+ {{899,232},{193,27}}
offset
{0,0}
rotated
@@ -553,7 +553,7 @@
heng2_color6_down.png
frame
- {{2,317},{197,43}}
+ {{195,538},{197,43}}
offset
{0,0}
rotated
@@ -566,7 +566,7 @@
heng2_color6_up.png
frame
- {{263,47},{193,27}}
+ {{870,232},{193,27}}
offset
{0,0}
rotated
@@ -579,11 +579,11 @@
heng2_color7_down.png
frame
- {{715,935},{197,43}}
+ {{150,538},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -592,7 +592,7 @@
heng2_color7_up.png
frame
- {{197,287},{193,27}}
+ {{640,721},{193,27}}
offset
{0,0}
rotated
@@ -605,11 +605,11 @@
heng2_color8_down.png
frame
- {{516,939},{197,43}}
+ {{105,542},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -618,7 +618,7 @@
heng2_color8_up.png
frame
- {{2,287},{193,27}}
+ {{627,497},{193,27}}
offset
{0,0}
rotated
@@ -631,11 +631,11 @@
heng2_color9_down.png
frame
- {{317,939},{197,43}}
+ {{947,2},{197,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{197,43}}
sourceSize
@@ -644,7 +644,7 @@
heng2_color9_up.png
frame
- {{679,478},{193,27}}
+ {{627,468},{193,27}}
offset
{0,0}
rotated
@@ -657,11 +657,11 @@
heng3_color10_down.png
frame
- {{182,624},{313,43}}
+ {{2,182},{313,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{313,43}}
sourceSize
@@ -670,7 +670,7 @@
heng3_color10_up.png
frame
- {{679,404},{309,27}}
+ {{316,472},{309,27}}
offset
{0,0}
rotated
@@ -683,11 +683,11 @@
heng3_color1_down.png
frame
- {{137,624},{313,43}}
+ {{632,47},{313,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{313,43}}
sourceSize
@@ -696,7 +696,7 @@
heng3_color1_up.png
frame
- {{679,375},{309,27}}
+ {{316,443},{309,27}}
offset
{0,0}
rotated
@@ -709,11 +709,11 @@
heng3_color2_down.png
frame
- {{92,624},{313,43}}
+ {{317,92},{313,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{313,43}}
sourceSize
@@ -722,7 +722,7 @@
heng3_color2_up.png
frame
- {{679,346},{309,27}}
+ {{316,414},{309,27}}
offset
{0,0}
rotated
@@ -735,11 +735,11 @@
heng3_color3_down.png
frame
- {{47,624},{313,43}}
+ {{2,137},{313,43}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{313,43}}
sourceSize
@@ -748,7 +748,7 @@
heng3_color3_up.png
frame
- {{679,317},{309,27}}
+ {{316,385},{309,27}}
offset
{0,0}
rotated
@@ -761,7 +761,7 @@
heng3_color4_down.png
frame
- {{2,939},{313,43}}
+ {{632,2},{313,43}}
offset
{0,0}
rotated
@@ -774,11 +774,11 @@
heng3_color4_up.png
frame
- {{900,624},{309,27}}
+ {{316,356},{309,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{309,27}}
sourceSize
@@ -787,59 +787,7 @@
heng3_color5_down.png
frame
- {{2,624},{313,43}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{313,43}}
- sourceSize
- {313,43}
-
- heng3_color5_up.png
-
- frame
- {{871,624},{309,27}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{309,27}}
- sourceSize
- {309,27}
-
- heng3_color6_down.png
-
- frame
- {{947,2},{313,43}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{313,43}}
- sourceSize
- {313,43}
-
- heng3_color6_up.png
-
- frame
- {{842,624},{309,27}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{309,27}}
- sourceSize
- {309,27}
-
- heng3_color7_down.png
-
- frame
- {{632,2},{313,43}}
+ {{317,47},{313,43}}
offset
{0,0}
rotated
@@ -849,20 +797,46 @@
sourceSize
{313,43}
- heng3_color7_up.png
+ heng3_color5_up.png
frame
- {{813,624},{309,27}}
+ {{316,327},{309,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{309,27}}
sourceSize
{309,27}
- heng3_color8_down.png
+ heng3_color6_down.png
+
+ frame
+ {{2,92},{313,43}}
+ offset
+ {0,0}
+ rotated
+
+ sourceColorRect
+ {{0,0},{313,43}}
+ sourceSize
+ {313,43}
+
+ heng3_color6_up.png
+
+ frame
+ {{316,298},{309,27}}
+ offset
+ {0,0}
+ rotated
+
+ sourceColorRect
+ {{0,0},{309,27}}
+ sourceSize
+ {309,27}
+
+ heng3_color7_down.png
frame
{{317,2},{313,43}}
@@ -875,14 +849,40 @@
sourceSize
{313,43}
- heng3_color8_up.png
+ heng3_color7_up.png
frame
- {{784,624},{309,27}}
+ {{316,269},{309,27}}
offset
{0,0}
rotated
-
+
+ sourceColorRect
+ {{0,0},{309,27}}
+ sourceSize
+ {309,27}
+
+ heng3_color8_down.png
+
+ frame
+ {{2,47},{313,43}}
+ offset
+ {0,0}
+ rotated
+
+ sourceColorRect
+ {{0,0},{313,43}}
+ sourceSize
+ {313,43}
+
+ heng3_color8_up.png
+
+ frame
+ {{316,240},{309,27}}
+ offset
+ {0,0}
+ rotated
+
sourceColorRect
{{0,0},{309,27}}
sourceSize
@@ -904,11 +904,11 @@
heng3_color9_up.png
frame
- {{755,624},{309,27}}
+ {{317,211},{309,27}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{309,27}}
sourceSize
@@ -917,7 +917,7 @@
shu1_color10_left.png
frame
- {{437,146},{27,93}}
+ {{954,733},{27,93}}
offset
{0,0}
rotated
@@ -930,11 +930,11 @@
shu1_color10_right.png
frame
- {{596,220},{35,97}}
+ {{880,625},{35,97}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,97}}
sourceSize
@@ -943,7 +943,7 @@
shu1_color1_left.png
frame
- {{963,527},{27,93}}
+ {{925,733},{27,93}}
offset
{0,0}
rotated
@@ -956,7 +956,7 @@
shu1_color1_right.png
frame
- {{564,183},{35,97}}
+ {{917,580},{35,97}}
offset
{0,0}
rotated
@@ -969,7 +969,7 @@
shu1_color2_left.png
frame
- {{934,527},{27,93}}
+ {{896,733},{27,93}}
offset
{0,0}
rotated
@@ -982,11 +982,11 @@
shu1_color2_right.png
frame
- {{646,47},{35,97}}
+ {{917,543},{35,97}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,97}}
sourceSize
@@ -995,7 +995,7 @@
shu1_color3_left.png
frame
- {{905,527},{27,93}}
+ {{867,819},{27,93}}
offset
{0,0}
rotated
@@ -1008,7 +1008,7 @@
shu1_color3_right.png
frame
- {{609,47},{35,97}}
+ {{843,625},{35,97}}
offset
{0,0}
rotated
@@ -1021,7 +1021,7 @@
shu1_color4_left.png
frame
- {{876,527},{27,93}}
+ {{867,724},{27,93}}
offset
{0,0}
rotated
@@ -1034,11 +1034,11 @@
shu1_color4_right.png
frame
- {{572,47},{35,97}}
+ {{923,506},{35,97}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,97}}
sourceSize
@@ -1047,7 +1047,7 @@
shu1_color5_left.png
frame
- {{847,507},{27,93}}
+ {{838,819},{27,93}}
offset
{0,0}
rotated
@@ -1060,7 +1060,7 @@
shu1_color5_right.png
frame
- {{564,146},{35,97}}
+ {{923,469},{35,97}}
offset
{0,0}
rotated
@@ -1073,7 +1073,7 @@
shu1_color6_left.png
frame
- {{818,527},{27,93}}
+ {{838,724},{27,93}}
offset
{0,0}
rotated
@@ -1086,7 +1086,7 @@
shu1_color6_right.png
frame
- {{587,277},{35,97}}
+ {{923,432},{35,97}}
offset
{0,0}
rotated
@@ -1099,7 +1099,7 @@
shu1_color7_left.png
frame
- {{789,527},{27,93}}
+ {{888,526},{27,93}}
offset
{0,0}
rotated
@@ -1112,11 +1112,11 @@
shu1_color7_right.png
frame
- {{497,240},{35,97}}
+ {{886,427},{35,97}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,97}}
sourceSize
@@ -1125,7 +1125,7 @@
shu1_color8_left.png
frame
- {{760,527},{27,93}}
+ {{515,847},{27,93}}
offset
{0,0}
rotated
@@ -1138,7 +1138,7 @@
shu1_color8_right.png
frame
- {{914,943},{35,97}}
+ {{739,918},{35,97}}
offset
{0,0}
rotated
@@ -1151,11 +1151,11 @@
shu1_color9_left.png
frame
- {{929,914},{27,93}}
+ {{441,863},{27,93}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{27,93}}
sourceSize
@@ -1164,7 +1164,7 @@
shu1_color9_right.png
frame
- {{831,980},{35,97}}
+ {{640,918},{35,97}}
offset
{0,0}
rotated
@@ -1177,7 +1177,7 @@
shu2_color10_left.png
frame
- {{234,47},{27,193}}
+ {{841,232},{27,193}}
offset
{0,0}
rotated
@@ -1190,7 +1190,7 @@
shu2_color10_right.png
frame
- {{613,317},{35,197}}
+ {{775,269},{35,197}}
offset
{0,0}
rotated
@@ -1203,7 +1203,7 @@
shu2_color1_left.png
frame
- {{205,47},{27,193}}
+ {{814,526},{27,193}}
offset
{0,0}
rotated
@@ -1216,7 +1216,7 @@
shu2_color1_right.png
frame
- {{576,317},{35,197}}
+ {{738,269},{35,197}}
offset
{0,0}
rotated
@@ -1229,7 +1229,7 @@
shu2_color2_left.png
frame
- {{176,47},{27,193}}
+ {{812,269},{27,193}}
offset
{0,0}
rotated
@@ -1242,7 +1242,7 @@
shu2_color2_right.png
frame
- {{539,317},{35,197}}
+ {{701,269},{35,197}}
offset
{0,0}
rotated
@@ -1255,7 +1255,7 @@
shu2_color3_left.png
frame
- {{147,47},{27,193}}
+ {{785,526},{27,193}}
offset
{0,0}
rotated
@@ -1268,7 +1268,7 @@
shu2_color3_right.png
frame
- {{502,317},{35,197}}
+ {{664,269},{35,197}}
offset
{0,0}
rotated
@@ -1281,7 +1281,7 @@
shu2_color4_left.png
frame
- {{118,47},{27,193}}
+ {{756,526},{27,193}}
offset
{0,0}
rotated
@@ -1294,7 +1294,7 @@
shu2_color4_right.png
frame
- {{465,317},{35,197}}
+ {{627,269},{35,197}}
offset
{0,0}
rotated
@@ -1307,7 +1307,7 @@
shu2_color5_left.png
frame
- {{89,47},{27,193}}
+ {{727,526},{27,193}}
offset
{0,0}
rotated
@@ -1320,11 +1320,11 @@
shu2_color5_right.png
frame
- {{428,317},{35,197}}
+ {{628,232},{35,197}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,197}}
sourceSize
@@ -1333,7 +1333,7 @@
shu2_color6_left.png
frame
- {{60,47},{27,193}}
+ {{698,526},{27,193}}
offset
{0,0}
rotated
@@ -1346,7 +1346,7 @@
shu2_color6_right.png
frame
- {{391,317},{35,197}}
+ {{603,530},{35,197}}
offset
{0,0}
rotated
@@ -1359,7 +1359,7 @@
shu2_color7_left.png
frame
- {{31,47},{27,193}}
+ {{669,526},{27,193}}
offset
{0,0}
rotated
@@ -1372,7 +1372,7 @@
shu2_color7_right.png
frame
- {{354,317},{35,197}}
+ {{566,530},{35,197}}
offset
{0,0}
rotated
@@ -1385,7 +1385,7 @@
shu2_color8_left.png
frame
- {{2,47},{27,193}}
+ {{640,526},{27,193}}
offset
{0,0}
rotated
@@ -1398,7 +1398,7 @@
shu2_color8_right.png
frame
- {{317,317},{35,197}}
+ {{529,530},{35,197}}
offset
{0,0}
rotated
@@ -1411,7 +1411,7 @@
shu2_color9_left.png
frame
- {{650,317},{27,193}}
+ {{992,2},{27,193}}
offset
{0,0}
rotated
@@ -1424,7 +1424,7 @@
shu2_color9_right.png
frame
- {{632,984},{35,197}}
+ {{330,710},{35,197}}
offset
{0,0}
rotated
@@ -1437,11 +1437,11 @@
shu3_color10_left.png
frame
- {{726,624},{27,309}}
+ {{632,203},{27,309}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{27,309}}
sourceSize
@@ -1450,11 +1450,11 @@
shu3_color10_right.png
frame
- {{317,984},{35,313}}
+ {{76,227},{35,313}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,313}}
sourceSize
@@ -1463,11 +1463,11 @@
shu3_color1_left.png
frame
- {{697,624},{27,309}}
+ {{316,501},{27,309}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{27,309}}
sourceSize
@@ -1476,7 +1476,7 @@
shu3_color1_right.png
frame
- {{486,624},{35,313}}
+ {{39,542},{35,313}}
offset
{0,0}
rotated
@@ -1489,7 +1489,7 @@
shu3_color2_left.png
frame
- {{668,624},{27,309}}
+ {{287,227},{27,309}}
offset
{0,0}
rotated
@@ -1502,11 +1502,11 @@
shu3_color2_right.png
frame
- {{449,624},{35,313}}
+ {{632,166},{35,313}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,313}}
sourceSize
@@ -1515,7 +1515,7 @@
shu3_color3_left.png
frame
- {{639,624},{27,309}}
+ {{258,227},{27,309}}
offset
{0,0}
rotated
@@ -1528,7 +1528,7 @@
shu3_color3_right.png
frame
- {{412,624},{35,313}}
+ {{39,227},{35,313}}
offset
{0,0}
rotated
@@ -1541,7 +1541,7 @@
shu3_color4_left.png
frame
- {{610,624},{27,309}}
+ {{229,227},{27,309}}
offset
{0,0}
rotated
@@ -1554,7 +1554,7 @@
shu3_color4_right.png
frame
- {{375,624},{35,313}}
+ {{2,542},{35,313}}
offset
{0,0}
rotated
@@ -1567,7 +1567,7 @@
shu3_color5_left.png
frame
- {{581,624},{27,309}}
+ {{200,227},{27,309}}
offset
{0,0}
rotated
@@ -1580,11 +1580,11 @@
shu3_color5_right.png
frame
- {{338,624},{35,313}}
+ {{632,129},{35,313}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,313}}
sourceSize
@@ -1593,7 +1593,7 @@
shu3_color6_left.png
frame
- {{552,624},{27,309}}
+ {{171,227},{27,309}}
offset
{0,0}
rotated
@@ -1606,7 +1606,7 @@
shu3_color6_right.png
frame
- {{2,984},{35,313}}
+ {{317,174},{35,313}}
offset
{0,0}
rotated
@@ -1619,7 +1619,7 @@
shu3_color7_left.png
frame
- {{523,624},{27,309}}
+ {{142,227},{27,309}}
offset
{0,0}
rotated
@@ -1632,7 +1632,7 @@
shu3_color7_right.png
frame
- {{301,624},{35,313}}
+ {{2,227},{35,313}}
offset
{0,0}
rotated
@@ -1645,7 +1645,7 @@
shu3_color8_left.png
frame
- {{992,313},{27,309}}
+ {{113,227},{27,309}}
offset
{0,0}
rotated
@@ -1658,11 +1658,11 @@
shu3_color8_right.png
frame
- {{264,624},{35,313}}
+ {{632,92},{35,313}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,313}}
sourceSize
@@ -1671,7 +1671,7 @@
shu3_color9_left.png
frame
- {{992,2},{27,309}}
+ {{76,542},{27,309}}
offset
{0,0}
rotated
@@ -1684,16 +1684,29 @@
shu3_color9_right.png
frame
- {{227,624},{35,313}}
+ {{317,137},{35,313}}
offset
{0,0}
rotated
-
+
sourceColorRect
{{0,0},{35,313}}
sourceSize
{35,313}
+ vine.png
+
+ frame
+ {{105,741},{120,54}}
+ offset
+ {0,1}
+ rotated
+
+ sourceColorRect
+ {{0,32},{120,54}}
+ sourceSize
+ {120,120}
+
metadata
@@ -1702,9 +1715,9 @@
realTextureFileName
BlockBtnUI.png
size
- {1024,1024}
+ {1022,959}
smartupdate
- $TexturePacker:SmartUpdate:f0e7f6c54357446ff68bcb5322c5712c$
+ $TexturePacker:SmartUpdate:86fbdf5e3cd278c51230176762fa431e$
textureFileName
BlockBtnUI.png
diff --git a/assets/TextureBlock/block/BlockBtnUI.plist.meta b/assets/TextureBlock/block/BlockBtnUI.plist.meta
index 301dad3..599f397 100644
--- a/assets/TextureBlock/block/BlockBtnUI.plist.meta
+++ b/assets/TextureBlock/block/BlockBtnUI.plist.meta
@@ -4,8 +4,8 @@
"importer": "asset",
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"size": {
- "width": 1024,
- "height": 1024
+ "width": 1022,
+ "height": 959
},
"type": "Texture Packer",
"subMetas": {
@@ -16,11 +16,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 1,
- "trimX": 877,
- "trimY": 433,
+ "trimX": 546,
+ "trimY": 829,
"width": 92,
"height": 98,
"rawWidth": 100,
@@ -39,11 +39,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 1,
- "trimX": 666,
- "trimY": 512,
+ "trimX": 640,
+ "trimY": 779,
"width": 92,
"height": 98,
"rawWidth": 100,
@@ -65,8 +65,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 466,
- "trimY": 146,
+ "trimX": 740,
+ "trimY": 779,
"width": 92,
"height": 96,
"rawWidth": 100,
@@ -88,8 +88,8 @@
"rotated": false,
"offsetX": -1,
"offsetY": 1,
- "trimX": 194,
- "trimY": 516,
+ "trimX": 161,
+ "trimY": 737,
"width": 94,
"height": 98,
"rawWidth": 100,
@@ -108,11 +108,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": -1,
"offsetY": 1,
"trimX": 98,
- "trimY": 516,
+ "trimY": 863,
"width": 94,
"height": 98,
"rawWidth": 100,
@@ -134,8 +134,8 @@
"rotated": false,
"offsetX": -1,
"offsetY": 1,
- "trimX": 572,
- "trimY": 516,
+ "trimX": 546,
+ "trimY": 729,
"width": 92,
"height": 98,
"rawWidth": 100,
@@ -157,8 +157,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 1,
- "trimX": 478,
- "trimY": 516,
+ "trimX": 452,
+ "trimY": 747,
"width": 92,
"height": 98,
"rawWidth": 100,
@@ -180,8 +180,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 1,
- "trimX": 384,
- "trimY": 516,
+ "trimX": 928,
+ "trimY": 332,
"width": 92,
"height": 98,
"rawWidth": 100,
@@ -204,7 +204,7 @@
"offsetX": -1,
"offsetY": 1,
"trimX": 2,
- "trimY": 516,
+ "trimY": 857,
"width": 94,
"height": 98,
"rawWidth": 100,
@@ -226,8 +226,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 290,
- "trimY": 516,
+ "trimX": 928,
+ "trimY": 232,
"width": 92,
"height": 98,
"rawWidth": 100,
@@ -249,8 +249,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 527,
- "trimY": 47,
+ "trimX": 843,
+ "trimY": 526,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -269,11 +269,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 885,
+ "trimX": 991,
+ "trimY": 828,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -295,8 +295,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 482,
- "trimY": 47,
+ "trimX": 841,
+ "trimY": 427,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -318,8 +318,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 856,
+ "trimX": 896,
+ "trimY": 886,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -341,8 +341,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 437,
- "trimY": 47,
+ "trimX": 470,
+ "trimY": 847,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -364,8 +364,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 827,
+ "trimX": 896,
+ "trimY": 857,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -387,8 +387,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 398,
- "trimY": 242,
+ "trimX": 342,
+ "trimY": 908,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -410,8 +410,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 798,
+ "trimX": 896,
+ "trimY": 828,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -433,8 +433,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 299,
- "trimY": 242,
+ "trimX": 243,
+ "trimY": 908,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -453,11 +453,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 769,
+ "trimX": 983,
+ "trimY": 733,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -479,8 +479,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 200,
- "trimY": 242,
+ "trimX": 342,
+ "trimY": 863,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -502,8 +502,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 740,
+ "trimX": 917,
+ "trimY": 704,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -525,8 +525,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 101,
- "trimY": 242,
+ "trimX": 243,
+ "trimY": 863,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -548,8 +548,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 711,
+ "trimX": 917,
+ "trimY": 675,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -568,11 +568,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 242,
+ "trimX": 198,
+ "trimY": 837,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -594,8 +594,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 682,
+ "trimX": 917,
+ "trimY": 646,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -617,8 +617,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 778,
- "trimY": 433,
+ "trimX": 739,
+ "trimY": 873,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -640,8 +640,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 653,
+ "trimX": 917,
+ "trimY": 617,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -663,8 +663,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 679,
- "trimY": 433,
+ "trimX": 640,
+ "trimY": 873,
"width": 97,
"height": 43,
"rawWidth": 97,
@@ -686,8 +686,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 624,
+ "trimX": 544,
+ "trimY": 929,
"width": 93,
"height": 27,
"rawWidth": 93,
@@ -706,11 +706,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 272,
- "trimY": 317,
+ "trimX": 330,
+ "trimY": 665,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -729,11 +729,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 408,
- "trimY": 47,
+ "trimX": 640,
+ "trimY": 750,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -752,11 +752,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 227,
- "trimY": 317,
+ "trimX": 330,
+ "trimY": 620,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -778,8 +778,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 392,
- "trimY": 287,
+ "trimX": 257,
+ "trimY": 834,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -798,11 +798,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 182,
- "trimY": 317,
+ "trimX": 330,
+ "trimY": 575,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -821,11 +821,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 379,
- "trimY": 47,
+ "trimX": 257,
+ "trimY": 805,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -844,11 +844,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 137,
- "trimY": 317,
+ "trimX": 330,
+ "trimY": 530,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -867,11 +867,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 350,
- "trimY": 47,
+ "trimX": 257,
+ "trimY": 776,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -893,8 +893,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 92,
- "trimY": 317,
+ "trimX": 285,
+ "trimY": 538,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -913,11 +913,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 321,
- "trimY": 47,
+ "trimX": 257,
+ "trimY": 747,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -939,8 +939,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 47,
- "trimY": 317,
+ "trimX": 240,
+ "trimY": 538,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -962,8 +962,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 292,
- "trimY": 47,
+ "trimX": 899,
+ "trimY": 232,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -985,8 +985,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 317,
+ "trimX": 195,
+ "trimY": 538,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -1008,8 +1008,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 263,
- "trimY": 47,
+ "trimX": 870,
+ "trimY": 232,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -1028,11 +1028,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 715,
- "trimY": 935,
+ "trimX": 150,
+ "trimY": 538,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -1054,8 +1054,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 197,
- "trimY": 287,
+ "trimX": 640,
+ "trimY": 721,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -1074,11 +1074,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 516,
- "trimY": 939,
+ "trimX": 105,
+ "trimY": 542,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -1100,8 +1100,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 287,
+ "trimX": 627,
+ "trimY": 497,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -1120,11 +1120,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 939,
+ "trimX": 947,
+ "trimY": 2,
"width": 197,
"height": 43,
"rawWidth": 197,
@@ -1146,8 +1146,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 679,
- "trimY": 478,
+ "trimX": 627,
+ "trimY": 468,
"width": 193,
"height": 27,
"rawWidth": 193,
@@ -1166,11 +1166,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 182,
- "trimY": 624,
+ "trimX": 2,
+ "trimY": 182,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1192,8 +1192,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 679,
- "trimY": 404,
+ "trimX": 316,
+ "trimY": 472,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1212,11 +1212,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 137,
- "trimY": 624,
+ "trimX": 632,
+ "trimY": 47,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1238,8 +1238,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 679,
- "trimY": 375,
+ "trimX": 316,
+ "trimY": 443,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1258,11 +1258,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 92,
- "trimY": 624,
+ "trimX": 317,
+ "trimY": 92,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1284,8 +1284,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 679,
- "trimY": 346,
+ "trimX": 316,
+ "trimY": 414,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1304,11 +1304,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 47,
- "trimY": 624,
+ "trimX": 2,
+ "trimY": 137,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1330,8 +1330,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 679,
- "trimY": 317,
+ "trimX": 316,
+ "trimY": 385,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1353,8 +1353,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 939,
+ "trimX": 632,
+ "trimY": 2,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1373,11 +1373,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 900,
- "trimY": 624,
+ "trimX": 316,
+ "trimY": 356,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1396,11 +1396,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 624,
+ "trimX": 317,
+ "trimY": 47,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1419,11 +1419,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 871,
- "trimY": 624,
+ "trimX": 316,
+ "trimY": 327,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1442,11 +1442,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 947,
- "trimY": 2,
+ "trimX": 2,
+ "trimY": 92,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1465,11 +1465,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 842,
- "trimY": 624,
+ "trimX": 316,
+ "trimY": 298,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1491,7 +1491,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 632,
+ "trimX": 317,
"trimY": 2,
"width": 313,
"height": 43,
@@ -1511,11 +1511,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 813,
- "trimY": 624,
+ "trimX": 316,
+ "trimY": 269,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1537,8 +1537,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 2,
+ "trimX": 2,
+ "trimY": 47,
"width": 313,
"height": 43,
"rawWidth": 313,
@@ -1557,11 +1557,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 784,
- "trimY": 624,
+ "trimX": 316,
+ "trimY": 240,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1603,11 +1603,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 755,
- "trimY": 624,
+ "trimX": 317,
+ "trimY": 211,
"width": 309,
"height": 27,
"rawWidth": 309,
@@ -1629,8 +1629,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 437,
- "trimY": 146,
+ "trimX": 954,
+ "trimY": 733,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1649,11 +1649,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 596,
- "trimY": 220,
+ "trimX": 880,
+ "trimY": 625,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1675,8 +1675,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 963,
- "trimY": 527,
+ "trimX": 925,
+ "trimY": 733,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1698,8 +1698,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 564,
- "trimY": 183,
+ "trimX": 917,
+ "trimY": 580,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1721,8 +1721,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 934,
- "trimY": 527,
+ "trimX": 896,
+ "trimY": 733,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1741,11 +1741,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 646,
- "trimY": 47,
+ "trimX": 917,
+ "trimY": 543,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1767,8 +1767,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 905,
- "trimY": 527,
+ "trimX": 867,
+ "trimY": 819,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1790,8 +1790,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 609,
- "trimY": 47,
+ "trimX": 843,
+ "trimY": 625,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1813,8 +1813,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 876,
- "trimY": 527,
+ "trimX": 867,
+ "trimY": 724,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1833,11 +1833,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 572,
- "trimY": 47,
+ "trimX": 923,
+ "trimY": 506,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1859,8 +1859,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 847,
- "trimY": 507,
+ "trimX": 838,
+ "trimY": 819,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1882,8 +1882,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 564,
- "trimY": 146,
+ "trimX": 923,
+ "trimY": 469,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1905,8 +1905,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 818,
- "trimY": 527,
+ "trimX": 838,
+ "trimY": 724,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1928,8 +1928,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 587,
- "trimY": 277,
+ "trimX": 923,
+ "trimY": 432,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1951,8 +1951,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 789,
- "trimY": 527,
+ "trimX": 888,
+ "trimY": 526,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -1971,11 +1971,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 497,
- "trimY": 240,
+ "trimX": 886,
+ "trimY": 427,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -1997,8 +1997,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 760,
- "trimY": 527,
+ "trimX": 515,
+ "trimY": 847,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -2020,8 +2020,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 914,
- "trimY": 943,
+ "trimX": 739,
+ "trimY": 918,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -2040,11 +2040,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 929,
- "trimY": 914,
+ "trimX": 441,
+ "trimY": 863,
"width": 27,
"height": 93,
"rawWidth": 27,
@@ -2066,8 +2066,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 831,
- "trimY": 980,
+ "trimX": 640,
+ "trimY": 918,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -2089,8 +2089,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 234,
- "trimY": 47,
+ "trimX": 841,
+ "trimY": 232,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2112,8 +2112,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 613,
- "trimY": 317,
+ "trimX": 775,
+ "trimY": 269,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2135,8 +2135,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 205,
- "trimY": 47,
+ "trimX": 814,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2158,8 +2158,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 576,
- "trimY": 317,
+ "trimX": 738,
+ "trimY": 269,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2181,8 +2181,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 176,
- "trimY": 47,
+ "trimX": 812,
+ "trimY": 269,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2204,8 +2204,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 539,
- "trimY": 317,
+ "trimX": 701,
+ "trimY": 269,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2227,8 +2227,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 147,
- "trimY": 47,
+ "trimX": 785,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2250,8 +2250,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 502,
- "trimY": 317,
+ "trimX": 664,
+ "trimY": 269,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2273,8 +2273,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 118,
- "trimY": 47,
+ "trimX": 756,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2296,8 +2296,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 465,
- "trimY": 317,
+ "trimX": 627,
+ "trimY": 269,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2319,8 +2319,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 89,
- "trimY": 47,
+ "trimX": 727,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2339,11 +2339,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 428,
- "trimY": 317,
+ "trimX": 628,
+ "trimY": 232,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2365,8 +2365,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 60,
- "trimY": 47,
+ "trimX": 698,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2388,8 +2388,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 391,
- "trimY": 317,
+ "trimX": 603,
+ "trimY": 530,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2411,8 +2411,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 31,
- "trimY": 47,
+ "trimX": 669,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2434,8 +2434,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 354,
- "trimY": 317,
+ "trimX": 566,
+ "trimY": 530,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2457,8 +2457,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 47,
+ "trimX": 640,
+ "trimY": 526,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2480,8 +2480,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 317,
+ "trimX": 529,
+ "trimY": 530,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2503,8 +2503,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 650,
- "trimY": 317,
+ "trimX": 992,
+ "trimY": 2,
"width": 27,
"height": 193,
"rawWidth": 27,
@@ -2526,8 +2526,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 632,
- "trimY": 984,
+ "trimX": 330,
+ "trimY": 710,
"width": 35,
"height": 197,
"rawWidth": 35,
@@ -2546,11 +2546,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 726,
- "trimY": 624,
+ "trimX": 632,
+ "trimY": 203,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2569,11 +2569,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": true,
+ "rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 317,
- "trimY": 984,
+ "trimX": 76,
+ "trimY": 227,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2592,11 +2592,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 697,
- "trimY": 624,
+ "trimX": 316,
+ "trimY": 501,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2618,8 +2618,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 486,
- "trimY": 624,
+ "trimX": 39,
+ "trimY": 542,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2641,8 +2641,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 668,
- "trimY": 624,
+ "trimX": 287,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2661,11 +2661,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 449,
- "trimY": 624,
+ "trimX": 632,
+ "trimY": 166,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2687,8 +2687,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 639,
- "trimY": 624,
+ "trimX": 258,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2710,8 +2710,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 412,
- "trimY": 624,
+ "trimX": 39,
+ "trimY": 227,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2733,8 +2733,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 610,
- "trimY": 624,
+ "trimX": 229,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2756,8 +2756,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 375,
- "trimY": 624,
+ "trimX": 2,
+ "trimY": 542,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2779,8 +2779,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 581,
- "trimY": 624,
+ "trimX": 200,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2799,11 +2799,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 338,
- "trimY": 624,
+ "trimX": 632,
+ "trimY": 129,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2825,8 +2825,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 552,
- "trimY": 624,
+ "trimX": 171,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2848,8 +2848,8 @@
"rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 2,
- "trimY": 984,
+ "trimX": 317,
+ "trimY": 174,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2871,8 +2871,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 523,
- "trimY": 624,
+ "trimX": 142,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2894,8 +2894,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 301,
- "trimY": 624,
+ "trimX": 2,
+ "trimY": 227,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2917,8 +2917,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 992,
- "trimY": 313,
+ "trimX": 113,
+ "trimY": 227,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2937,11 +2937,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 264,
- "trimY": 624,
+ "trimX": 632,
+ "trimY": 92,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2963,8 +2963,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 992,
- "trimY": 2,
+ "trimX": 76,
+ "trimY": 542,
"width": 27,
"height": 309,
"rawWidth": 27,
@@ -2983,11 +2983,11 @@
"rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 227,
- "trimY": 624,
+ "trimX": 317,
+ "trimY": 137,
"width": 35,
"height": 313,
"rawWidth": 35,
@@ -2998,6 +2998,29 @@
"borderRight": 0,
"spriteType": "normal",
"subMetas": {}
+ },
+ "vine.png": {
+ "ver": "1.0.6",
+ "uuid": "5f9cc6c7-aa26-4eca-86f1-09ac04f8bfbb",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "15ba025f-7e79-4cf3-a539-ba3fe3dcd279",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": 0,
+ "offsetY": 1,
+ "trimX": 105,
+ "trimY": 741,
+ "width": 120,
+ "height": 54,
+ "rawWidth": 120,
+ "rawHeight": 120,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
}
}
}
\ No newline at end of file
diff --git a/assets/TextureBlock/block/BlockBtnUI.png b/assets/TextureBlock/block/BlockBtnUI.png
index 492c8cf..89ecc58 100644
Binary files a/assets/TextureBlock/block/BlockBtnUI.png and b/assets/TextureBlock/block/BlockBtnUI.png differ
diff --git a/assets/TextureBlock/block/BlockBtnUI.png.meta b/assets/TextureBlock/block/BlockBtnUI.png.meta
index e9cabf0..ef658a2 100644
--- a/assets/TextureBlock/block/BlockBtnUI.png.meta
+++ b/assets/TextureBlock/block/BlockBtnUI.png.meta
@@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
- "width": 1024,
- "height": 1024,
+ "width": 1022,
+ "height": 959,
"platformSettings": {},
"subMetas": {}
}
\ No newline at end of file
diff --git a/assets/custom/Json/level1621.json b/assets/custom/Json/level1621.json
new file mode 100644
index 0000000..64e45ef
--- /dev/null
+++ b/assets/custom/Json/level1621.json
@@ -0,0 +1,173 @@
+{
+ "LEVEL_INFO": [
+ {
+ "risefall": [
+ {
+ "x": 1,
+ "y": 1,
+ "vine": 5
+ },
+ {
+ "x": 2,
+ "y": 1,
+ "vine": 4
+ },
+ {
+ "x": 3,
+ "y": 1,
+ "vine": 3
+ },
+ {
+ "x": 3,
+ "y": 2,
+ "vine": 2
+ },
+ {
+ "x": 3,
+ "y": 3,
+ "vine": 1
+ },
+ {
+ "x": 1,
+ "y": 7,
+ "vine": 7
+ },
+ {
+ "x": 2,
+ "y": 7,
+ "vine": 6
+ },
+ {
+ "x": 3,
+ "y": 7,
+ "vine": 5
+ },
+ {
+ "x": 3,
+ "y": 8,
+ "vine": 4
+ },
+ {
+ "x": 4,
+ "y": 8,
+ "vine": 3
+ },
+ {
+ "x": 5,
+ "y": 8,
+ "vine": 2
+ },
+ {
+ "x": 6,
+ "y": 8,
+ "vine": 1
+ }
+ ],
+ "id": "1621",
+ "map": [
+ 8,
+ 10
+ ],
+ "time": 80,
+ "gap": []
+ }
+ ],
+ "BLOCK_INFO": [
+ [
+ {
+ "block": 1,
+ "color": 1,
+ "type": 0,
+ "position": {
+ "x": -120,
+ "y": 120,
+ "z": 0
+ },
+ "id": 210
+ },
+ {
+ "block": 2,
+ "color": 1,
+ "type": 0,
+ "position": {
+ "x": 360,
+ "y": -360,
+ "z": 0
+ },
+ "id": 220
+ },
+ {
+ "block": 0,
+ "color": 1,
+ "type": 0,
+ "position": {
+ "x": 240,
+ "y": 240,
+ "z": 0
+ },
+ "id": 230
+ },
+ {
+ "block": 20,
+ "color": 1,
+ "type": 0,
+ "position": {
+ "x": 240,
+ "y": -480,
+ "z": 0
+ },
+ "id": 240
+ },
+ {
+ "block": 1,
+ "color": 1,
+ "type": 0,
+ "position": {
+ "x": -120,
+ "y": -240,
+ "z": 0
+ },
+ "id": 250
+ }
+ ]
+ ],
+ "WALL_INFO": [
+ [
+ {
+ "id": 1622,
+ "num": 24,
+ "color": 1,
+ "special": 0,
+ "length": 3
+ },
+ {
+ "id": 1623,
+ "num": 25,
+ "color": 1,
+ "special": 0,
+ "length": 0
+ },
+ {
+ "id": 1624,
+ "num": 26,
+ "color": 1,
+ "special": 0,
+ "length": 0
+ },
+ {
+ "id": 1625,
+ "num": 3,
+ "color": 1,
+ "special": 0,
+ "length": 2
+ },
+ {
+ "id": 1626,
+ "num": 4,
+ "color": 1,
+ "special": 0,
+ "length": 0
+ }
+ ]
+ ]
+}
\ No newline at end of file
diff --git a/assets/custom/Json/level1621.json.meta b/assets/custom/Json/level1621.json.meta
new file mode 100644
index 0000000..72116f3
--- /dev/null
+++ b/assets/custom/Json/level1621.json.meta
@@ -0,0 +1,6 @@
+{
+ "ver": "1.0.2",
+ "uuid": "5c409b1b-0f3c-4768-9f06-73f10c119e1a",
+ "importer": "json",
+ "subMetas": {}
+}
\ No newline at end of file