修改UI初版

This commit is contained in:
computer\尼卡 2025-07-02 18:06:27 +08:00
parent c473c1e998
commit 2360ff8b48
16 changed files with 1549 additions and 653 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2030,10 +2030,12 @@
}, },
{ {
"__type__": "cc.ClickEvent", "__type__": "cc.ClickEvent",
"target": null, "target": {
"__id__": 4
},
"component": "", "component": "",
"_componentId": "1dc93b4fehOrpGgTkihBH4g", "_componentId": "1dc93b4fehOrpGgTkihBH4g",
"handler": "openStamina", "handler": "openHeath",
"customEventData": "" "customEventData": ""
}, },
{ {
@ -5621,7 +5623,7 @@
"_N$isChecked": false, "_N$isChecked": false,
"toggleGroup": null, "toggleGroup": null,
"checkMark": { "checkMark": {
"__id__": 111 "__id__": 109
}, },
"checkEvents": [ "checkEvents": [
{ {

View File

@ -105,8 +105,8 @@ export default class NewClass extends cc.Component {
} }
//打开heath弹窗 // //打开heath弹窗
this.openHeath(); // this.openHeath();
} }

View File

@ -8,6 +8,7 @@
import GameManager from "./GameManager"; import GameManager from "./GameManager";
import { LQCollide } from "./lq_collide_system/lq_collide"; import { LQCollide } from "./lq_collide_system/lq_collide";
import NumberToImage from "./NumberToImage"; import NumberToImage from "./NumberToImage";
import SceneManager from "./SceneManager";
import { MiniGameSdk } from "./Sdk/MiniGameSdk"; import { MiniGameSdk } from "./Sdk/MiniGameSdk";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ -183,6 +184,7 @@ export default class MapConroler extends cc.Component {
this.blocks[i].getChildByName("boom").getComponent("Boom").startBoom(); this.blocks[i].getChildByName("boom").getComponent("Boom").startBoom();
} }
} }
} }
} }

View File

@ -34,6 +34,13 @@ export default class SceneManager extends cc.Component {
@property(cc.Node) @property(cc.Node)
level: cc.Node = null; level: cc.Node = null;
//time 弹窗的金币数
@property(cc.Node)
timeCoin: cc.Node = null;
//赢了win金币数
@property(cc.Node)
winCoin: cc.Node = null;
@property({ type: [cc.Prefab], tooltip: "方块数组" }) @property({ type: [cc.Prefab], tooltip: "方块数组" })
Block_Array: Array<cc.Prefab> = []; Block_Array: Array<cc.Prefab> = [];
@ -69,6 +76,16 @@ export default class SceneManager extends cc.Component {
}, 1000); }, 1000);
} }
//更新关卡获得金币
updateWinCoin() {
console.log("更新关卡获得金币");
let winCoin = cc.fx.GameConfig.GM_INFO.coin;
if (winCoin > 0) {
NumberToImage.numberToImageNodes(winCoin, 50, 8, "time_", this.winCoin, false);
} else {
this.winCoin.active = false;
}
}
changeBg() { changeBg() {
let number = Math.floor(Math.random() * 8) + 1; let number = Math.floor(Math.random() * 8) + 1;
@ -80,7 +97,10 @@ export default class SceneManager extends cc.Component {
} }
this.node.getChildByName("Game").getChildByName("bg").getComponent(cc.Sprite).spriteFrame = spriteFrame; this.node.getChildByName("Game").getChildByName("bg").getComponent(cc.Sprite).spriteFrame = spriteFrame;
}) })
NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 25, 15, "level_", this.level, false);
NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 25, 15, "level_", this.level, false);
//time金币数量
NumberToImage.numberToImageNodes(1000, 25, 15, "button_", this.timeCoin, false);
} }
loadParticleEffects() { loadParticleEffects() {

View File

@ -89,7 +89,7 @@ export class GameConfig {
musicOpen: boolean; //音乐 musicOpen: boolean; //音乐
effectOpen: boolean; //音效 effectOpen: boolean; //音效
vibrateOpen: boolean; vibrateOpen: boolean;
health: number; //体力值 coinnum: number; //每局的金币数
}; };
//游戏内信息 //游戏内信息
@ -220,7 +220,7 @@ export class GameConfig {
musicOpen: true, //音乐 musicOpen: true, //音乐
effectOpen: true, //音效 effectOpen: true, //音效
vibrateOpen: true, //震动 vibrateOpen: true, //震动
health: 0, //体力值 coinnum: 0, //每局的金币数
}; };
// this.setCode(this.getKey("scode")); // this.setCode(this.getKey("scode"));
// this.GM_INFO.level = 0; // this.GM_INFO.level = 0;

View File

@ -1,4 +1,5 @@
import SceneManager from "../../SceneManager";
import { MiniGameSdk } from "../../Sdk/MiniGameSdk"; import { MiniGameSdk } from "../../Sdk/MiniGameSdk";
//@ts-ignore //@ts-ignore
//最大工具类 各种公共方法,以及处理上传,获取后端接口数据 //最大工具类 各种公共方法,以及处理上传,获取后端接口数据
@ -363,6 +364,20 @@ var GameTool = {
//改变金币信息 //改变金币信息
changeCoin(coin){ changeCoin(coin){
console.log("changeCoin",coin); console.log("changeCoin",coin);
//每局的金币数
cc.fx.GameConfig.GM_INFO.coin = coin;
const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
if (winCOIN) {
const wincoin = winCOIN.getComponent(SceneManager);
if (wincoin) {
wincoin.updateWinCoin();
} else {
console.warn("JiaZai 组件未找到");
}
} else {
console.warn("JiaZai 节点未找到");
}
if(coin == undefined) return; if(coin == undefined) return;
if(coin < 0 && cc.fx.GameConfig.GM_INFO.coin < -coin){ if(coin < 0 && cc.fx.GameConfig.GM_INFO.coin < -coin){
// console.log("金币不足",cc.fx.GameConfig.GM_INFO.coin,-coin); // console.log("金币不足",cc.fx.GameConfig.GM_INFO.coin,-coin);

View File

@ -108,9 +108,9 @@ export default class setUi extends cc.Component {
console.log("震动状态", this.vibrateState); console.log("震动状态", this.vibrateState);
} }
syncToggleState() { syncToggleState() {
this.music.getComponent(cc.Toggle).isChecked = !this.musicState; this.music.getComponent(cc.Toggle).isChecked = this.musicState;
this.effect.getComponent(cc.Toggle).isChecked = !this.effectState; this.effect.getComponent(cc.Toggle).isChecked = this.effectState;
this.vibrate.getComponent(cc.Toggle).isChecked = !this.vibrateState; this.vibrate.getComponent(cc.Toggle).isChecked = this.vibrateState;
} }
//关闭ui //关闭ui

BIN
assets/UI/UI/pop/20miao.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -1,6 +1,6 @@
{ {
"ver": "2.3.7", "ver": "2.3.7",
"uuid": "02fbadbe-ea3f-41a7-a169-04e86e8971d7", "uuid": "6c40cbf2-4b4a-4820-ad72-7d6adbb535b6",
"importer": "texture", "importer": "texture",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
@ -8,15 +8,15 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 561, "width": 255,
"height": 54, "height": 70,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"huifuyidian": { "20miao": {
"ver": "1.0.6", "ver": "1.0.6",
"uuid": "d89cb39b-0ec8-43c3-bb1a-f1e081938454", "uuid": "f8aa8e26-7f6f-4e4f-99ff-ae11c9245071",
"importer": "sprite-frame", "importer": "sprite-frame",
"rawTextureUuid": "02fbadbe-ea3f-41a7-a169-04e86e8971d7", "rawTextureUuid": "6c40cbf2-4b4a-4820-ad72-7d6adbb535b6",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
@ -24,10 +24,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 561, "width": 255,
"height": 54, "height": 70,
"rawWidth": 561, "rawWidth": 255,
"rawHeight": 54, "rawHeight": 70,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,

View File

@ -15,9 +15,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{281,71}</string> <string>{281,71}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{593,1018},{281,71}}</string> <string>{{1825,240},{281,71}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>add.png</key> <key>add.png</key>
<dict> <dict>
@ -30,9 +30,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{76,82}</string> <string>{76,82}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1524,1433},{76,82}}</string> <string>{{1678,879},{76,82}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>anniu.png</key> <key>anniu.png</key>
<dict> <dict>
@ -45,7 +45,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{636,174}</string> <string>{636,174}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{143,780},{636,174}}</string> <string>{{179,206},{636,174}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -60,7 +60,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{348,66}</string> <string>{348,66}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,788},{348,66}}</string> <string>{{1439,520},{348,66}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -75,9 +75,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{154,172}</string> <string>{154,172}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1573,243},{154,172}}</string> <string>{{805,787},{154,172}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>chubuqule.png</key> <key>chubuqule.png</key>
<dict> <dict>
@ -90,9 +90,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{281,64}</string> <string>{281,64}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{756,1157},{281,64}}</string> <string>{{916,961},{281,64}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>chuizi.png</key> <key>chuizi.png</key>
<dict> <dict>
@ -105,9 +105,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{316,316}</string> <string>{316,316}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{604,201},{306,316}}</string> <string>{{183,990},{306,316}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>chuizis.png</key> <key>chuizis.png</key>
<dict> <dict>
@ -120,7 +120,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{150,150}</string> <string>{150,150}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{409,1388},{126,132}}</string> <string>{{1522,999},{126,132}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -135,7 +135,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{284,284}</string> <string>{284,284}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{896,805},{238,284}}</string> <string>{{1789,523},{238,284}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -150,7 +150,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{80,100}</string> <string>{80,100}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1602,1433},{80,100}}</string> <string>{{810,1227},{80,100}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -165,7 +165,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{264,104}</string> <string>{264,104}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{143,1418},{264,104}}</string> <string>{{961,845},{264,104}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -180,7 +180,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{66,66}</string> <string>{66,66}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1479,889},{66,66}}</string> <string>{{912,1244},{66,66}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -195,7 +195,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{312,62}</string> <string>{312,62}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1545,1119},{312,62}}</string> <string>{{1,1010},{312,62}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -210,9 +210,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{70,71}</string> <string>{70,71}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1041,1091},{70,71}}</string> <string>{{1952,1229},{70,71}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>coins4.png</key> <key>coins4.png</key>
<dict> <dict>
@ -225,7 +225,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{171,191}</string> <string>{171,191}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1551,711},{171,191}}</string> <string>{{982,1151},{171,191}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -240,7 +240,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{234,36}</string> <string>{234,36}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1098,201},{234,36}}</string> <string>{{1964,114},{234,36}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -255,7 +255,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{314,96}</string> <string>{314,96}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1381,1136},{314,96}}</string> <string>{{610,990},{314,96}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -270,7 +270,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{802,118}</string> <string>{802,118}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,1},{802,118}}</string> <string>{{1,206},{802,118}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -285,7 +285,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{616,100}</string> <string>{616,100}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{495,749},{616,96}}</string> <string>{{707,206},{616,96}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -300,7 +300,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{322,64}</string> <string>{322,64}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1479,1109},{322,64}}</string> <string>{{1898,181},{322,64}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -315,9 +315,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{116,122}</string> <string>{116,122}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1615,125},{116,122}}</string> <string>{{1727,1105},{116,122}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>effects.png</key> <key>effects.png</key>
<dict> <dict>
@ -330,7 +330,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{116,122}</string> <string>{116,122}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{756,1223},{116,122}}</string> <string>{{1845,1105},{116,122}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -345,7 +345,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{144,164}</string> <string>{144,164}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{920,513},{144,164}}</string> <string>{{615,844},{144,164}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -360,7 +360,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{434,144}</string> <string>{434,144}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,224},{434,144}}</string> <string>{{961,553},{434,144}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -375,7 +375,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{434,144}</string> <string>{434,144}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,370},{434,144}}</string> <string>{{179,844},{434,144}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -390,9 +390,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{747,203}</string> <string>{747,203}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{223,1},{747,203}}</string> <string>{{1,1},{747,203}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>goon.png</key> <key>goon.png</key>
<dict> <dict>
@ -405,7 +405,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{476,164}</string> <string>{476,164}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,58},{476,164}}</string> <string>{{961,387},{476,164}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -420,7 +420,22 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{412,65}</string> <string>{412,65}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,662},{412,65}}</string> <string>{{1529,114},{412,65}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>huifuyidian.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{561,54}</string>
<key>spriteSourceSize</key>
<string>{561,54}</string>
<key>textureRect</key>
<string>{{1444,58},{561,54}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -435,7 +450,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{316,316}</string> <string>{316,316}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,1136},{242,294}}</string> <string>{{1773,809},{242,294}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -450,9 +465,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{150,150}</string> <string>{150,150}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{462,639},{108,130}}</string> <string>{{1617,1133},{108,130}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>jianshao.png</key> <key>jianshao.png</key>
<dict> <dict>
@ -465,7 +480,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,57}</string> <string>{363,57}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,729},{363,57}}</string> <string>{{1529,181},{363,57}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -480,7 +495,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{476,164}</string> <string>{476,164}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,58},{476,164}}</string> <string>{{961,387},{476,164}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -495,9 +510,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{154,172}</string> <string>{154,172}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1573,399},{154,172}}</string> <string>{{1175,1147},{154,172}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>lockzi.png</key> <key>lockzi.png</key>
<dict> <dict>
@ -510,7 +525,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{109,32}</string> <string>{109,32}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{428,639},{109,32}}</string> <string>{{1439,387},{109,32}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -525,7 +540,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{158,44}</string> <string>{158,44}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1502,729},{158,44}}</string> <string>{{1964,350},{158,44}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -540,7 +555,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{582,55}</string> <string>{582,55}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,1},{582,55}}</string> <string>{{1444,1},{582,55}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -555,7 +570,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{636,174}</string> <string>{636,174}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{319,750},{636,174}}</string> <string>{{355,206},{636,174}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -570,9 +585,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{189,43}</string> <string>{189,43}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1548,884},{189,43}}</string> <string>{{1572,1133},{189,43}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>nuliyixia.png</key> <key>nuliyixia.png</key>
<dict> <dict>
@ -585,7 +600,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{766,56}</string> <string>{766,56}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{165,1},{766,56}}</string> <string>{{121,206},{766,56}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -600,7 +615,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{154,172}</string> <string>{154,172}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1573,555},{154,172}}</string> <string>{{1348,999},{154,172}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -615,7 +630,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{264,104}</string> <string>{264,104}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{593,1091},{264,104}}</string> <string>{{810,961},{264,104}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -630,7 +645,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{314,96}</string> <string>{314,96}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,1499},{3,3}}</string> <string>{{750,187},{3,3}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -645,7 +660,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{434,144}</string> <string>{434,144}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,516},{434,144}}</string> <string>{{961,699},{434,144}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -660,7 +675,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{154,174}</string> <string>{154,174}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{922,201},{154,174}}</string> <string>{{1172,991},{154,174}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -675,7 +690,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{283,64}</string> <string>{283,64}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{756,1091},{283,64}}</string> <string>{{1393,876},{283,64}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -690,7 +705,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{316,316}</string> <string>{316,316}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{594,730},{286,300}}</string> <string>{{1397,588},{286,300}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -705,7 +720,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{150,150}</string> <string>{150,150}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{874,1223},{116,120}}</string> <string>{{1650,957},{116,120}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -720,7 +735,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{520,198}</string> <string>{520,198}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{604,1},{520,198}}</string> <string>{{961,187},{520,198}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -735,7 +750,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{154,172}</string> <string>{154,172}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{922,357},{154,172}}</string> <string>{{1331,1155},{154,172}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -750,7 +765,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{150,65}</string> <string>{150,65}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1479,957},{150,65}}</string> <string>{{1505,1155},{150,65}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -765,9 +780,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{154,598}</string> <string>{154,598}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{537,1367},{154,598}}</string> <string>{{805,187},{154,598}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>tili.png</key> <key>tili.png</key>
<dict> <dict>
@ -780,7 +795,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{127,65}</string> <string>{127,65}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1615,58},{127,65}}</string> <string>{{1727,1229},{127,65}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -795,9 +810,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{233,55}</string> <string>{233,55}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{699,1091},{233,55}}</string> <string>{{1393,942},{233,55}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>tishi.png</key> <key>tishi.png</key>
<dict> <dict>
@ -810,9 +825,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{777,42}</string> <string>{777,42}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{121,1},{777,42}}</string> <string>{{750,143},{777,42}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>touxiang.png</key> <key>touxiang.png</key>
<dict> <dict>
@ -825,9 +840,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{188,198}</string> <string>{188,198}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1547,929},{188,198}}</string> <string>{{982,951},{188,198}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>try.png</key> <key>try.png</key>
<dict> <dict>
@ -840,7 +855,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{636,174}</string> <string>{636,174}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{428,1},{636,174}}</string> <string>{{531,206},{636,174}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -855,7 +870,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{144,164}</string> <string>{144,164}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{917,659},{144,164}}</string> <string>{{1227,845},{144,164}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -870,9 +885,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{692,140}</string> <string>{692,140}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,805},{692,140}}</string> <string>{{750,1},{692,140}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>xin.png</key> <key>xin.png</key>
<dict> <dict>
@ -885,7 +900,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{98,98}</string> <string>{98,98}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,1433},{94,90}}</string> <string>{{1856,1229},{94,90}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -900,7 +915,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{340,340}</string> <string>{340,340}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1137,856},{340,278}}</string> <string>{{1483,240},{340,278}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -915,9 +930,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{289,72}</string> <string>{289,72}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1233,1452},{289,72}}</string> <string>{{1699,588},{289,72}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>yiman.png</key> <key>yiman.png</key>
<dict> <dict>
@ -930,7 +945,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{72,36}</string> <string>{72,36}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1704,1432},{72,36}}</string> <string>{{1963,1105},{72,36}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -945,7 +960,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{311,116}</string> <string>{311,116}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1609,1119},{311,116}}</string> <string>{{65,1010},{311,116}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -960,9 +975,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{311,100}</string> <string>{311,100}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{604,628},{311,100}}</string> <string>{{708,990},{311,100}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>zhendong1.png</key> <key>zhendong1.png</key>
<dict> <dict>
@ -975,9 +990,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{314,117}</string> <string>{314,117}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{604,509},{314,117}}</string> <string>{{491,990},{314,117}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
</dict> </dict>
<key>metadata</key> <key>metadata</key>
@ -991,9 +1006,9 @@
<key>realTextureFileName</key> <key>realTextureFileName</key>
<string>gameui.png</string> <string>gameui.png</string>
<key>size</key> <key>size</key>
<string>{1746,1525}</string> <string>{2028,1323}</string>
<key>smartupdate</key> <key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:31a00c57f7dde9d4c4a3e28698afca17:09db9f2297bb2b80fb08a73c8f4f60d2:13103c15d0108e7aab1316a48f90f5be$</string> <string>$TexturePacker:SmartUpdate:19c79a442783ab88b1be3565ff4adbab:d9a6d9a0545a31e0de2c06a671c915c4:13103c15d0108e7aab1316a48f90f5be$</string>
<key>textureFileName</key> <key>textureFileName</key>
<string>gameui.png</string> <string>gameui.png</string>
</dict> </dict>

View File

@ -4,8 +4,8 @@
"importer": "asset", "importer": "asset",
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"size": { "size": {
"width": 1746, "width": 2028,
"height": 1525 "height": 1323
}, },
"type": "Texture Packer", "type": "Texture Packer",
"subMetas": { "subMetas": {
@ -16,11 +16,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 593, "trimX": 1825,
"trimY": 1018, "trimY": 240,
"width": 281, "width": 281,
"height": 71, "height": 71,
"rawWidth": 281, "rawWidth": 281,
@ -39,11 +39,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1524, "trimX": 1678,
"trimY": 1433, "trimY": 879,
"width": 76, "width": 76,
"height": 82, "height": 82,
"rawWidth": 76, "rawWidth": 76,
@ -65,8 +65,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 143, "trimX": 179,
"trimY": 780, "trimY": 206,
"width": 636, "width": 636,
"height": 174, "height": 174,
"rawWidth": 636, "rawWidth": 636,
@ -88,8 +88,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 1439,
"trimY": 788, "trimY": 520,
"width": 348, "width": 348,
"height": 66, "height": 66,
"rawWidth": 348, "rawWidth": 348,
@ -108,11 +108,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1573, "trimX": 805,
"trimY": 243, "trimY": 787,
"width": 154, "width": 154,
"height": 172, "height": 172,
"rawWidth": 154, "rawWidth": 154,
@ -131,11 +131,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 756, "trimX": 916,
"trimY": 1157, "trimY": 961,
"width": 281, "width": 281,
"height": 64, "height": 64,
"rawWidth": 281, "rawWidth": 281,
@ -154,11 +154,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": 0, "offsetY": 0,
"trimX": 604, "trimX": 183,
"trimY": 201, "trimY": 990,
"width": 306, "width": 306,
"height": 316, "height": 316,
"rawWidth": 316, "rawWidth": 316,
@ -180,8 +180,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 1, "offsetY": 1,
"trimX": 409, "trimX": 1522,
"trimY": 1388, "trimY": 999,
"width": 126, "width": 126,
"height": 132, "height": 132,
"rawWidth": 150, "rawWidth": 150,
@ -203,8 +203,8 @@
"rotated": false, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": 0, "offsetY": 0,
"trimX": 896, "trimX": 1789,
"trimY": 805, "trimY": 523,
"width": 238, "width": 238,
"height": 284, "height": 284,
"rawWidth": 284, "rawWidth": 284,
@ -226,8 +226,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1602, "trimX": 810,
"trimY": 1433, "trimY": 1227,
"width": 80, "width": 80,
"height": 100, "height": 100,
"rawWidth": 80, "rawWidth": 80,
@ -249,8 +249,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 143, "trimX": 961,
"trimY": 1418, "trimY": 845,
"width": 264, "width": 264,
"height": 104, "height": 104,
"rawWidth": 264, "rawWidth": 264,
@ -272,8 +272,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1479, "trimX": 912,
"trimY": 889, "trimY": 1244,
"width": 66, "width": 66,
"height": 66, "height": 66,
"rawWidth": 66, "rawWidth": 66,
@ -295,8 +295,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1545, "trimX": 1,
"trimY": 1119, "trimY": 1010,
"width": 312, "width": 312,
"height": 62, "height": 62,
"rawWidth": 312, "rawWidth": 312,
@ -315,11 +315,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1041, "trimX": 1952,
"trimY": 1091, "trimY": 1229,
"width": 70, "width": 70,
"height": 71, "height": 71,
"rawWidth": 70, "rawWidth": 70,
@ -341,8 +341,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1551, "trimX": 982,
"trimY": 711, "trimY": 1151,
"width": 171, "width": 171,
"height": 191, "height": 191,
"rawWidth": 171, "rawWidth": 171,
@ -364,8 +364,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1098, "trimX": 1964,
"trimY": 201, "trimY": 114,
"width": 234, "width": 234,
"height": 36, "height": 36,
"rawWidth": 234, "rawWidth": 234,
@ -387,8 +387,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1381, "trimX": 610,
"trimY": 1136, "trimY": 990,
"width": 314, "width": 314,
"height": 96, "height": 96,
"rawWidth": 314, "rawWidth": 314,
@ -411,7 +411,7 @@
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1, "trimX": 1,
"trimY": 1, "trimY": 206,
"width": 802, "width": 802,
"height": 118, "height": 118,
"rawWidth": 802, "rawWidth": 802,
@ -433,8 +433,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 1, "offsetY": 1,
"trimX": 495, "trimX": 707,
"trimY": 749, "trimY": 206,
"width": 616, "width": 616,
"height": 96, "height": 96,
"rawWidth": 616, "rawWidth": 616,
@ -456,8 +456,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1479, "trimX": 1898,
"trimY": 1109, "trimY": 181,
"width": 322, "width": 322,
"height": 64, "height": 64,
"rawWidth": 322, "rawWidth": 322,
@ -476,11 +476,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1615, "trimX": 1727,
"trimY": 125, "trimY": 1105,
"width": 116, "width": 116,
"height": 122, "height": 122,
"rawWidth": 116, "rawWidth": 116,
@ -502,8 +502,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 756, "trimX": 1845,
"trimY": 1223, "trimY": 1105,
"width": 116, "width": 116,
"height": 122, "height": 122,
"rawWidth": 116, "rawWidth": 116,
@ -525,8 +525,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 920, "trimX": 615,
"trimY": 513, "trimY": 844,
"width": 144, "width": 144,
"height": 164, "height": 164,
"rawWidth": 144, "rawWidth": 144,
@ -548,8 +548,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 961,
"trimY": 224, "trimY": 553,
"width": 434, "width": 434,
"height": 144, "height": 144,
"rawWidth": 434, "rawWidth": 434,
@ -571,8 +571,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 179,
"trimY": 370, "trimY": 844,
"width": 434, "width": 434,
"height": 144, "height": 144,
"rawWidth": 434, "rawWidth": 434,
@ -591,10 +591,10 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 223, "trimX": 1,
"trimY": 1, "trimY": 1,
"width": 747, "width": 747,
"height": 203, "height": 203,
@ -617,8 +617,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 961,
"trimY": 58, "trimY": 387,
"width": 476, "width": 476,
"height": 164, "height": 164,
"rawWidth": 476, "rawWidth": 476,
@ -640,8 +640,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 1529,
"trimY": 662, "trimY": 114,
"width": 412, "width": 412,
"height": 65, "height": 65,
"rawWidth": 412, "rawWidth": 412,
@ -653,6 +653,29 @@
"spriteType": "normal", "spriteType": "normal",
"subMetas": {} "subMetas": {}
}, },
"huifuyidian.png": {
"ver": "1.0.6",
"uuid": "7e089816-7c3a-4f58-baff-1023aceab868",
"importer": "sprite-frame",
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 1444,
"trimY": 58,
"width": 561,
"height": 54,
"rawWidth": 561,
"rawHeight": 54,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"spriteType": "normal",
"subMetas": {}
},
"iceb.png": { "iceb.png": {
"ver": "1.0.6", "ver": "1.0.6",
"uuid": "23571a02-48ac-4289-a9f7-0ae0a2c3ece4", "uuid": "23571a02-48ac-4289-a9f7-0ae0a2c3ece4",
@ -663,8 +686,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 1, "offsetY": 1,
"trimX": 1137, "trimX": 1773,
"trimY": 1136, "trimY": 809,
"width": 242, "width": 242,
"height": 294, "height": 294,
"rawWidth": 316, "rawWidth": 316,
@ -683,11 +706,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 1, "offsetY": 1,
"trimX": 462, "trimX": 1617,
"trimY": 639, "trimY": 1133,
"width": 108, "width": 108,
"height": 130, "height": 130,
"rawWidth": 150, "rawWidth": 150,
@ -709,8 +732,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 1529,
"trimY": 729, "trimY": 181,
"width": 363, "width": 363,
"height": 57, "height": 57,
"rawWidth": 363, "rawWidth": 363,
@ -732,8 +755,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 961,
"trimY": 58, "trimY": 387,
"width": 476, "width": 476,
"height": 164, "height": 164,
"rawWidth": 476, "rawWidth": 476,
@ -752,11 +775,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1573, "trimX": 1175,
"trimY": 399, "trimY": 1147,
"width": 154, "width": 154,
"height": 172, "height": 172,
"rawWidth": 154, "rawWidth": 154,
@ -778,8 +801,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 428, "trimX": 1439,
"trimY": 639, "trimY": 387,
"width": 109, "width": 109,
"height": 32, "height": 32,
"rawWidth": 109, "rawWidth": 109,
@ -801,8 +824,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1502, "trimX": 1964,
"trimY": 729, "trimY": 350,
"width": 158, "width": 158,
"height": 44, "height": 44,
"rawWidth": 158, "rawWidth": 158,
@ -824,7 +847,7 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 1444,
"trimY": 1, "trimY": 1,
"width": 582, "width": 582,
"height": 55, "height": 55,
@ -847,8 +870,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 319, "trimX": 355,
"trimY": 750, "trimY": 206,
"width": 636, "width": 636,
"height": 174, "height": 174,
"rawWidth": 636, "rawWidth": 636,
@ -867,11 +890,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1548, "trimX": 1572,
"trimY": 884, "trimY": 1133,
"width": 189, "width": 189,
"height": 43, "height": 43,
"rawWidth": 189, "rawWidth": 189,
@ -893,8 +916,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 165, "trimX": 121,
"trimY": 1, "trimY": 206,
"width": 766, "width": 766,
"height": 56, "height": 56,
"rawWidth": 766, "rawWidth": 766,
@ -916,8 +939,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1573, "trimX": 1348,
"trimY": 555, "trimY": 999,
"width": 154, "width": 154,
"height": 172, "height": 172,
"rawWidth": 154, "rawWidth": 154,
@ -939,8 +962,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 593, "trimX": 810,
"trimY": 1091, "trimY": 961,
"width": 264, "width": 264,
"height": 104, "height": 104,
"rawWidth": 264, "rawWidth": 264,
@ -962,8 +985,8 @@
"rotated": false, "rotated": false,
"offsetX": -155.5, "offsetX": -155.5,
"offsetY": 46.5, "offsetY": 46.5,
"trimX": 1, "trimX": 750,
"trimY": 1499, "trimY": 187,
"width": 3, "width": 3,
"height": 3, "height": 3,
"rawWidth": 314, "rawWidth": 314,
@ -985,8 +1008,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 961,
"trimY": 516, "trimY": 699,
"width": 434, "width": 434,
"height": 144, "height": 144,
"rawWidth": 434, "rawWidth": 434,
@ -1008,8 +1031,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 922, "trimX": 1172,
"trimY": 201, "trimY": 991,
"width": 154, "width": 154,
"height": 174, "height": 174,
"rawWidth": 154, "rawWidth": 154,
@ -1031,8 +1054,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 756, "trimX": 1393,
"trimY": 1091, "trimY": 876,
"width": 283, "width": 283,
"height": 64, "height": 64,
"rawWidth": 283, "rawWidth": 283,
@ -1054,8 +1077,8 @@
"rotated": true, "rotated": true,
"offsetX": 8, "offsetX": 8,
"offsetY": -7, "offsetY": -7,
"trimX": 594, "trimX": 1397,
"trimY": 730, "trimY": 588,
"width": 286, "width": 286,
"height": 300, "height": 300,
"rawWidth": 316, "rawWidth": 316,
@ -1077,8 +1100,8 @@
"rotated": false, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": 0, "offsetY": 0,
"trimX": 874, "trimX": 1650,
"trimY": 1223, "trimY": 957,
"width": 116, "width": 116,
"height": 120, "height": 120,
"rawWidth": 150, "rawWidth": 150,
@ -1100,8 +1123,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 604, "trimX": 961,
"trimY": 1, "trimY": 187,
"width": 520, "width": 520,
"height": 198, "height": 198,
"rawWidth": 520, "rawWidth": 520,
@ -1123,8 +1146,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 922, "trimX": 1331,
"trimY": 357, "trimY": 1155,
"width": 154, "width": 154,
"height": 172, "height": 172,
"rawWidth": 154, "rawWidth": 154,
@ -1146,8 +1169,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1479, "trimX": 1505,
"trimY": 957, "trimY": 1155,
"width": 150, "width": 150,
"height": 65, "height": 65,
"rawWidth": 150, "rawWidth": 150,
@ -1166,11 +1189,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 537, "trimX": 805,
"trimY": 1367, "trimY": 187,
"width": 154, "width": 154,
"height": 598, "height": 598,
"rawWidth": 154, "rawWidth": 154,
@ -1192,8 +1215,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1615, "trimX": 1727,
"trimY": 58, "trimY": 1229,
"width": 127, "width": 127,
"height": 65, "height": 65,
"rawWidth": 127, "rawWidth": 127,
@ -1212,11 +1235,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 699, "trimX": 1393,
"trimY": 1091, "trimY": 942,
"width": 233, "width": 233,
"height": 55, "height": 55,
"rawWidth": 233, "rawWidth": 233,
@ -1235,11 +1258,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 121, "trimX": 750,
"trimY": 1, "trimY": 143,
"width": 777, "width": 777,
"height": 42, "height": 42,
"rawWidth": 777, "rawWidth": 777,
@ -1258,11 +1281,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1547, "trimX": 982,
"trimY": 929, "trimY": 951,
"width": 188, "width": 188,
"height": 198, "height": 198,
"rawWidth": 188, "rawWidth": 188,
@ -1284,8 +1307,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 428, "trimX": 531,
"trimY": 1, "trimY": 206,
"width": 636, "width": 636,
"height": 174, "height": 174,
"rawWidth": 636, "rawWidth": 636,
@ -1307,8 +1330,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 917, "trimX": 1227,
"trimY": 659, "trimY": 845,
"width": 144, "width": 144,
"height": 164, "height": 164,
"rawWidth": 144, "rawWidth": 144,
@ -1327,11 +1350,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1, "trimX": 750,
"trimY": 805, "trimY": 1,
"width": 692, "width": 692,
"height": 140, "height": 140,
"rawWidth": 692, "rawWidth": 692,
@ -1353,8 +1376,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 1856,
"trimY": 1433, "trimY": 1229,
"width": 94, "width": 94,
"height": 90, "height": 90,
"rawWidth": 98, "rawWidth": 98,
@ -1376,8 +1399,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1137, "trimX": 1483,
"trimY": 856, "trimY": 240,
"width": 340, "width": 340,
"height": 278, "height": 278,
"rawWidth": 340, "rawWidth": 340,
@ -1396,11 +1419,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1233, "trimX": 1699,
"trimY": 1452, "trimY": 588,
"width": 289, "width": 289,
"height": 72, "height": 72,
"rawWidth": 289, "rawWidth": 289,
@ -1422,8 +1445,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1704, "trimX": 1963,
"trimY": 1432, "trimY": 1105,
"width": 72, "width": 72,
"height": 36, "height": 36,
"rawWidth": 72, "rawWidth": 72,
@ -1445,8 +1468,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1609, "trimX": 65,
"trimY": 1119, "trimY": 1010,
"width": 311, "width": 311,
"height": 116, "height": 116,
"rawWidth": 311, "rawWidth": 311,
@ -1465,11 +1488,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 604, "trimX": 708,
"trimY": 628, "trimY": 990,
"width": 311, "width": 311,
"height": 100, "height": 100,
"rawWidth": 311, "rawWidth": 311,
@ -1488,11 +1511,11 @@
"rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 604, "trimX": 491,
"trimY": 509, "trimY": 990,
"width": 314, "width": 314,
"height": 117, "height": 117,
"rawWidth": 314, "rawWidth": 314,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 278 KiB

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 1746, "width": 2028,
"height": 1525, "height": 1323,
"platformSettings": {}, "platformSettings": {},
"subMetas": {} "subMetas": {}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -1930,7 +1930,7 @@
"__uuid__": "43fca32a-925b-4ddb-9f96-fa5750d60cfb" "__uuid__": "43fca32a-925b-4ddb-9f96-fa5750d60cfb"
}, },
{ {
"__uuid__": "d89cb39b-0ec8-43c3-bb1a-f1e081938454" "__uuid__": "7e089816-7c3a-4f58-baff-1023aceab868"
} }
], ],
"switchNode": { "switchNode": {