This commit is contained in:
TJH 2026-04-02 14:41:44 +08:00
parent 39bd0646c4
commit ede47ceaea
1557 changed files with 106709 additions and 5971 deletions

View File

@ -66,44 +66,62 @@ export class SlotGame extends Component {
onClickDoubleWin() { onClickDoubleWin() {
this.doubleWinIsOn = !this.doubleWinIsOn; this.doubleWinIsOn = !this.doubleWinIsOn;
this.doubleWinBtnNode.getChildByName('bg').active = this.doubleWinIsOn
this.doubleWinBtnNode.getChildByName('zxksctte1').active = this.doubleWinIsOn
this.doubleWinBtnNode.getChildByName('bet_bg').active = this.doubleWinIsOn
this.doubleWinBtnNode.getChildByName('count').active = this.doubleWinIsOn
this.doubleWinBtnNode.getChildByName('deng_on').active = this.doubleWinIsOn
this.doubleWinBtnNode.getChildByName('deng_off').active = !this.doubleWinIsOn
this.doubleWinBtnNode.getChildByName('bet_label').active = !this.doubleWinIsOn
let pt_11 = this.doubleWinBtnNode.getChildByName('pt_11'); let pt_11 = this.doubleWinBtnNode.getChildByName('pt_11');
let on = pt_11.getChildByName('on'); let on = pt_11.getChildByName('on');
let off = pt_11.getChildByName('off'); let off = pt_11.getChildByName('off');
let pt_12 = pt_11.getChildByName('pt_12'); let pt_12 = pt_11.getChildByName('pt_12');
let pt_13 = pt_11.getChildByName('pt_13'); let pt_13 = pt_11.getChildByName('pt_13');
pt_12.active = !this.doubleWinIsOn
off.active = !this.doubleWinIsOn;
pt_13.active = this.doubleWinIsOn
on.active = this.doubleWinIsOn;
if (this.doubleWinIsOn) {
tween(pt_12)
.to(0.05, { position: v3(35, 0, 0) })
.call(() => {
pt_12.active = false;
pt_12.setPosition(v3(-35, 0, 0));
pt_13.active = true;
on.active = true;
off.active = false;
this.refreshDoubleWinCount(); this.refreshDoubleWinCount();
this.refreshBuyBtnState(false); this.refreshBuyBtnState(false);
this.node.emit(SLOT_GAME_EVENT.ON_DOUBLE_WIN_CLICK, this.doubleWinIsOn); this.node.emit(SLOT_GAME_EVENT.ON_DOUBLE_WIN_CLICK, this.doubleWinIsOn);
})
.start();
} else {
tween(pt_13)
.to(0.05, { position: v3(-35, 0, 0) })
.call(() => {
pt_13.active = false;
pt_13.setPosition(v3(35, 0, 0));
pt_12.active = true;
on.active = false;
off.active = true;
this.refreshDoubleWinCount(); // if (this.doubleWinIsOn) {
this.refreshBuyBtnState(false); // tween(pt_12)
this.node.emit(SLOT_GAME_EVENT.ON_DOUBLE_WIN_CLICK, this.doubleWinIsOn); // .to(0.05, { position: v3(35, 0, 0) })
}) // .call(() => {
.start(); // pt_12.active = false;
} // pt_12.setPosition(v3(-35, 0, 0));
// pt_13.active = true;
// on.active = true;
// off.active = false;
// this.refreshDoubleWinCount();
// this.refreshBuyBtnState(false);
// this.node.emit(SLOT_GAME_EVENT.ON_DOUBLE_WIN_CLICK, this.doubleWinIsOn);
// })
// .start();
// } else {
// tween(pt_13)
// .to(0.05, { position: v3(-35, 0, 0) })
// .call(() => {
// pt_13.active = false;
// pt_13.setPosition(v3(35, 0, 0));
// pt_12.active = true;
// on.active = false;
// off.active = true;
// this.refreshDoubleWinCount();
// this.refreshBuyBtnState(false);
// this.node.emit(SLOT_GAME_EVENT.ON_DOUBLE_WIN_CLICK, this.doubleWinIsOn);
// })
// .start();
// }
} }
refreshDoubleWinVisual() { refreshDoubleWinVisual() {
@ -116,21 +134,21 @@ export class SlotGame extends Component {
Tween.stopAllByTarget(pt_12); Tween.stopAllByTarget(pt_12);
Tween.stopAllByTarget(pt_13); Tween.stopAllByTarget(pt_13);
if (this.doubleWinIsOn) { // if (this.doubleWinIsOn) {
pt_12.active = false; // pt_12.active = false;
pt_12.setPosition(v3(-35, 0, 0)); // pt_12.setPosition(v3(-35, 0, 0));
pt_13.active = true; // pt_13.active = true;
pt_13.setPosition(v3(35, 0, 0)); // pt_13.setPosition(v3(35, 0, 0));
on.active = true; // on.active = true;
off.active = false; // off.active = false;
} else { // } else {
pt_13.active = false; // pt_13.active = false;
pt_13.setPosition(v3(35, 0, 0)); // pt_13.setPosition(v3(35, 0, 0));
pt_12.active = true; // pt_12.active = true;
pt_12.setPosition(v3(-35, 0, 0)); // pt_12.setPosition(v3(-35, 0, 0));
on.active = false; // on.active = false;
off.active = true; // off.active = true;
} // }
} }
refreshDoubleWinCount() { refreshDoubleWinCount() {
@ -158,10 +176,10 @@ export class SlotGame extends Component {
} }
if (this.doubleWinIsOn) { if (this.doubleWinIsOn) {
this.setBtnEnable(this.doubleWinBtnNode, true); this.setBtnEnable(this.doubleWinBtnNode.getChildByName('pt_11'), true);
this.setBtnEnable(this.featureBuyNode, false); this.setBtnEnable(this.featureBuyNode, false);
} else { } else {
this.setBtnEnable(this.doubleWinBtnNode, this.featureBuyBtnEnabled); this.setBtnEnable(this.doubleWinBtnNode.getChildByName('pt_11'), this.featureBuyBtnEnabled);
this.setBtnEnable(this.featureBuyNode, this.featureBuyBtnEnabled); this.setBtnEnable(this.featureBuyNode, this.featureBuyBtnEnabled);
} }
} }
@ -201,33 +219,33 @@ export class SlotGame extends Component {
if (!isFreeGame) { if (!isFreeGame) {
this.refreshDoubleWinCount(); this.refreshDoubleWinCount();
let tudou = this.node.getChildByName('NormalGameBg1').getChildByName('5'); // let tudou = this.node.getChildByName('NormalGameBg1').getChildByName('5');
let leftPos = new Vec3(-360, -993, 0); // let leftPos = new Vec3(-360, -993, 0);
let rightPos = new Vec3(-210, -993, 0); // let rightPos = new Vec3(-210, -993, 0);
Tween.stopAllByTarget(tudou); // Tween.stopAllByTarget(tudou);
tudou.setPosition(leftPos); // tudou.setPosition(leftPos);
tudou.setScale(1, 1, 0); // tudou.setScale(1, 1, 0);
tween(tudou) // tween(tudou)
.to(1, { position: rightPos }) // .to(1, { position: rightPos })
.call(() => tudou.setScale(-1, 1, 0)) // .call(() => tudou.setScale(-1, 1, 0))
.to(1, { position: leftPos }) // .to(1, { position: leftPos })
.call(() => tudou.setScale(1, 1, 0)) // .call(() => tudou.setScale(1, 1, 0))
.union() // .union()
.repeatForever() // .repeatForever()
.start(); // .start();
let flower = this.node.getChildByName('NormalGameBg1').getChildByName('6').getComponent(sp.Skeleton); // let flower = this.node.getChildByName('NormalGameBg1').getChildByName('6').getComponent(sp.Skeleton);
// ruchang , chixu ,xiaoshi 三个动画循环播放 0 -> 1 -> 2 -> 0 // // ruchang , chixu ,xiaoshi 三个动画循环播放 0 -> 1 -> 2 -> 0
let animationNames = ['ruchang', 'chixu', 'xiaoshi']; // let animationNames = ['ruchang', 'chixu', 'xiaoshi'];
let index = 0; // let index = 0;
flower.setCompleteListener(() => { // flower.setCompleteListener(() => {
index = (index + 1) % animationNames.length; // index = (index + 1) % animationNames.length;
flower.setAnimation(0, animationNames[index], false); // flower.setAnimation(0, animationNames[index], false);
}); // });
flower.setAnimation(0, animationNames[index], false); // flower.setAnimation(0, animationNames[index], false);
} }
} }
@ -502,7 +520,7 @@ export class SlotGame extends Component {
onClickFeatureBuy() { onClickFeatureBuy() {
this.setBtnEnableForBol(this.featureBuyNode, false); this.setBtnEnableForBol(this.featureBuyNode, false);
this.setBtnEnableForBol(this.doubleWinBtnNode, false); this.setBtnEnableForBol(this.doubleWinBtnNode.getChildByName('pt_11'), false);
let maliao = this.featureBuyNode.getChildByName('3_4').getComponent(sp.Skeleton); let maliao = this.featureBuyNode.getChildByName('3_4').getComponent(sp.Skeleton);
maliao.setAnimation(0, 'animation', false); maliao.setAnimation(0, 'animation', false);

View File

@ -9,16 +9,28 @@ const { ccclass, property } = _decorator;
export class SlotMsg extends Component { export class SlotMsg extends Component {
// 展示文字信息 // 展示文字信息
@property(sp.Skeleton) // @property(sp.Skeleton)
smallMsgSpine: sp.Skeleton = null; // smallMsgSpine: sp.Skeleton = null;
// // 展示普通赢分信息
// @property(sp.Skeleton)
// middleMsgSpine: sp.Skeleton = null;
// // 展示总赢分信息
// @property(sp.Skeleton)
// largeMsgSpine: sp.Skeleton = null;
// 展示文字信息
@property(Sprite)
smallMsgSpine: Sprite = null;
// 展示普通赢分信息 // 展示普通赢分信息
@property(sp.Skeleton) @property(Sprite)
middleMsgSpine: sp.Skeleton = null; middleMsgSpine: Sprite = null;
// 展示总赢分信息 // 展示总赢分信息
@property(sp.Skeleton) @property(Sprite)
largeMsgSpine: sp.Skeleton = null; largeMsgSpine: Sprite = null;
@property(Sprite) @property(Sprite)
i18nSpriteMsg: Sprite = null; i18nSpriteMsg: Sprite = null;
@ -35,11 +47,11 @@ export class SlotMsg extends Component {
showLabelMsgForTween() { showLabelMsgForTween() {
Tween.stopAllByTarget(this.i18nSpriteMsg.node); Tween.stopAllByTarget(this.i18nSpriteMsg.node);
this.smallMsgSpine.node.active = true; this.smallMsgSpine.node.active = true;
this.smallMsgSpine.setAnimation(0, '2', false); // this.smallMsgSpine.setAnimation(0, '2', false);
this.smallMsgSpine.setCompleteListener(() => { // this.smallMsgSpine.setCompleteListener(() => {
this.smallMsgSpine.setAnimation(0, '1', true); // this.smallMsgSpine.setAnimation(0, '1', true);
this.smallMsgSpine.setCompleteListener(null); // this.smallMsgSpine.setCompleteListener(null);
}); // });
this.middleMsgSpine.node.active = false; this.middleMsgSpine.node.active = false;
this.largeMsgSpine.node.active = false; this.largeMsgSpine.node.active = false;
@ -51,7 +63,7 @@ export class SlotMsg extends Component {
let delayTime = 0; let delayTime = 0;
let moveTime = 0; let moveTime = 0;
// 通过数字获取name // 通过数字获取name
let spriteName = ['Normal1', 'Normal6', 'Normal8', 'Normal9']; let spriteName = ['Normal8', 'Normal9', 'Normal10', 'Normal11'];
let setSpriteFrame = () => { let setSpriteFrame = () => {
startPos.x = this.startPos.x; startPos.x = this.startPos.x;
let spriteFrame = I18nManager.instance.getSpriteFrame(spriteName[add]); let spriteFrame = I18nManager.instance.getSpriteFrame(spriteName[add]);
@ -92,11 +104,11 @@ export class SlotMsg extends Component {
this.smallMsgSpine.node.active = false; this.smallMsgSpine.node.active = false;
this.middleMsgSpine.node.active = false; this.middleMsgSpine.node.active = false;
this.largeMsgSpine.node.active = true; this.largeMsgSpine.node.active = true;
this.largeMsgSpine.setAnimation(0, '2', false); // this.largeMsgSpine.setAnimation(0, '2', false);
this.largeMsgSpine.setCompleteListener(() => { // this.largeMsgSpine.setCompleteListener(() => {
this.largeMsgSpine.setAnimation(0, '1', true); // this.largeMsgSpine.setAnimation(0, '1', true);
this.largeMsgSpine.setCompleteListener(null); // this.largeMsgSpine.setCompleteListener(null);
}); // });
let msg = this.largeMsgSpine.node.getChildByName('msg'); let msg = this.largeMsgSpine.node.getChildByName('msg');
let winCount = msg.getChildByName('winCount'); let winCount = msg.getChildByName('winCount');
@ -126,11 +138,11 @@ export class SlotMsg extends Component {
this.smallMsgSpine.node.active = false; this.smallMsgSpine.node.active = false;
this.middleMsgSpine.node.active = true; this.middleMsgSpine.node.active = true;
this.largeMsgSpine.node.active = false; this.largeMsgSpine.node.active = false;
this.middleMsgSpine.setAnimation(0, '2', false); // this.middleMsgSpine.setAnimation(0, '2', false);
this.middleMsgSpine.setCompleteListener(() => { // this.middleMsgSpine.setCompleteListener(() => {
this.middleMsgSpine.setAnimation(0, '1', true); // this.middleMsgSpine.setAnimation(0, '1', true);
this.middleMsgSpine.setCompleteListener(null); // this.middleMsgSpine.setCompleteListener(null);
}); // });
let msg = this.middleMsgSpine.node.getChildByName('msg'); let msg = this.middleMsgSpine.node.getChildByName('msg');
let winCount = msg.getChildByName('winCount'); let winCount = msg.getChildByName('winCount');
@ -142,11 +154,11 @@ export class SlotMsg extends Component {
this.smallMsgSpine.node.active = false; this.smallMsgSpine.node.active = false;
this.middleMsgSpine.node.active = false; this.middleMsgSpine.node.active = false;
this.largeMsgSpine.node.active = true; this.largeMsgSpine.node.active = true;
this.largeMsgSpine.setAnimation(0, '2', false); // this.largeMsgSpine.setAnimation(0, '2', false);
this.largeMsgSpine.setCompleteListener(() => { // this.largeMsgSpine.setCompleteListener(() => {
this.largeMsgSpine.setAnimation(0, '1', true); // this.largeMsgSpine.setAnimation(0, '1', true);
this.largeMsgSpine.setCompleteListener(null); // this.largeMsgSpine.setCompleteListener(null);
}); // });
let msg = this.largeMsgSpine.node.getChildByName('msg'); let msg = this.largeMsgSpine.node.getChildByName('msg');
let winCount = msg.getChildByName('winCount'); let winCount = msg.getChildByName('winCount');

File diff suppressed because it is too large Load Diff

View File

@ -174,9 +174,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 180 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@ef0d5", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@ef0d5",
@ -313,9 +313,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 180 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@ef0d5", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@ef0d5",
@ -452,8 +452,8 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 255 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
@ -591,8 +591,8 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 255 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {

View File

@ -243,9 +243,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 120 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@4ab58", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@4ab58",
@ -379,9 +379,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 120 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@465eb", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@465eb",
@ -515,9 +515,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 120 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@06d86", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@06d86",
@ -651,9 +651,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 80 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@922e7", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@922e7",
@ -787,8 +787,8 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 255 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
@ -923,9 +923,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 200 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@40950", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@40950",
@ -1059,9 +1059,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 200 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@3c173", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@3c173",
@ -1195,9 +1195,9 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 200 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@40950", "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@40950",
@ -1331,8 +1331,8 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 255 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
@ -1470,8 +1470,8 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 255 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {
@ -1609,8 +1609,8 @@
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 255, "r": 255,
"g": 255, "g": 246,
"b": 255, "b": 187,
"a": 255 "a": 255
}, },
"_spriteFrame": { "_spriteFrame": {

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "215672f8-1218-4928-86ae-b8175b5a85af",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "877e058d-5dc5-489d-ab2d-4c26f691588d",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,15 @@
info face="Arial" size=25 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=25 base=26 scaleW=208 scaleH=27 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="bet数字.png"
chars count=11
char id=46 x=0 y=0 width=9 height=8 xoffset=0 yoffset=17 xadvance=9 page=0 chnl=15
char id=48 x=9 y=0 width=20 height=27 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15
char id=49 x=29 y=0 width=15 height=27 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=15
char id=50 x=44 y=0 width=21 height=27 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=15
char id=52 x=65 y=0 width=22 height=27 xoffset=0 yoffset=0 xadvance=22 page=0 chnl=15
char id=54 x=87 y=0 width=20 height=27 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15
char id=55 x=107 y=0 width=20 height=27 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15
char id=57 x=127 y=0 width=21 height=27 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=15
char id=51 x=148 y=0 width=20 height=27 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15
char id=53 x=168 y=0 width=20 height=27 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15
char id=56 x=188 y=0 width=20 height=27 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15

View File

@ -0,0 +1,143 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "e3973bf7-5341-4d1e-8265-88afe473ed48",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 25,
"fontSize": 25,
"atlasName": "bet数字.png",
"fontDefDictionary": {
"46": {
"rect": {
"x": 0,
"y": 0,
"width": 9,
"height": 8
},
"xOffset": 0,
"yOffset": 17,
"xAdvance": 9
},
"48": {
"rect": {
"x": 9,
"y": 0,
"width": 20,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
},
"49": {
"rect": {
"x": 29,
"y": 0,
"width": 15,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 15
},
"50": {
"rect": {
"x": 44,
"y": 0,
"width": 21,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 21
},
"51": {
"rect": {
"x": 148,
"y": 0,
"width": 20,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
},
"52": {
"rect": {
"x": 65,
"y": 0,
"width": 22,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 22
},
"53": {
"rect": {
"x": 168,
"y": 0,
"width": 20,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
},
"54": {
"rect": {
"x": 87,
"y": 0,
"width": 20,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
},
"55": {
"rect": {
"x": 107,
"y": 0,
"width": 20,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
},
"56": {
"rect": {
"x": 188,
"y": 0,
"width": 20,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
},
"57": {
"rect": {
"x": 127,
"y": 0,
"width": 21,
"height": 27
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 21
}
},
"kerningDict": {}
},
"fontSize": 25,
"textureUuid": "56e872db-8d4f-4833-b8e6-87ae26fb6afe"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "56e872db-8d4f-4833-b8e6-87ae26fb6afe",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "56e872db-8d4f-4833-b8e6-87ae26fb6afe@6c48a",
"displayName": "bet数字",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "56e872db-8d4f-4833-b8e6-87ae26fb6afe",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "56e872db-8d4f-4833-b8e6-87ae26fb6afe@f9941",
"displayName": "bet数字",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 208,
"height": 27,
"rawWidth": 208,
"rawHeight": 27,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-104,
-13.5,
0,
104,
-13.5,
0,
-104,
13.5,
0,
104,
13.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
27,
208,
27,
0,
0,
208,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-104,
-13.5,
0
],
"maxPos": [
104,
13.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "56e872db-8d4f-4833-b8e6-87ae26fb6afe@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "56e872db-8d4f-4833-b8e6-87ae26fb6afe@6c48a"
}
}

View File

@ -0,0 +1,17 @@
info face="Arial" size=153 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=153 base=26 scaleW=1348 scaleH=170 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="win数字.png"
chars count=13
char id=44 x=0 y=0 width=58 height=91 xoffset=0 yoffset=80 xadvance=58 page=0 chnl=15
char id=48 x=58 y=0 width=117 height=170 xoffset=0 yoffset=0 xadvance=117 page=0 chnl=15
char id=54 x=175 y=0 width=112 height=161 xoffset=0 yoffset=5 xadvance=112 page=0 chnl=15
char id=55 x=287 y=0 width=118 height=166 xoffset=0 yoffset=2 xadvance=118 page=0 chnl=15
char id=53 x=405 y=0 width=115 height=170 xoffset=0 yoffset=0 xadvance=115 page=0 chnl=15
char id=56 x=520 y=0 width=123 height=169 xoffset=0 yoffset=1 xadvance=123 page=0 chnl=15
char id=57 x=643 y=0 width=111 height=169 xoffset=0 yoffset=1 xadvance=111 page=0 chnl=15
char id=43 x=754 y=0 width=123 height=128 xoffset=0 yoffset=21 xadvance=123 page=0 chnl=15
char id=49 x=877 y=0 width=69 height=169 xoffset=0 yoffset=1 xadvance=69 page=0 chnl=15
char id=50 x=946 y=0 width=113 height=170 xoffset=0 yoffset=0 xadvance=113 page=0 chnl=15
char id=51 x=1059 y=0 width=113 height=170 xoffset=0 yoffset=0 xadvance=113 page=0 chnl=15
char id=52 x=1172 y=0 width=112 height=169 xoffset=0 yoffset=1 xadvance=112 page=0 chnl=15
char id=46 x=1284 y=0 width=64 height=99 xoffset=0 yoffset=50 xadvance=64 page=0 chnl=15

View File

@ -0,0 +1,165 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "440b0efb-6a4a-4c11-9cfb-bf746b908efd",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 153,
"fontSize": 153,
"atlasName": "win数字.png",
"fontDefDictionary": {
"43": {
"rect": {
"x": 754,
"y": 0,
"width": 123,
"height": 128
},
"xOffset": 0,
"yOffset": 21,
"xAdvance": 123
},
"44": {
"rect": {
"x": 0,
"y": 0,
"width": 58,
"height": 91
},
"xOffset": 0,
"yOffset": 80,
"xAdvance": 58
},
"46": {
"rect": {
"x": 1284,
"y": 0,
"width": 64,
"height": 99
},
"xOffset": 0,
"yOffset": 50,
"xAdvance": 64
},
"48": {
"rect": {
"x": 58,
"y": 0,
"width": 117,
"height": 170
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 117
},
"49": {
"rect": {
"x": 877,
"y": 0,
"width": 69,
"height": 169
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 69
},
"50": {
"rect": {
"x": 946,
"y": 0,
"width": 113,
"height": 170
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 113
},
"51": {
"rect": {
"x": 1059,
"y": 0,
"width": 113,
"height": 170
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 113
},
"52": {
"rect": {
"x": 1172,
"y": 0,
"width": 112,
"height": 169
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 112
},
"53": {
"rect": {
"x": 405,
"y": 0,
"width": 115,
"height": 170
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 115
},
"54": {
"rect": {
"x": 175,
"y": 0,
"width": 112,
"height": 161
},
"xOffset": 0,
"yOffset": 5,
"xAdvance": 112
},
"55": {
"rect": {
"x": 287,
"y": 0,
"width": 118,
"height": 166
},
"xOffset": 0,
"yOffset": 2,
"xAdvance": 118
},
"56": {
"rect": {
"x": 520,
"y": 0,
"width": 123,
"height": 169
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 123
},
"57": {
"rect": {
"x": 643,
"y": 0,
"width": 111,
"height": 169
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 111
}
},
"kerningDict": {}
},
"fontSize": 153,
"textureUuid": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874@6c48a",
"displayName": "win数字",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874@f9941",
"displayName": "win数字",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1348,
"height": 170,
"rawWidth": 1348,
"rawHeight": 170,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-674,
-85,
0,
674,
-85,
0,
-674,
85,
0,
674,
85,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
170,
1348,
170,
0,
0,
1348,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-674,
-85,
0
],
"maxPos": [
674,
85,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c5c2e55a-adbd-4d00-a12f-0dbfc643e874@6c48a"
}
}

View File

@ -0,0 +1,15 @@
info face="Arial" size=79 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=79 base=26 scaleW=601 scaleH=82 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="倍数.png"
chars count=11
char id=48 x=0 y=0 width=57 height=82 xoffset=-5 yoffset=0 xadvance=57 page=0 chnl=15
char id=53 x=57 y=0 width=57 height=80 xoffset=0 yoffset=1 xadvance=57 page=0 chnl=15
char id=54 x=114 y=0 width=56 height=82 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=15
char id=55 x=170 y=0 width=56 height=81 xoffset=0 yoffset=1 xadvance=56 page=0 chnl=15
char id=56 x=226 y=0 width=58 height=80 xoffset=-10 yoffset=1 xadvance=58 page=0 chnl=15
char id=57 x=284 y=0 width=54 height=80 xoffset=-10 yoffset=1 xadvance=54 page=0 chnl=15
char id=49 x=338 y=0 width=38 height=80 xoffset=0 yoffset=1 xadvance=38 page=0 chnl=15
char id=50 x=376 y=0 width=55 height=81 xoffset=0 yoffset=1 xadvance=55 page=0 chnl=15
char id=51 x=431 y=0 width=58 height=80 xoffset=0 yoffset=1 xadvance=58 page=0 chnl=15
char id=52 x=489 y=0 width=58 height=81 xoffset=0 yoffset=1 xadvance=58 page=0 chnl=15
char id=120 x=547 y=0 width=54 height=68 xoffset=0 yoffset=7 xadvance=54 page=0 chnl=15

View File

@ -0,0 +1,143 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "b72a4cdc-86ec-46dc-b312-8a1e77c68632",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 79,
"fontSize": 79,
"atlasName": "倍数.png",
"fontDefDictionary": {
"48": {
"rect": {
"x": 0,
"y": 0,
"width": 57,
"height": 82
},
"xOffset": -5,
"yOffset": 0,
"xAdvance": 57
},
"49": {
"rect": {
"x": 338,
"y": 0,
"width": 38,
"height": 80
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 38
},
"50": {
"rect": {
"x": 376,
"y": 0,
"width": 55,
"height": 81
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 55
},
"51": {
"rect": {
"x": 431,
"y": 0,
"width": 58,
"height": 80
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 58
},
"52": {
"rect": {
"x": 489,
"y": 0,
"width": 58,
"height": 81
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 58
},
"53": {
"rect": {
"x": 57,
"y": 0,
"width": 57,
"height": 80
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 57
},
"54": {
"rect": {
"x": 114,
"y": 0,
"width": 56,
"height": 82
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 56
},
"55": {
"rect": {
"x": 170,
"y": 0,
"width": 56,
"height": 81
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 56
},
"56": {
"rect": {
"x": 226,
"y": 0,
"width": 58,
"height": 80
},
"xOffset": -10,
"yOffset": 1,
"xAdvance": 58
},
"57": {
"rect": {
"x": 284,
"y": 0,
"width": 54,
"height": 80
},
"xOffset": -10,
"yOffset": 1,
"xAdvance": 54
},
"120": {
"rect": {
"x": 547,
"y": 0,
"width": 54,
"height": 68
},
"xOffset": 0,
"yOffset": 7,
"xAdvance": 54
}
},
"kerningDict": {}
},
"fontSize": 79,
"textureUuid": "ba74d434-5615-4a02-b0c3-30d6abb9184c"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "ba74d434-5615-4a02-b0c3-30d6abb9184c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ba74d434-5615-4a02-b0c3-30d6abb9184c@6c48a",
"displayName": "倍数",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ba74d434-5615-4a02-b0c3-30d6abb9184c",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "ba74d434-5615-4a02-b0c3-30d6abb9184c@f9941",
"displayName": "倍数",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 601,
"height": 82,
"rawWidth": 601,
"rawHeight": 82,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-300.5,
-41,
0,
300.5,
-41,
0,
-300.5,
41,
0,
300.5,
41,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
82,
601,
82,
0,
0,
601,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-300.5,
-41,
0
],
"maxPos": [
300.5,
41,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ba74d434-5615-4a02-b0c3-30d6abb9184c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ba74d434-5615-4a02-b0c3-30d6abb9184c@6c48a"
}
}

View File

@ -0,0 +1,15 @@
info face="Arial" size=74 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=74 base=26 scaleW=638 scaleH=74 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="免费加载进度.png"
chars count=11
char id=48 x=0 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=49 x=58 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=52 x=116 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=54 x=174 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=37 x=232 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=51 x=290 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=53 x=348 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=55 x=406 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=56 x=464 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=57 x=522 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15
char id=50 x=580 y=0 width=58 height=74 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=15

View File

@ -0,0 +1,143 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "028037fd-62a9-4b67-a9a4-97d9889ef0b5",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 74,
"fontSize": 74,
"atlasName": "免费加载进度.png",
"fontDefDictionary": {
"37": {
"rect": {
"x": 232,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"48": {
"rect": {
"x": 0,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"49": {
"rect": {
"x": 58,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"50": {
"rect": {
"x": 580,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"51": {
"rect": {
"x": 290,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"52": {
"rect": {
"x": 116,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"53": {
"rect": {
"x": 348,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"54": {
"rect": {
"x": 174,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"55": {
"rect": {
"x": 406,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"56": {
"rect": {
"x": 464,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
},
"57": {
"rect": {
"x": 522,
"y": 0,
"width": 58,
"height": 74
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 40
}
},
"kerningDict": {}
},
"fontSize": 74,
"textureUuid": "2d23cc78-23d1-4917-bc09-a0ac66330ab1"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2d23cc78-23d1-4917-bc09-a0ac66330ab1",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2d23cc78-23d1-4917-bc09-a0ac66330ab1@6c48a",
"displayName": "免费加载进度",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2d23cc78-23d1-4917-bc09-a0ac66330ab1",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "2d23cc78-23d1-4917-bc09-a0ac66330ab1@f9941",
"displayName": "免费加载进度",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 637,
"height": 74,
"rawWidth": 638,
"rawHeight": 74,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-318.5,
-37,
0,
318.5,
-37,
0,
-318.5,
37,
0,
318.5,
37,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
74,
637,
74,
0,
0,
637,
0
],
"nuv": [
0,
0,
0.9984326018808778,
0,
0,
1,
0.9984326018808778,
1
],
"minPos": [
-318.5,
-37,
0
],
"maxPos": [
318.5,
37,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2d23cc78-23d1-4917-bc09-a0ac66330ab1@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2d23cc78-23d1-4917-bc09-a0ac66330ab1@6c48a"
}
}

View File

@ -0,0 +1,14 @@
info face="Arial" size=64 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=64 base=26 scaleW=415 scaleH=66 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="免费旋转数字.png"
chars count=10
char id=49 x=0 y=0 width=26 height=66 xoffset=0 yoffset=0 xadvance=26 page=0 chnl=15
char id=52 x=26 y=0 width=46 height=66 xoffset=0 yoffset=0 xadvance=46 page=0 chnl=15
char id=53 x=72 y=0 width=43 height=65 xoffset=0 yoffset=1 xadvance=43 page=0 chnl=15
char id=54 x=115 y=0 width=43 height=64 xoffset=0 yoffset=1 xadvance=43 page=0 chnl=15
char id=55 x=158 y=0 width=38 height=64 xoffset=0 yoffset=1 xadvance=38 page=0 chnl=15
char id=56 x=196 y=0 width=45 height=64 xoffset=0 yoffset=1 xadvance=45 page=0 chnl=15
char id=57 x=241 y=0 width=43 height=64 xoffset=0 yoffset=1 xadvance=43 page=0 chnl=15
char id=48 x=284 y=0 width=46 height=65 xoffset=0 yoffset=1 xadvance=46 page=0 chnl=15
char id=50 x=330 y=0 width=43 height=66 xoffset=0 yoffset=0 xadvance=43 page=0 chnl=15
char id=51 x=373 y=0 width=42 height=65 xoffset=0 yoffset=1 xadvance=42 page=0 chnl=15

View File

@ -0,0 +1,132 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "0c603a88-f90d-4f74-93ad-e66475ad5ff3",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 64,
"fontSize": 64,
"atlasName": "免费旋转数字.png",
"fontDefDictionary": {
"48": {
"rect": {
"x": 284,
"y": 0,
"width": 46,
"height": 65
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 46
},
"49": {
"rect": {
"x": 0,
"y": 0,
"width": 26,
"height": 66
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 26
},
"50": {
"rect": {
"x": 330,
"y": 0,
"width": 43,
"height": 66
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 43
},
"51": {
"rect": {
"x": 373,
"y": 0,
"width": 42,
"height": 65
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 42
},
"52": {
"rect": {
"x": 26,
"y": 0,
"width": 46,
"height": 66
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 46
},
"53": {
"rect": {
"x": 72,
"y": 0,
"width": 43,
"height": 65
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 43
},
"54": {
"rect": {
"x": 115,
"y": 0,
"width": 43,
"height": 64
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 43
},
"55": {
"rect": {
"x": 158,
"y": 0,
"width": 38,
"height": 64
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 38
},
"56": {
"rect": {
"x": 196,
"y": 0,
"width": 45,
"height": 64
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 45
},
"57": {
"rect": {
"x": 241,
"y": 0,
"width": 43,
"height": 64
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 43
}
},
"kerningDict": {}
},
"fontSize": 64,
"textureUuid": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c@6c48a",
"displayName": "免费旋转数字",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c@f9941",
"displayName": "免费旋转数字",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 415,
"height": 66,
"rawWidth": 415,
"rawHeight": 66,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-207.5,
-33,
0,
207.5,
-33,
0,
-207.5,
33,
0,
207.5,
33,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
66,
415,
66,
0,
0,
415,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-207.5,
-33,
0
],
"maxPos": [
207.5,
33,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "76b1dfbc-d2ca-448e-ab0b-ad1ec81c7b2c@6c48a"
}
}

View File

@ -0,0 +1,15 @@
info face="Arial" size=159 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=159 base=26 scaleW=1292 scaleH=164 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="免费模式倍率.png"
chars count=11
char id=120 x=0 y=0 width=124 height=133 xoffset=0 yoffset=16 xadvance=80 page=0 chnl=15
char id=48 x=124 y=0 width=121 height=163 xoffset=0 yoffset=1 xadvance=80 page=0 chnl=15
char id=51 x=245 y=0 width=122 height=164 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=15
char id=53 x=367 y=0 width=112 height=157 xoffset=0 yoffset=4 xadvance=80 page=0 chnl=15
char id=54 x=479 y=0 width=121 height=163 xoffset=0 yoffset=1 xadvance=80 page=0 chnl=15
char id=55 x=600 y=0 width=122 height=164 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=15
char id=56 x=722 y=0 width=120 height=163 xoffset=0 yoffset=1 xadvance=80 page=0 chnl=15
char id=57 x=842 y=0 width=121 height=163 xoffset=0 yoffset=1 xadvance=80 page=0 chnl=15
char id=49 x=963 y=0 width=91 height=162 xoffset=0 yoffset=1 xadvance=60 page=0 chnl=15
char id=50 x=1054 y=0 width=118 height=164 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=15
char id=52 x=1172 y=0 width=120 height=162 xoffset=0 yoffset=1 xadvance=80 page=0 chnl=15

View File

@ -0,0 +1,143 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "15b4c190-22d9-481f-8673-044bec359b26",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 159,
"fontSize": 159,
"atlasName": "免费模式倍率.png",
"fontDefDictionary": {
"48": {
"rect": {
"x": 124,
"y": 0,
"width": 121,
"height": 163
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 80
},
"49": {
"rect": {
"x": 963,
"y": 0,
"width": 91,
"height": 162
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 60
},
"50": {
"rect": {
"x": 1054,
"y": 0,
"width": 118,
"height": 164
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 80
},
"51": {
"rect": {
"x": 245,
"y": 0,
"width": 122,
"height": 164
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 80
},
"52": {
"rect": {
"x": 1172,
"y": 0,
"width": 120,
"height": 162
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 80
},
"53": {
"rect": {
"x": 367,
"y": 0,
"width": 112,
"height": 157
},
"xOffset": 0,
"yOffset": 4,
"xAdvance": 80
},
"54": {
"rect": {
"x": 479,
"y": 0,
"width": 121,
"height": 163
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 80
},
"55": {
"rect": {
"x": 600,
"y": 0,
"width": 122,
"height": 164
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 80
},
"56": {
"rect": {
"x": 722,
"y": 0,
"width": 120,
"height": 163
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 80
},
"57": {
"rect": {
"x": 842,
"y": 0,
"width": 121,
"height": 163
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 80
},
"120": {
"rect": {
"x": 0,
"y": 0,
"width": 124,
"height": 133
},
"xOffset": 0,
"yOffset": 16,
"xAdvance": 80
}
},
"kerningDict": {}
},
"fontSize": 159,
"textureUuid": "13487470-1823-4138-b2c5-aee1cf4aaf18"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "13487470-1823-4138-b2c5-aee1cf4aaf18",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "13487470-1823-4138-b2c5-aee1cf4aaf18@6c48a",
"displayName": "免费模式倍率",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "13487470-1823-4138-b2c5-aee1cf4aaf18",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "13487470-1823-4138-b2c5-aee1cf4aaf18@f9941",
"displayName": "免费模式倍率",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1292,
"height": 164,
"rawWidth": 1292,
"rawHeight": 164,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-646,
-82,
0,
646,
-82,
0,
-646,
82,
0,
646,
82,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
164,
1292,
164,
0,
0,
1292,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-646,
-82,
0
],
"maxPos": [
646,
82,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "13487470-1823-4138-b2c5-aee1cf4aaf18@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "13487470-1823-4138-b2c5-aee1cf4aaf18@6c48a"
}
}

View File

@ -0,0 +1,15 @@
info face="Arial" size=27 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=27 base=26 scaleW=198 scaleH=30 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="咨询框数字.png"
chars count=11
char id=55 x=0 y=0 width=19 height=30 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15
char id=56 x=19 y=0 width=22 height=29 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=15
char id=57 x=41 y=0 width=20 height=30 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=15
char id=46 x=61 y=0 width=8 height=9 xoffset=0 yoffset=20 xadvance=8 page=0 chnl=15
char id=49 x=69 y=0 width=14 height=30 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
char id=50 x=83 y=0 width=22 height=29 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=15
char id=51 x=105 y=0 width=19 height=30 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15
char id=54 x=124 y=0 width=18 height=30 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15
char id=48 x=142 y=0 width=19 height=30 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15
char id=52 x=161 y=0 width=19 height=30 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15
char id=53 x=180 y=0 width=18 height=30 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15

View File

@ -0,0 +1,143 @@
{
"ver": "1.0.6",
"importer": "bitmap-font",
"imported": true,
"uuid": "9043f421-8f6c-4bf1-92f2-a46b0f65d2fb",
"files": [
".json"
],
"subMetas": {},
"userData": {
"_fntConfig": {
"commonHeight": 27,
"fontSize": 27,
"atlasName": "咨询框数字.png",
"fontDefDictionary": {
"46": {
"rect": {
"x": 61,
"y": 0,
"width": 8,
"height": 9
},
"xOffset": 0,
"yOffset": 20,
"xAdvance": 8
},
"48": {
"rect": {
"x": 142,
"y": 0,
"width": 19,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 19
},
"49": {
"rect": {
"x": 69,
"y": 0,
"width": 14,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 14
},
"50": {
"rect": {
"x": 83,
"y": 0,
"width": 22,
"height": 29
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 22
},
"51": {
"rect": {
"x": 105,
"y": 0,
"width": 19,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 19
},
"52": {
"rect": {
"x": 161,
"y": 0,
"width": 19,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 19
},
"53": {
"rect": {
"x": 180,
"y": 0,
"width": 18,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 18
},
"54": {
"rect": {
"x": 124,
"y": 0,
"width": 18,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 18
},
"55": {
"rect": {
"x": 0,
"y": 0,
"width": 19,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 19
},
"56": {
"rect": {
"x": 19,
"y": 0,
"width": 22,
"height": 29
},
"xOffset": 0,
"yOffset": 1,
"xAdvance": 22
},
"57": {
"rect": {
"x": 41,
"y": 0,
"width": 20,
"height": 30
},
"xOffset": 0,
"yOffset": 0,
"xAdvance": 20
}
},
"kerningDict": {}
},
"fontSize": 27,
"textureUuid": "7365f45d-3e81-437e-a984-285072ac53ed"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "7365f45d-3e81-437e-a984-285072ac53ed",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7365f45d-3e81-437e-a984-285072ac53ed@6c48a",
"displayName": "咨询框数字",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7365f45d-3e81-437e-a984-285072ac53ed",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "7365f45d-3e81-437e-a984-285072ac53ed@f9941",
"displayName": "咨询框数字",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 198,
"height": 30,
"rawWidth": 198,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-99,
-15,
0,
99,
-15,
0,
-99,
15,
0,
99,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
198,
30,
0,
0,
198,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-99,
-15,
0
],
"maxPos": [
99,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7365f45d-3e81-437e-a984-285072ac53ed@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7365f45d-3e81-437e-a984-285072ac53ed@6c48a"
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "e0ec2651-0a40-48f0-9a40-2111242d734a",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "46de9563-d62d-4828-a40b-b7a0afabab65",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "46de9563-d62d-4828-a40b-b7a0afabab65@6c48a",
"displayName": "btn_0",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "46de9563-d62d-4828-a40b-b7a0afabab65",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "46de9563-d62d-4828-a40b-b7a0afabab65@f9941",
"displayName": "btn_0",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 569,
"height": 227,
"rawWidth": 569,
"rawHeight": 227,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-284.5,
-113.5,
0,
284.5,
-113.5,
0,
-284.5,
113.5,
0,
284.5,
113.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
227,
569,
227,
0,
0,
569,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-284.5,
-113.5,
0
],
"maxPos": [
284.5,
113.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "46de9563-d62d-4828-a40b-b7a0afabab65@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "46de9563-d62d-4828-a40b-b7a0afabab65@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "583c2ef9-9208-4122-8972-1e22b47f4a54",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "583c2ef9-9208-4122-8972-1e22b47f4a54@6c48a",
"displayName": "mfjz_bg",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "583c2ef9-9208-4122-8972-1e22b47f4a54",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "583c2ef9-9208-4122-8972-1e22b47f4a54@f9941",
"displayName": "mfjz_bg",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1080,
"height": 2360,
"rawWidth": 1080,
"rawHeight": 2360,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-1180,
0,
540,
-1180,
0,
-540,
1180,
0,
540,
1180,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
2360,
1080,
2360,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-1180,
0
],
"maxPos": [
540,
1180,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "583c2ef9-9208-4122-8972-1e22b47f4a54@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "583c2ef9-9208-4122-8972-1e22b47f4a54@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b66cb4a9-c294-46a2-8750-eacd091ec465",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b66cb4a9-c294-46a2-8750-eacd091ec465@6c48a",
"displayName": "mfjz_jz",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b66cb4a9-c294-46a2-8750-eacd091ec465",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "b66cb4a9-c294-46a2-8750-eacd091ec465@f9941",
"displayName": "mfjz_jz",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 239,
"height": 239,
"rawWidth": 239,
"rawHeight": 239,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-119.5,
-119.5,
0,
119.5,
-119.5,
0,
-119.5,
119.5,
0,
119.5,
119.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
239,
239,
239,
0,
0,
239,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-119.5,
-119.5,
0
],
"maxPos": [
119.5,
119.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b66cb4a9-c294-46a2-8750-eacd091ec465@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b66cb4a9-c294-46a2-8750-eacd091ec465@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d386a958-fcaa-4358-bd94-4e30e48b23e8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d386a958-fcaa-4358-bd94-4e30e48b23e8@6c48a",
"displayName": "mfjz_ren",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d386a958-fcaa-4358-bd94-4e30e48b23e8",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "d386a958-fcaa-4358-bd94-4e30e48b23e8@f9941",
"displayName": "mfjz_ren",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1080,
"height": 1961,
"rawWidth": 1080,
"rawHeight": 1961,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-980.5,
0,
540,
-980.5,
0,
-540,
980.5,
0,
540,
980.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
1961,
1080,
1961,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-980.5,
0
],
"maxPos": [
540,
980.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d386a958-fcaa-4358-bd94-4e30e48b23e8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d386a958-fcaa-4358-bd94-4e30e48b23e8@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "7a46edf0-813f-4966-a49c-78f684950cab",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7a46edf0-813f-4966-a49c-78f684950cab@6c48a",
"displayName": "jb",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7a46edf0-813f-4966-a49c-78f684950cab",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "7a46edf0-813f-4966-a49c-78f684950cab@f9941",
"displayName": "jb",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 183,
"height": 133,
"rawWidth": 183,
"rawHeight": 133,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-91.5,
-66.5,
0,
91.5,
-66.5,
0,
-91.5,
66.5,
0,
91.5,
66.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
133,
183,
133,
0,
0,
183,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-91.5,
-66.5,
0
],
"maxPos": [
91.5,
66.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7a46edf0-813f-4966-a49c-78f684950cab@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7a46edf0-813f-4966-a49c-78f684950cab@6c48a"
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "5e43d55f-b818-4a6d-accb-8af9bb103554",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6a2d1187-4a13-49e1-9061-44ee952f6aaf",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6a2d1187-4a13-49e1-9061-44ee952f6aaf@6c48a",
"displayName": "bg",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6a2d1187-4a13-49e1-9061-44ee952f6aaf",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "6a2d1187-4a13-49e1-9061-44ee952f6aaf@f9941",
"displayName": "bg",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1080,
"height": 2360,
"rawWidth": 1080,
"rawHeight": 2360,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-1180,
0,
540,
-1180,
0,
-540,
1180,
0,
540,
1180,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
2360,
1080,
2360,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-1180,
0
],
"maxPos": [
540,
1180,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6a2d1187-4a13-49e1-9061-44ee952f6aaf@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6a2d1187-4a13-49e1-9061-44ee952f6aaf@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "457b0a55-2c25-4718-9788-4d34677679fb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "457b0a55-2c25-4718-9788-4d34677679fb@6c48a",
"displayName": "logo_en",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "457b0a55-2c25-4718-9788-4d34677679fb",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "457b0a55-2c25-4718-9788-4d34677679fb@f9941",
"displayName": "logo_en",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 979,
"height": 530,
"rawWidth": 979,
"rawHeight": 530,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-489.5,
-265,
0,
489.5,
-265,
0,
-489.5,
265,
0,
489.5,
265,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
530,
979,
530,
0,
0,
979,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-489.5,
-265,
0
],
"maxPos": [
489.5,
265,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "457b0a55-2c25-4718-9788-4d34677679fb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "457b0a55-2c25-4718-9788-4d34677679fb@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f8018439-cd40-433c-a1b4-b6219abdb230",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f8018439-cd40-433c-a1b4-b6219abdb230@6c48a",
"displayName": "logo_zh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f8018439-cd40-433c-a1b4-b6219abdb230",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f8018439-cd40-433c-a1b4-b6219abdb230@f9941",
"displayName": "logo_zh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 995,
"height": 405,
"rawWidth": 995,
"rawHeight": 405,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-497.5,
-202.5,
0,
497.5,
-202.5,
0,
-497.5,
202.5,
0,
497.5,
202.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
405,
995,
405,
0,
0,
995,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-497.5,
-202.5,
0
],
"maxPos": [
497.5,
202.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f8018439-cd40-433c-a1b4-b6219abdb230@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f8018439-cd40-433c-a1b4-b6219abdb230@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09@6c48a",
"displayName": "横屏",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09@f9941",
"displayName": "横屏",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 960,
"height": 640,
"rawWidth": 960,
"rawHeight": 640,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-480,
-320,
0,
480,
-320,
0,
-480,
320,
0,
480,
320,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
640,
960,
640,
0,
0,
960,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-480,
-320,
0
],
"maxPos": [
480,
320,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09@6c48a"
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "26f21ef5-383b-437a-abfa-1cb98e2f2e42",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "db494bbb-d5be-4ccc-90df-ca0287d09c0e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "db494bbb-d5be-4ccc-90df-ca0287d09c0e@6c48a",
"displayName": "0_en",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "db494bbb-d5be-4ccc-90df-ca0287d09c0e",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "db494bbb-d5be-4ccc-90df-ca0287d09c0e@f9941",
"displayName": "0_en",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": 0.5,
"trimX": 4,
"trimY": 0,
"width": 190,
"height": 203,
"rawWidth": 195,
"rawHeight": 204,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-95,
-101.5,
0,
95,
-101.5,
0,
-95,
101.5,
0,
95,
101.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
4,
204,
194,
204,
4,
1,
194,
1
],
"nuv": [
0.020512820512820513,
0.004901960784313725,
0.9948717948717949,
0.004901960784313725,
0.020512820512820513,
1,
0.9948717948717949,
1
],
"minPos": [
-95,
-101.5,
0
],
"maxPos": [
95,
101.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "db494bbb-d5be-4ccc-90df-ca0287d09c0e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "db494bbb-d5be-4ccc-90df-ca0287d09c0e@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "73decdaa-3b31-46b6-b11b-d88c53c74f79",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "73decdaa-3b31-46b6-b11b-d88c53c74f79@6c48a",
"displayName": "0_en_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "73decdaa-3b31-46b6-b11b-d88c53c74f79",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "73decdaa-3b31-46b6-b11b-d88c53c74f79@f9941",
"displayName": "0_en_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": 0.5,
"trimX": 4,
"trimY": 2,
"width": 185,
"height": 218,
"rawWidth": 190,
"rawHeight": 223,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-92.5,
-109,
0,
92.5,
-109,
0,
-92.5,
109,
0,
92.5,
109,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
4,
221,
189,
221,
4,
3,
189,
3
],
"nuv": [
0.021052631578947368,
0.013452914798206279,
0.9947368421052631,
0.013452914798206279,
0.021052631578947368,
0.9910313901345291,
0.9947368421052631,
0.9910313901345291
],
"minPos": [
-92.5,
-109,
0
],
"maxPos": [
92.5,
109,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "73decdaa-3b31-46b6-b11b-d88c53c74f79@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "73decdaa-3b31-46b6-b11b-d88c53c74f79@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a45003c1-2c74-431a-a202-04a483eb0907",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a45003c1-2c74-431a-a202-04a483eb0907@6c48a",
"displayName": "0_zh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a45003c1-2c74-431a-a202-04a483eb0907",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "a45003c1-2c74-431a-a202-04a483eb0907@f9941",
"displayName": "0_zh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 4,
"trimX": 10,
"trimY": 0,
"width": 174,
"height": 196,
"rawWidth": 195,
"rawHeight": 204,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-87,
-98,
0,
87,
-98,
0,
-87,
98,
0,
87,
98,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
10,
204,
184,
204,
10,
8,
184,
8
],
"nuv": [
0.05128205128205128,
0.0392156862745098,
0.9435897435897436,
0.0392156862745098,
0.05128205128205128,
1,
0.9435897435897436,
1
],
"minPos": [
-87,
-98,
0
],
"maxPos": [
87,
98,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a45003c1-2c74-431a-a202-04a483eb0907@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a45003c1-2c74-431a-a202-04a483eb0907@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4b6aeec8-6426-42f1-a424-fce3421b3691",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4b6aeec8-6426-42f1-a424-fce3421b3691@6c48a",
"displayName": "0_zh_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4b6aeec8-6426-42f1-a424-fce3421b3691",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "4b6aeec8-6426-42f1-a424-fce3421b3691@f9941",
"displayName": "0_zh_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 4,
"trimX": 10,
"trimY": 2,
"width": 169,
"height": 211,
"rawWidth": 190,
"rawHeight": 223,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-84.5,
-105.5,
0,
84.5,
-105.5,
0,
-84.5,
105.5,
0,
84.5,
105.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
10,
221,
179,
221,
10,
10,
179,
10
],
"nuv": [
0.05263157894736842,
0.04484304932735426,
0.9421052631578948,
0.04484304932735426,
0.05263157894736842,
0.9910313901345291,
0.9421052631578948,
0.9910313901345291
],
"minPos": [
-84.5,
-105.5,
0
],
"maxPos": [
84.5,
105.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4b6aeec8-6426-42f1-a424-fce3421b3691@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4b6aeec8-6426-42f1-a424-fce3421b3691@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4b16e9a8-7c77-4f25-8326-055da9a79a3b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4b16e9a8-7c77-4f25-8326-055da9a79a3b@6c48a",
"displayName": "1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4b16e9a8-7c77-4f25-8326-055da9a79a3b",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "4b16e9a8-7c77-4f25-8326-055da9a79a3b@f9941",
"displayName": "1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -3.5,
"trimX": 0,
"trimY": 7,
"width": 174,
"height": 153,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-87,
-76.5,
0,
87,
-76.5,
0,
-87,
76.5,
0,
87,
76.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
153,
174,
153,
0,
0,
174,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.95625,
1,
0.95625
],
"minPos": [
-87,
-76.5,
0
],
"maxPos": [
87,
76.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4b16e9a8-7c77-4f25-8326-055da9a79a3b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4b16e9a8-7c77-4f25-8326-055da9a79a3b@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "99c67838-f5e7-414f-ad83-5c6777f44770",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "99c67838-f5e7-414f-ad83-5c6777f44770@6c48a",
"displayName": "1_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "99c67838-f5e7-414f-ad83-5c6777f44770",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "99c67838-f5e7-414f-ad83-5c6777f44770@f9941",
"displayName": "1_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -3.5,
"trimX": 0,
"trimY": 7,
"width": 174,
"height": 173,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-87,
-86.5,
0,
87,
-86.5,
0,
-87,
86.5,
0,
87,
86.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
173,
174,
173,
0,
0,
174,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.9611111111111111,
1,
0.9611111111111111
],
"minPos": [
-87,
-86.5,
0
],
"maxPos": [
87,
86.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "99c67838-f5e7-414f-ad83-5c6777f44770@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "99c67838-f5e7-414f-ad83-5c6777f44770@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d75c5679-5ca1-4028-938a-b2e7d952050b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d75c5679-5ca1-4028-938a-b2e7d952050b@6c48a",
"displayName": "2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d75c5679-5ca1-4028-938a-b2e7d952050b",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "d75c5679-5ca1-4028-938a-b2e7d952050b@f9941",
"displayName": "2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -3.5,
"trimX": 2,
"trimY": 7,
"width": 171,
"height": 153,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-85.5,
-76.5,
0,
85.5,
-76.5,
0,
-85.5,
76.5,
0,
85.5,
76.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
153,
173,
153,
2,
0,
173,
0
],
"nuv": [
0.011494252873563218,
0,
0.9942528735632183,
0,
0.011494252873563218,
0.95625,
0.9942528735632183,
0.95625
],
"minPos": [
-85.5,
-76.5,
0
],
"maxPos": [
85.5,
76.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d75c5679-5ca1-4028-938a-b2e7d952050b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d75c5679-5ca1-4028-938a-b2e7d952050b@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f1507487-3dda-4b01-859d-33289f71c826",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f1507487-3dda-4b01-859d-33289f71c826@6c48a",
"displayName": "2_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f1507487-3dda-4b01-859d-33289f71c826",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f1507487-3dda-4b01-859d-33289f71c826@f9941",
"displayName": "2_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 7,
"trimY": 12,
"width": 161,
"height": 156,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-80.5,
-78,
0,
80.5,
-78,
0,
-80.5,
78,
0,
80.5,
78,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
7,
168,
168,
168,
7,
12,
168,
12
],
"nuv": [
0.040229885057471264,
0.06666666666666667,
0.9655172413793104,
0.06666666666666667,
0.040229885057471264,
0.9333333333333333,
0.9655172413793104,
0.9333333333333333
],
"minPos": [
-80.5,
-78,
0
],
"maxPos": [
80.5,
78,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f1507487-3dda-4b01-859d-33289f71c826@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f1507487-3dda-4b01-859d-33289f71c826@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9a0155f4-a16a-4b71-8afd-afb9f9e0152f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9a0155f4-a16a-4b71-8afd-afb9f9e0152f@6c48a",
"displayName": "3",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9a0155f4-a16a-4b71-8afd-afb9f9e0152f",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "9a0155f4-a16a-4b71-8afd-afb9f9e0152f@f9941",
"displayName": "3",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -6,
"trimX": 3,
"trimY": 15,
"width": 169,
"height": 142,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-84.5,
-71,
0,
84.5,
-71,
0,
-84.5,
71,
0,
84.5,
71,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
3,
145,
172,
145,
3,
3,
172,
3
],
"nuv": [
0.017241379310344827,
0.01875,
0.9885057471264368,
0.01875,
0.017241379310344827,
0.90625,
0.9885057471264368,
0.90625
],
"minPos": [
-84.5,
-71,
0
],
"maxPos": [
84.5,
71,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9a0155f4-a16a-4b71-8afd-afb9f9e0152f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9a0155f4-a16a-4b71-8afd-afb9f9e0152f@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a1459334-b6df-4fac-a852-83b2709b2ded",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a1459334-b6df-4fac-a852-83b2709b2ded@6c48a",
"displayName": "3_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a1459334-b6df-4fac-a852-83b2709b2ded",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "a1459334-b6df-4fac-a852-83b2709b2ded@f9941",
"displayName": "3_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -5,
"trimX": 4,
"trimY": 15,
"width": 168,
"height": 160,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-84,
-80,
0,
84,
-80,
0,
-84,
80,
0,
84,
80,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
4,
165,
172,
165,
4,
5,
172,
5
],
"nuv": [
0.022988505747126436,
0.027777777777777776,
0.9885057471264368,
0.027777777777777776,
0.022988505747126436,
0.9166666666666666,
0.9885057471264368,
0.9166666666666666
],
"minPos": [
-84,
-80,
0
],
"maxPos": [
84,
80,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a1459334-b6df-4fac-a852-83b2709b2ded@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a1459334-b6df-4fac-a852-83b2709b2ded@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "622e8176-cfbf-4d68-be76-3af63e8aa5cf",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "622e8176-cfbf-4d68-be76-3af63e8aa5cf@6c48a",
"displayName": "4",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "622e8176-cfbf-4d68-be76-3af63e8aa5cf",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "622e8176-cfbf-4d68-be76-3af63e8aa5cf@f9941",
"displayName": "4",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -3,
"trimX": 34,
"trimY": 24,
"width": 107,
"height": 118,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-53.5,
-59,
0,
53.5,
-59,
0,
-53.5,
59,
0,
53.5,
59,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
34,
136,
141,
136,
34,
18,
141,
18
],
"nuv": [
0.19540229885057472,
0.1125,
0.8103448275862069,
0.1125,
0.19540229885057472,
0.85,
0.8103448275862069,
0.85
],
"minPos": [
-53.5,
-59,
0
],
"maxPos": [
53.5,
59,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "622e8176-cfbf-4d68-be76-3af63e8aa5cf@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "622e8176-cfbf-4d68-be76-3af63e8aa5cf@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "851a229f-f1c8-4aff-b3eb-fad270355844",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "851a229f-f1c8-4aff-b3eb-fad270355844@6c48a",
"displayName": "4_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "851a229f-f1c8-4aff-b3eb-fad270355844",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "851a229f-f1c8-4aff-b3eb-fad270355844@f9941",
"displayName": "4_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -3,
"trimX": 34,
"trimY": 24,
"width": 107,
"height": 138,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-53.5,
-69,
0,
53.5,
-69,
0,
-53.5,
69,
0,
53.5,
69,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
34,
156,
141,
156,
34,
18,
141,
18
],
"nuv": [
0.19540229885057472,
0.1,
0.8103448275862069,
0.1,
0.19540229885057472,
0.8666666666666667,
0.8103448275862069,
0.8666666666666667
],
"minPos": [
-53.5,
-69,
0
],
"maxPos": [
53.5,
69,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "851a229f-f1c8-4aff-b3eb-fad270355844@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "851a229f-f1c8-4aff-b3eb-fad270355844@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0c5abf78-eab3-4840-8fa0-3cd9678a11ed",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0c5abf78-eab3-4840-8fa0-3cd9678a11ed@6c48a",
"displayName": "5",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0c5abf78-eab3-4840-8fa0-3cd9678a11ed",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "0c5abf78-eab3-4840-8fa0-3cd9678a11ed@f9941",
"displayName": "5",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -6,
"trimX": 24,
"trimY": 24,
"width": 126,
"height": 124,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-63,
-62,
0,
63,
-62,
0,
-63,
62,
0,
63,
62,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
24,
136,
150,
136,
24,
12,
150,
12
],
"nuv": [
0.13793103448275862,
0.075,
0.8620689655172413,
0.075,
0.13793103448275862,
0.85,
0.8620689655172413,
0.85
],
"minPos": [
-63,
-62,
0
],
"maxPos": [
63,
62,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0c5abf78-eab3-4840-8fa0-3cd9678a11ed@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0c5abf78-eab3-4840-8fa0-3cd9678a11ed@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "68a461b9-3f30-4a68-80a7-4b804881372a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "68a461b9-3f30-4a68-80a7-4b804881372a@6c48a",
"displayName": "5_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "68a461b9-3f30-4a68-80a7-4b804881372a",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "68a461b9-3f30-4a68-80a7-4b804881372a@f9941",
"displayName": "5_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -4,
"trimX": 25,
"trimY": 23,
"width": 125,
"height": 142,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-62.5,
-71,
0,
62.5,
-71,
0,
-62.5,
71,
0,
62.5,
71,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
25,
157,
150,
157,
25,
15,
150,
15
],
"nuv": [
0.14367816091954022,
0.08333333333333333,
0.8620689655172413,
0.08333333333333333,
0.14367816091954022,
0.8722222222222222,
0.8620689655172413,
0.8722222222222222
],
"minPos": [
-62.5,
-71,
0
],
"maxPos": [
62.5,
71,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "68a461b9-3f30-4a68-80a7-4b804881372a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "68a461b9-3f30-4a68-80a7-4b804881372a@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "efccbee0-20f0-4bb3-8be8-ee38c4814d83",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "efccbee0-20f0-4bb3-8be8-ee38c4814d83@6c48a",
"displayName": "6",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "efccbee0-20f0-4bb3-8be8-ee38c4814d83",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "efccbee0-20f0-4bb3-8be8-ee38c4814d83@f9941",
"displayName": "6",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -5,
"trimX": 31,
"trimY": 19,
"width": 113,
"height": 132,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-56.5,
-66,
0,
56.5,
-66,
0,
-56.5,
66,
0,
56.5,
66,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
31,
141,
144,
141,
31,
9,
144,
9
],
"nuv": [
0.1781609195402299,
0.05625,
0.8275862068965517,
0.05625,
0.1781609195402299,
0.88125,
0.8275862068965517,
0.88125
],
"minPos": [
-56.5,
-66,
0
],
"maxPos": [
56.5,
66,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "efccbee0-20f0-4bb3-8be8-ee38c4814d83@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "efccbee0-20f0-4bb3-8be8-ee38c4814d83@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "93b20499-4365-45a5-90aa-d0f7f688be2e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "93b20499-4365-45a5-90aa-d0f7f688be2e@6c48a",
"displayName": "6_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "93b20499-4365-45a5-90aa-d0f7f688be2e",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "93b20499-4365-45a5-90aa-d0f7f688be2e@f9941",
"displayName": "6_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -3.5,
"trimX": 32,
"trimY": 18,
"width": 112,
"height": 151,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-56,
-75.5,
0,
56,
-75.5,
0,
-56,
75.5,
0,
56,
75.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
32,
162,
144,
162,
32,
11,
144,
11
],
"nuv": [
0.1839080459770115,
0.06111111111111111,
0.8275862068965517,
0.06111111111111111,
0.1839080459770115,
0.9,
0.8275862068965517,
0.9
],
"minPos": [
-56,
-75.5,
0
],
"maxPos": [
56,
75.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "93b20499-4365-45a5-90aa-d0f7f688be2e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "93b20499-4365-45a5-90aa-d0f7f688be2e@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2485f486-d8aa-474d-b5dd-3718d904c84a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2485f486-d8aa-474d-b5dd-3718d904c84a@6c48a",
"displayName": "7",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2485f486-d8aa-474d-b5dd-3718d904c84a",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "2485f486-d8aa-474d-b5dd-3718d904c84a@f9941",
"displayName": "7",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -6.5,
"trimX": 19,
"trimY": 20,
"width": 138,
"height": 133,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-66.5,
0,
69,
-66.5,
0,
-69,
66.5,
0,
69,
66.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
19,
140,
157,
140,
19,
7,
157,
7
],
"nuv": [
0.10919540229885058,
0.04375,
0.9022988505747126,
0.04375,
0.10919540229885058,
0.875,
0.9022988505747126,
0.875
],
"minPos": [
-69,
-66.5,
0
],
"maxPos": [
69,
66.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2485f486-d8aa-474d-b5dd-3718d904c84a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2485f486-d8aa-474d-b5dd-3718d904c84a@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "248a17bf-4d25-4641-ba20-aba313175245",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "248a17bf-4d25-4641-ba20-aba313175245@6c48a",
"displayName": "7_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "248a17bf-4d25-4641-ba20-aba313175245",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "248a17bf-4d25-4641-ba20-aba313175245@f9941",
"displayName": "7_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -5.5,
"trimX": 19,
"trimY": 20,
"width": 138,
"height": 151,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-75.5,
0,
69,
-75.5,
0,
-69,
75.5,
0,
69,
75.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
19,
160,
157,
160,
19,
9,
157,
9
],
"nuv": [
0.10919540229885058,
0.05,
0.9022988505747126,
0.05,
0.10919540229885058,
0.8888888888888888,
0.9022988505747126,
0.8888888888888888
],
"minPos": [
-69,
-75.5,
0
],
"maxPos": [
69,
75.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "248a17bf-4d25-4641-ba20-aba313175245@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "248a17bf-4d25-4641-ba20-aba313175245@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e5db4329-438f-4995-a0c4-cc66ccfac66f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e5db4329-438f-4995-a0c4-cc66ccfac66f@6c48a",
"displayName": "8",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e5db4329-438f-4995-a0c4-cc66ccfac66f",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "e5db4329-438f-4995-a0c4-cc66ccfac66f@f9941",
"displayName": "8",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -5.5,
"trimX": 19,
"trimY": 19,
"width": 138,
"height": 133,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-66.5,
0,
69,
-66.5,
0,
-69,
66.5,
0,
69,
66.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
19,
141,
157,
141,
19,
8,
157,
8
],
"nuv": [
0.10919540229885058,
0.05,
0.9022988505747126,
0.05,
0.10919540229885058,
0.88125,
0.9022988505747126,
0.88125
],
"minPos": [
-69,
-66.5,
0
],
"maxPos": [
69,
66.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e5db4329-438f-4995-a0c4-cc66ccfac66f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e5db4329-438f-4995-a0c4-cc66ccfac66f@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6f761a26-1db6-4512-9cf9-a6bf865668fd",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6f761a26-1db6-4512-9cf9-a6bf865668fd@6c48a",
"displayName": "8_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6f761a26-1db6-4512-9cf9-a6bf865668fd",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "6f761a26-1db6-4512-9cf9-a6bf865668fd@f9941",
"displayName": "8_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -5,
"trimX": 19,
"trimY": 20,
"width": 138,
"height": 150,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-75,
0,
69,
-75,
0,
-69,
75,
0,
69,
75,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
19,
160,
157,
160,
19,
10,
157,
10
],
"nuv": [
0.10919540229885058,
0.05555555555555555,
0.9022988505747126,
0.05555555555555555,
0.10919540229885058,
0.8888888888888888,
0.9022988505747126,
0.8888888888888888
],
"minPos": [
-69,
-75,
0
],
"maxPos": [
69,
75,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6f761a26-1db6-4512-9cf9-a6bf865668fd@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6f761a26-1db6-4512-9cf9-a6bf865668fd@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "99254b5a-6a18-40f8-8961-38925b7fd721",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "99254b5a-6a18-40f8-8961-38925b7fd721@6c48a",
"displayName": "9",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "99254b5a-6a18-40f8-8961-38925b7fd721",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "99254b5a-6a18-40f8-8961-38925b7fd721@f9941",
"displayName": "9",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -6,
"trimX": 20,
"trimY": 19,
"width": 135,
"height": 134,
"rawWidth": 174,
"rawHeight": 160,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-67.5,
-67,
0,
67.5,
-67,
0,
-67.5,
67,
0,
67.5,
67,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
20,
141,
155,
141,
20,
7,
155,
7
],
"nuv": [
0.11494252873563218,
0.04375,
0.8908045977011494,
0.04375,
0.11494252873563218,
0.88125,
0.8908045977011494,
0.88125
],
"minPos": [
-67.5,
-67,
0
],
"maxPos": [
67.5,
67,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "99254b5a-6a18-40f8-8961-38925b7fd721@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "99254b5a-6a18-40f8-8961-38925b7fd721@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3123530f-7434-4e6e-8bfb-a4bfed754256",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3123530f-7434-4e6e-8bfb-a4bfed754256@6c48a",
"displayName": "9_mh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3123530f-7434-4e6e-8bfb-a4bfed754256",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "3123530f-7434-4e6e-8bfb-a4bfed754256@f9941",
"displayName": "9_mh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -4.5,
"trimX": 20,
"trimY": 19,
"width": 135,
"height": 151,
"rawWidth": 174,
"rawHeight": 180,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-67.5,
-75.5,
0,
67.5,
-75.5,
0,
-67.5,
75.5,
0,
67.5,
75.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
20,
161,
155,
161,
20,
10,
155,
10
],
"nuv": [
0.11494252873563218,
0.05555555555555555,
0.8908045977011494,
0.05555555555555555,
0.11494252873563218,
0.8944444444444445,
0.8908045977011494,
0.8944444444444445
],
"minPos": [
-67.5,
-75.5,
0
],
"maxPos": [
67.5,
75.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3123530f-7434-4e6e-8bfb-a4bfed754256@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3123530f-7434-4e6e-8bfb-a4bfed754256@6c48a"
}
}

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