diff --git a/assets/Game/Scripts/SlotGame.ts b/assets/Game/Scripts/SlotGame.ts index c3855c7..8e0049a 100644 --- a/assets/Game/Scripts/SlotGame.ts +++ b/assets/Game/Scripts/SlotGame.ts @@ -66,44 +66,62 @@ export class SlotGame extends Component { onClickDoubleWin() { 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 on = pt_11.getChildByName('on'); let off = pt_11.getChildByName('off'); let pt_12 = pt_11.getChildByName('pt_12'); 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.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); - this.refreshDoubleWinCount(); - this.refreshBuyBtnState(false); - this.node.emit(SLOT_GAME_EVENT.ON_DOUBLE_WIN_CLICK, this.doubleWinIsOn); - }) - .start(); - } + // 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.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() { @@ -116,21 +134,21 @@ export class SlotGame extends Component { Tween.stopAllByTarget(pt_12); Tween.stopAllByTarget(pt_13); - if (this.doubleWinIsOn) { - pt_12.active = false; - pt_12.setPosition(v3(-35, 0, 0)); - pt_13.active = true; - pt_13.setPosition(v3(35, 0, 0)); - on.active = true; - off.active = false; - } else { - pt_13.active = false; - pt_13.setPosition(v3(35, 0, 0)); - pt_12.active = true; - pt_12.setPosition(v3(-35, 0, 0)); - on.active = false; - off.active = true; - } + // if (this.doubleWinIsOn) { + // pt_12.active = false; + // pt_12.setPosition(v3(-35, 0, 0)); + // pt_13.active = true; + // pt_13.setPosition(v3(35, 0, 0)); + // on.active = true; + // off.active = false; + // } else { + // pt_13.active = false; + // pt_13.setPosition(v3(35, 0, 0)); + // pt_12.active = true; + // pt_12.setPosition(v3(-35, 0, 0)); + // on.active = false; + // off.active = true; + // } } refreshDoubleWinCount() { @@ -158,10 +176,10 @@ export class SlotGame extends Component { } if (this.doubleWinIsOn) { - this.setBtnEnable(this.doubleWinBtnNode, true); + this.setBtnEnable(this.doubleWinBtnNode.getChildByName('pt_11'), true); this.setBtnEnable(this.featureBuyNode, false); } else { - this.setBtnEnable(this.doubleWinBtnNode, this.featureBuyBtnEnabled); + this.setBtnEnable(this.doubleWinBtnNode.getChildByName('pt_11'), this.featureBuyBtnEnabled); this.setBtnEnable(this.featureBuyNode, this.featureBuyBtnEnabled); } } @@ -201,33 +219,33 @@ export class SlotGame extends Component { if (!isFreeGame) { 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 rightPos = new Vec3(-210, -993, 0); - Tween.stopAllByTarget(tudou); - tudou.setPosition(leftPos); - tudou.setScale(1, 1, 0); - tween(tudou) - .to(1, { position: rightPos }) - .call(() => tudou.setScale(-1, 1, 0)) - .to(1, { position: leftPos }) - .call(() => tudou.setScale(1, 1, 0)) - .union() - .repeatForever() - .start(); + // let leftPos = new Vec3(-360, -993, 0); + // let rightPos = new Vec3(-210, -993, 0); + // Tween.stopAllByTarget(tudou); + // tudou.setPosition(leftPos); + // tudou.setScale(1, 1, 0); + // tween(tudou) + // .to(1, { position: rightPos }) + // .call(() => tudou.setScale(-1, 1, 0)) + // .to(1, { position: leftPos }) + // .call(() => tudou.setScale(1, 1, 0)) + // .union() + // .repeatForever() + // .start(); - let flower = this.node.getChildByName('NormalGameBg1').getChildByName('6').getComponent(sp.Skeleton); - // ruchang , chixu ,xiaoshi 三个动画循环播放 0 -> 1 -> 2 -> 0 - let animationNames = ['ruchang', 'chixu', 'xiaoshi']; - let index = 0; + // let flower = this.node.getChildByName('NormalGameBg1').getChildByName('6').getComponent(sp.Skeleton); + // // ruchang , chixu ,xiaoshi 三个动画循环播放 0 -> 1 -> 2 -> 0 + // let animationNames = ['ruchang', 'chixu', 'xiaoshi']; + // let index = 0; - flower.setCompleteListener(() => { - index = (index + 1) % animationNames.length; - flower.setAnimation(0, animationNames[index], false); - }); + // flower.setCompleteListener(() => { + // index = (index + 1) % animationNames.length; + // 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() { 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); maliao.setAnimation(0, 'animation', false); diff --git a/assets/Game/Scripts/SlotMsg.ts b/assets/Game/Scripts/SlotMsg.ts index fd38740..c5a786d 100644 --- a/assets/Game/Scripts/SlotMsg.ts +++ b/assets/Game/Scripts/SlotMsg.ts @@ -9,16 +9,28 @@ const { ccclass, property } = _decorator; export class SlotMsg extends Component { // 展示文字信息 - @property(sp.Skeleton) - smallMsgSpine: sp.Skeleton = null; + // @property(sp.Skeleton) + // 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) - middleMsgSpine: sp.Skeleton = null; + @property(Sprite) + middleMsgSpine: Sprite = null; // 展示总赢分信息 - @property(sp.Skeleton) - largeMsgSpine: sp.Skeleton = null; + @property(Sprite) + largeMsgSpine: Sprite = null; @property(Sprite) i18nSpriteMsg: Sprite = null; @@ -35,11 +47,11 @@ export class SlotMsg extends Component { showLabelMsgForTween() { Tween.stopAllByTarget(this.i18nSpriteMsg.node); this.smallMsgSpine.node.active = true; - this.smallMsgSpine.setAnimation(0, '2', false); - this.smallMsgSpine.setCompleteListener(() => { - this.smallMsgSpine.setAnimation(0, '1', true); - this.smallMsgSpine.setCompleteListener(null); - }); + // this.smallMsgSpine.setAnimation(0, '2', false); + // this.smallMsgSpine.setCompleteListener(() => { + // this.smallMsgSpine.setAnimation(0, '1', true); + // this.smallMsgSpine.setCompleteListener(null); + // }); this.middleMsgSpine.node.active = false; this.largeMsgSpine.node.active = false; @@ -51,7 +63,7 @@ export class SlotMsg extends Component { let delayTime = 0; let moveTime = 0; // 通过数字获取name - let spriteName = ['Normal1', 'Normal6', 'Normal8', 'Normal9']; + let spriteName = ['Normal8', 'Normal9', 'Normal10', 'Normal11']; let setSpriteFrame = () => { startPos.x = this.startPos.x; let spriteFrame = I18nManager.instance.getSpriteFrame(spriteName[add]); @@ -92,11 +104,11 @@ export class SlotMsg extends Component { this.smallMsgSpine.node.active = false; this.middleMsgSpine.node.active = false; this.largeMsgSpine.node.active = true; - this.largeMsgSpine.setAnimation(0, '2', false); - this.largeMsgSpine.setCompleteListener(() => { - this.largeMsgSpine.setAnimation(0, '1', true); - this.largeMsgSpine.setCompleteListener(null); - }); + // this.largeMsgSpine.setAnimation(0, '2', false); + // this.largeMsgSpine.setCompleteListener(() => { + // this.largeMsgSpine.setAnimation(0, '1', true); + // this.largeMsgSpine.setCompleteListener(null); + // }); let msg = this.largeMsgSpine.node.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); @@ -126,11 +138,11 @@ export class SlotMsg extends Component { this.smallMsgSpine.node.active = false; this.middleMsgSpine.node.active = true; this.largeMsgSpine.node.active = false; - this.middleMsgSpine.setAnimation(0, '2', false); - this.middleMsgSpine.setCompleteListener(() => { - this.middleMsgSpine.setAnimation(0, '1', true); - this.middleMsgSpine.setCompleteListener(null); - }); + // this.middleMsgSpine.setAnimation(0, '2', false); + // this.middleMsgSpine.setCompleteListener(() => { + // this.middleMsgSpine.setAnimation(0, '1', true); + // this.middleMsgSpine.setCompleteListener(null); + // }); let msg = this.middleMsgSpine.node.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); @@ -142,11 +154,11 @@ export class SlotMsg extends Component { this.smallMsgSpine.node.active = false; this.middleMsgSpine.node.active = false; this.largeMsgSpine.node.active = true; - this.largeMsgSpine.setAnimation(0, '2', false); - this.largeMsgSpine.setCompleteListener(() => { - this.largeMsgSpine.setAnimation(0, '1', true); - this.largeMsgSpine.setCompleteListener(null); - }); + // this.largeMsgSpine.setAnimation(0, '2', false); + // this.largeMsgSpine.setCompleteListener(() => { + // this.largeMsgSpine.setAnimation(0, '1', true); + // this.largeMsgSpine.setCompleteListener(null); + // }); let msg = this.largeMsgSpine.node.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); diff --git a/assets/Game/SlotScene.prefab b/assets/Game/SlotScene.prefab index 511357d..da82bb9 100644 --- a/assets/Game/SlotScene.prefab +++ b/assets/Game/SlotScene.prefab @@ -22,32 +22,29 @@ "__id__": 2 }, { - "__id__": 586 + "__id__": 676 }, { - "__id__": 704 + "__id__": 1153 }, { - "__id__": 1225 - }, - { - "__id__": 1240 + "__id__": 1170 } ], "_active": true, "_components": [ { - "__id__": 1253 + "__id__": 1185 }, { - "__id__": 1255 + "__id__": 1187 }, { - "__id__": 1257 + "__id__": 1189 } ], "_prefab": { - "__id__": 1259 + "__id__": 1191 }, "_lpos": { "__type__": "cc.Vec3", @@ -91,44 +88,47 @@ "__id__": 3 }, { - "__id__": 67 + "__id__": 37 }, { - "__id__": 107 + "__id__": 77 }, { - "__id__": 301 + "__id__": 271 }, { - "__id__": 399 + "__id__": 369 }, { - "__id__": 439 + "__id__": 108 }, { - "__id__": 138 + "__id__": 403 }, { - "__id__": 473 + "__id__": 444 }, { - "__id__": 514 + "__id__": 448 + }, + { + "__id__": 574 } ], "_active": true, "_components": [ { - "__id__": 579 + "__id__": 669 }, { - "__id__": 581 + "__id__": 671 }, { - "__id__": 583 + "__id__": 673 } ], "_prefab": { - "__id__": 585 + "__id__": 675 }, "_lpos": { "__type__": "cc.Vec3", @@ -172,17 +172,17 @@ "__id__": 4 }, { - "__id__": 58 + "__id__": 22 } ], "_active": true, "_components": [ { - "__id__": 64 + "__id__": 34 } ], "_prefab": { - "__id__": 66 + "__id__": 36 }, "_lpos": { "__type__": "cc.Vec3", @@ -227,37 +227,19 @@ }, { "__id__": 11 - }, - { - "__id__": 17 - }, - { - "__id__": 23 - }, - { - "__id__": 29 - }, - { - "__id__": 35 - }, - { - "__id__": 41 - }, - { - "__id__": 47 } ], "_active": true, "_components": [ { - "__id__": 53 + "__id__": 17 }, { - "__id__": 55 + "__id__": 19 } ], "_prefab": { - "__id__": 57 + "__id__": 21 }, "_lpos": { "__type__": "cc.Vec3", @@ -290,7 +272,7 @@ }, { "__type__": "cc.Node", - "_name": "bg1", + "_name": "dt_bg02", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -312,7 +294,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 975, + "y": -431.06, "z": 0 }, "_lrot": { @@ -352,8 +334,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1080, - "height": 409 + "width": 1078, + "height": 208 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -364,7 +346,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "be/lV7ErVOF4RVrSsGwacG" + "fileId": "44nuJ9njRMBZTd9HE9zLW7" }, { "__type__": "cc.Sprite", @@ -389,7 +371,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "298c1fb8-906c-492f-be13-ee0a524aa891@f9941", + "__uuid__": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -409,7 +391,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "29NsJJOhBPApg/B8yCcw52" + "fileId": "92eX55DbhPQKa4UqEWhQug" }, { "__type__": "cc.PrefabInfo", @@ -419,14 +401,14 @@ "asset": { "__id__": 0 }, - "fileId": "acvuhlZMpOX6phTO54jU1d", + "fileId": "2c+EKaDJVIl7CxO2+mtlgT", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "bg2", + "_name": "dt_bg01", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -448,7 +430,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -670, + "y": 0, "z": 0 }, "_lrot": { @@ -489,7 +471,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1035 + "height": 2360 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -500,7 +482,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "81alGgrqFAjLib89r6fsiR" + "fileId": "9cRCsKdv1Dq6qQa07BNv91" }, { "__type__": "cc.Sprite", @@ -525,7 +507,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "fc174c24-1f1a-48f9-8c60-567311c4f382@f9941", + "__uuid__": "34843e38-4fa3-44d8-a2df-b251cbc0235b@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -545,7 +527,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "15iU3DOQBFw7I9CulrwH2n" + "fileId": "f37Ic8hJlHN5jQoclhHXX+" }, { "__type__": "cc.PrefabInfo", @@ -555,823 +537,7 @@ "asset": { "__id__": 0 }, - "fileId": "511QJq/VZLtL2tzpxQDAkb", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 18 - }, - { - "__id__": 20 - } - ], - "_prefab": { - "__id__": 22 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -188.425, - "y": 883.912, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.3, - "y": 0.3, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 17 - }, - "_enabled": true, - "__prefab": { - "__id__": 19 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 532.7899780273438, - "height": 378.3599853515625 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.4606317841743448, - "y": 1.374986812495463 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "15ZO3IOA1JK5VfINX14rvj" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 17 - }, - "_enabled": true, - "__prefab": { - "__id__": 21 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "d34ff784-6a5a-4397-a50a-a77dc618847f", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "88WgNT189KUobU9X3mwU2v" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f12MN5TKNFq7Hq1kdjDDsz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 24 - }, - { - "__id__": 26 - } - ], - "_prefab": { - "__id__": 28 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -70, - "y": 943, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": { - "__id__": 25 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.2244444387930411, - "y": 0.38250001271565753 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "95PBZXlKhEr6zX+ggWJDz1" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": { - "__id__": 27 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aeeZOb0nxEy6pYlNH0udLD" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1bWzZyNkVNALCnUGRNmPwq", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 30 - }, - { - "__id__": 32 - } - ], - "_prefab": { - "__id__": 34 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 13, - "y": 943, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 29 - }, - "_enabled": true, - "__prefab": { - "__id__": 31 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.2244444387930411, - "y": 0.38250001271565753 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b1DSkQ3WxOJ6kTeuoNbiTE" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 29 - }, - "_enabled": true, - "__prefab": { - "__id__": 33 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "69lRpAlPJAlrE3wRdSuUuY" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5bpHXiDgZKuZwfD+8UfOhr", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 36 - }, - { - "__id__": 38 - } - ], - "_prefab": { - "__id__": 40 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 96, - "y": 943, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 35 - }, - "_enabled": true, - "__prefab": { - "__id__": 37 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.2244444387930411, - "y": 0.38250001271565753 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "17BUdMgJtKn7tdAFapLfNy" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 35 - }, - "_enabled": true, - "__prefab": { - "__id__": 39 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "79T32RNQVD/7EtK4dtDBDh" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a13vuBoyNJd6ZTHY7TXXoq", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 42 - }, - { - "__id__": 44 - } - ], - "_prefab": { - "__id__": 46 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 203, - "y": 1004, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 41 - }, - "_enabled": true, - "__prefab": { - "__id__": 43 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.2244444387930411, - "y": 0.38250001271565753 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e3DzSM91pOs5uDzh1s5pFu" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 41 - }, - "_enabled": true, - "__prefab": { - "__id__": 45 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "36cdLODZtBZZRI/QGi2KVx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c9vMmFobhEBbV4qmBTjI8g", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 48 - }, - { - "__id__": 50 - } - ], - "_prefab": { - "__id__": 52 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 432.491, - "y": 945.226, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 47 - }, - "_enabled": true, - "__prefab": { - "__id__": 49 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.2244444387930411, - "y": 0.38250001271565753 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f1xGzzTapIOrzcHGgS+3qP" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 47 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73SyjWdQNEmIKX8FQM1sHX" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "13M3tGwKtPupGok7AnpIuQ", + "fileId": "60EbTxsgJK2qIMRUUGdDPC", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -1386,7 +552,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 54 + "__id__": 18 }, "_contentSize": { "__type__": "cc.Size", @@ -1414,7 +580,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 20 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1467,23 +633,77 @@ "_parent": { "__id__": 3 }, - "_children": [], + "_children": [ + { + "__id__": 23 + } + ], "_active": true, "_components": [ { - "__id__": 59 + "__id__": 29 }, { - "__id__": 61 + "__id__": 31 } ], "_prefab": { - "__id__": 63 + "__id__": 33 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 311, + "y": 117.288, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "dt_ys_bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 24 + }, + { + "__id__": 26 + } + ], + "_prefab": { + "__id__": 28 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -23.915, "z": 0 }, "_lrot": { @@ -1515,16 +735,102 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 23 }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 25 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1044, + "height": 800 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "912CIhs0dApbfZnwoq/Q2G" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 23 + }, + "_enabled": true, + "__prefab": { + "__id__": 27 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "88kqEI/4pAXov5UrMkSC/d" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "685tjk98VCDpDcXrJPCBFm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 22 + }, + "_enabled": true, + "__prefab": { + "__id__": 30 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 885 + "height": 962 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1543,11 +849,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 22 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 32 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1560,7 +866,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "380a7201-eb49-43e8-816f-8c2b194a4318@f9941", + "__uuid__": "1080ff66-e360-472b-a4fa-fa318630a8fe@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -1605,7 +911,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 35 }, "_contentSize": { "__type__": "cc.Size", @@ -1645,33 +951,33 @@ "__id__": 2 }, "_children": [ + { + "__id__": 38 + }, + { + "__id__": 44 + }, + { + "__id__": 50 + }, + { + "__id__": 56 + }, + { + "__id__": 62 + }, { "__id__": 68 - }, - { - "__id__": 74 - }, - { - "__id__": 80 - }, - { - "__id__": 86 - }, - { - "__id__": 92 - }, - { - "__id__": 98 } ], "_active": false, "_components": [ { - "__id__": 104 + "__id__": 74 } ], "_prefab": { - "__id__": 106 + "__id__": 76 }, "_lpos": { "__type__": "cc.Vec3", @@ -1708,20 +1014,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 67 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 69 + "__id__": 39 }, { - "__id__": 71 + "__id__": 41 } ], "_prefab": { - "__id__": 73 + "__id__": 43 }, "_lpos": { "__type__": "cc.Vec3", @@ -1758,11 +1064,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 70 + "__id__": 40 }, "_contentSize": { "__type__": "cc.Size", @@ -1786,11 +1092,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 72 + "__id__": 42 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1844,20 +1150,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 67 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 75 + "__id__": 45 }, { - "__id__": 77 + "__id__": 47 } ], "_prefab": { - "__id__": 79 + "__id__": 49 }, "_lpos": { "__type__": "cc.Vec3", @@ -1894,11 +1200,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 76 + "__id__": 46 }, "_contentSize": { "__type__": "cc.Size", @@ -1922,11 +1228,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 48 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1980,20 +1286,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 67 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 81 + "__id__": 51 }, { - "__id__": 83 + "__id__": 53 } ], "_prefab": { - "__id__": 85 + "__id__": 55 }, "_lpos": { "__type__": "cc.Vec3", @@ -2030,11 +1336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 82 + "__id__": 52 }, "_contentSize": { "__type__": "cc.Size", @@ -2058,11 +1364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 84 + "__id__": 54 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2116,20 +1422,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 67 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 87 + "__id__": 57 }, { - "__id__": 89 + "__id__": 59 } ], "_prefab": { - "__id__": 91 + "__id__": 61 }, "_lpos": { "__type__": "cc.Vec3", @@ -2166,11 +1472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 86 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 88 + "__id__": 58 }, "_contentSize": { "__type__": "cc.Size", @@ -2194,11 +1500,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 86 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 90 + "__id__": 60 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2252,20 +1558,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 67 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 93 + "__id__": 63 }, { - "__id__": 95 + "__id__": 65 } ], "_prefab": { - "__id__": 97 + "__id__": 67 }, "_lpos": { "__type__": "cc.Vec3", @@ -2302,11 +1608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 62 }, "_enabled": true, "__prefab": { - "__id__": 94 + "__id__": 64 }, "_contentSize": { "__type__": "cc.Size", @@ -2330,11 +1636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 62 }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 66 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2388,20 +1694,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 67 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 99 + "__id__": 69 }, { - "__id__": 101 + "__id__": 71 } ], "_prefab": { - "__id__": 103 + "__id__": 73 }, "_lpos": { "__type__": "cc.Vec3", @@ -2438,11 +1744,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 68 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 70 }, "_contentSize": { "__type__": "cc.Size", @@ -2466,11 +1772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 68 }, "_enabled": true, "__prefab": { - "__id__": 102 + "__id__": 72 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2524,11 +1830,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 75 }, "_contentSize": { "__type__": "cc.Size", @@ -2569,25 +1875,25 @@ }, "_children": [ { - "__id__": 108 + "__id__": 78 } ], "_active": true, "_components": [ { - "__id__": 296 + "__id__": 266 }, { - "__id__": 298 + "__id__": 268 } ], "_prefab": { - "__id__": 300 + "__id__": 270 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 300, + "y": 92.82, "z": 0 }, "_lrot": { @@ -2619,42 +1925,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 107 + "__id__": 77 }, "_children": [ { - "__id__": 109 + "__id__": 79 }, { - "__id__": 144 + "__id__": 114 }, { - "__id__": 173 + "__id__": 143 }, { - "__id__": 202 + "__id__": 172 }, { - "__id__": 231 + "__id__": 201 }, { - "__id__": 260 + "__id__": 230 } ], "_active": true, "_components": [ { - "__id__": 289 + "__id__": 259 }, { - "__id__": 291 + "__id__": 261 }, { - "__id__": 293 + "__id__": 263 } ], "_prefab": { - "__id__": 295 + "__id__": 265 }, "_lpos": { "__type__": "cc.Vec3", @@ -2691,36 +1997,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 78 }, "_children": [ { - "__id__": 110 + "__id__": 80 }, { - "__id__": 115 + "__id__": 85 }, { - "__id__": 120 + "__id__": 90 }, { - "__id__": 123 + "__id__": 93 }, { - "__id__": 128 + "__id__": 98 } ], "_active": true, "_components": [ { - "__id__": 133 + "__id__": 103 }, { - "__id__": 135 + "__id__": 105 } ], "_prefab": { - "__id__": 143 + "__id__": 113 }, "_lpos": { "__type__": "cc.Vec3", @@ -2755,17 +2061,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 109 + "__id__": 79 }, "_prefab": { - "__id__": 111 + "__id__": 81 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 110 + "__id__": 80 }, "asset": { "__uuid__": "c9f3dd9e-da32-4d66-800c-ac6ebc8385fe", @@ -2773,7 +2079,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 112 + "__id__": 82 }, "targetOverrides": null }, @@ -2787,7 +2093,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 113 + "__id__": 83 } ], "removedComponents": [] @@ -2795,7 +2101,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 114 + "__id__": 84 }, "propertyPath": [ "_lpos" @@ -2817,17 +2123,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 109 + "__id__": 79 }, "_prefab": { - "__id__": 116 + "__id__": 86 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 115 + "__id__": 85 }, "asset": { "__uuid__": "5e3c6a81-0213-4db7-8682-237dab87b17b", @@ -2835,7 +2141,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 117 + "__id__": 87 }, "targetOverrides": null }, @@ -2849,7 +2155,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 118 + "__id__": 88 } ], "removedComponents": [] @@ -2857,7 +2163,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 119 + "__id__": 89 }, "propertyPath": [ "_lpos" @@ -2879,17 +2185,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 109 + "__id__": 79 }, "_prefab": { - "__id__": 121 + "__id__": 91 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 120 + "__id__": 90 }, "asset": { "__uuid__": "5e3c6a81-0213-4db7-8682-237dab87b17b", @@ -2897,7 +2203,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 122 + "__id__": 92 }, "targetOverrides": null }, @@ -2916,17 +2222,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 109 + "__id__": 79 }, "_prefab": { - "__id__": 124 + "__id__": 94 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 93 }, "asset": { "__uuid__": "5e3c6a81-0213-4db7-8682-237dab87b17b", @@ -2934,7 +2240,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 125 + "__id__": 95 }, "targetOverrides": null }, @@ -2948,7 +2254,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 126 + "__id__": 96 } ], "removedComponents": [] @@ -2956,7 +2262,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 127 + "__id__": 97 }, "propertyPath": [ "_lpos" @@ -2978,17 +2284,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 109 + "__id__": 79 }, "_prefab": { - "__id__": 129 + "__id__": 99 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 128 + "__id__": 98 }, "asset": { "__uuid__": "4e3beddd-2d76-4352-9a2a-843c0ea26164", @@ -2996,7 +2302,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 130 + "__id__": 100 }, "targetOverrides": null }, @@ -3010,7 +2316,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 131 + "__id__": 101 } ], "removedComponents": [] @@ -3018,7 +2324,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 132 + "__id__": 102 }, "propertyPath": [ "_lpos" @@ -3042,11 +2348,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 134 + "__id__": 104 }, "_contentSize": { "__type__": "cc.Size", @@ -3070,16 +2376,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 136 + "__id__": 106 }, "iconWidth": 170, "iconHeight": 170, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "row": 5, "_format": true, @@ -3095,11 +2401,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 112 }, "prefabs": [ { @@ -3161,14 +2467,14 @@ "_active": true, "_components": [ { - "__id__": 139 + "__id__": 109 }, { - "__id__": 137 + "__id__": 107 } ], "_prefab": { - "__id__": 141 + "__id__": 111 }, "_lpos": { "__type__": "cc.Vec3", @@ -3205,11 +2511,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 110 }, "_contentSize": { "__type__": "cc.Size", @@ -3263,36 +2569,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 78 }, "_children": [ { - "__id__": 145 + "__id__": 115 }, { - "__id__": 150 + "__id__": 120 }, { - "__id__": 155 + "__id__": 125 }, { - "__id__": 158 + "__id__": 128 }, { - "__id__": 163 + "__id__": 133 } ], "_active": true, "_components": [ { - "__id__": 168 + "__id__": 138 }, { - "__id__": 170 + "__id__": 140 } ], "_prefab": { - "__id__": 172 + "__id__": 142 }, "_lpos": { "__type__": "cc.Vec3", @@ -3327,17 +2633,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 144 + "__id__": 114 }, "_prefab": { - "__id__": 146 + "__id__": 116 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 145 + "__id__": 115 }, "asset": { "__uuid__": "4e3beddd-2d76-4352-9a2a-843c0ea26164", @@ -3345,7 +2651,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 147 + "__id__": 117 }, "targetOverrides": null }, @@ -3359,7 +2665,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 148 + "__id__": 118 } ], "removedComponents": [] @@ -3367,7 +2673,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 149 + "__id__": 119 }, "propertyPath": [ "_lpos" @@ -3389,17 +2695,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 144 + "__id__": 114 }, "_prefab": { - "__id__": 151 + "__id__": 121 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 150 + "__id__": 120 }, "asset": { "__uuid__": "c2ff920f-4cea-4f5d-9ebc-f3d4c4aab3af", @@ -3407,7 +2713,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 152 + "__id__": 122 }, "targetOverrides": null }, @@ -3421,7 +2727,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 153 + "__id__": 123 } ], "removedComponents": [] @@ -3429,7 +2735,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 154 + "__id__": 124 }, "propertyPath": [ "_lpos" @@ -3451,17 +2757,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 144 + "__id__": 114 }, "_prefab": { - "__id__": 156 + "__id__": 126 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 155 + "__id__": 125 }, "asset": { "__uuid__": "4ab9580f-7d0c-4a5e-adb5-f15811b676b3", @@ -3469,7 +2775,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 157 + "__id__": 127 }, "targetOverrides": null }, @@ -3488,17 +2794,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 144 + "__id__": 114 }, "_prefab": { - "__id__": 159 + "__id__": 129 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 158 + "__id__": 128 }, "asset": { "__uuid__": "4ab9580f-7d0c-4a5e-adb5-f15811b676b3", @@ -3506,7 +2812,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 160 + "__id__": 130 }, "targetOverrides": null }, @@ -3520,7 +2826,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 161 + "__id__": 131 } ], "removedComponents": [] @@ -3528,7 +2834,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 162 + "__id__": 132 }, "propertyPath": [ "_lpos" @@ -3550,17 +2856,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 144 + "__id__": 114 }, "_prefab": { - "__id__": 164 + "__id__": 134 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 163 + "__id__": 133 }, "asset": { "__uuid__": "4e3beddd-2d76-4352-9a2a-843c0ea26164", @@ -3568,7 +2874,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 165 + "__id__": 135 }, "targetOverrides": null }, @@ -3582,7 +2888,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 166 + "__id__": 136 } ], "removedComponents": [] @@ -3590,7 +2896,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 167 + "__id__": 137 }, "propertyPath": [ "_lpos" @@ -3614,11 +2920,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 139 }, "_contentSize": { "__type__": "cc.Size", @@ -3642,16 +2948,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 141 }, "iconWidth": 170, "iconHeight": 170, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "row": 5, "_format": true, @@ -3680,36 +2986,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 78 }, "_children": [ { - "__id__": 174 + "__id__": 144 }, { - "__id__": 179 + "__id__": 149 }, { - "__id__": 184 + "__id__": 154 }, { - "__id__": 187 + "__id__": 157 }, { - "__id__": 192 + "__id__": 162 } ], "_active": true, "_components": [ { - "__id__": 197 + "__id__": 167 }, { - "__id__": 199 + "__id__": 169 } ], "_prefab": { - "__id__": 201 + "__id__": 171 }, "_lpos": { "__type__": "cc.Vec3", @@ -3744,17 +3050,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 173 + "__id__": 143 }, "_prefab": { - "__id__": 175 + "__id__": 145 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 174 + "__id__": 144 }, "asset": { "__uuid__": "e0928cff-6e84-4aa5-a100-826094cfbce6", @@ -3762,7 +3068,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 176 + "__id__": 146 }, "targetOverrides": null }, @@ -3776,7 +3082,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 177 + "__id__": 147 } ], "removedComponents": [] @@ -3784,7 +3090,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 178 + "__id__": 148 }, "propertyPath": [ "_lpos" @@ -3806,17 +3112,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 173 + "__id__": 143 }, "_prefab": { - "__id__": 180 + "__id__": 150 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 179 + "__id__": 149 }, "asset": { "__uuid__": "c9f3dd9e-da32-4d66-800c-ac6ebc8385fe", @@ -3824,7 +3130,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 181 + "__id__": 151 }, "targetOverrides": null }, @@ -3838,7 +3144,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 182 + "__id__": 152 } ], "removedComponents": [] @@ -3846,7 +3152,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 183 + "__id__": 153 }, "propertyPath": [ "_lpos" @@ -3868,17 +3174,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 173 + "__id__": 143 }, "_prefab": { - "__id__": 185 + "__id__": 155 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 184 + "__id__": 154 }, "asset": { "__uuid__": "c0f436e9-b870-4064-8135-2b15c16c8a08", @@ -3886,7 +3192,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 186 + "__id__": 156 }, "targetOverrides": null }, @@ -3905,17 +3211,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 173 + "__id__": 143 }, "_prefab": { - "__id__": 188 + "__id__": 158 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 187 + "__id__": 157 }, "asset": { "__uuid__": "4e3beddd-2d76-4352-9a2a-843c0ea26164", @@ -3923,7 +3229,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 189 + "__id__": 159 }, "targetOverrides": null }, @@ -3937,7 +3243,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 190 + "__id__": 160 } ], "removedComponents": [] @@ -3945,7 +3251,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 191 + "__id__": 161 }, "propertyPath": [ "_lpos" @@ -3967,17 +3273,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 173 + "__id__": 143 }, "_prefab": { - "__id__": 193 + "__id__": 163 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 192 + "__id__": 162 }, "asset": { "__uuid__": "c9f3dd9e-da32-4d66-800c-ac6ebc8385fe", @@ -3985,7 +3291,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 194 + "__id__": 164 }, "targetOverrides": null }, @@ -3999,7 +3305,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 195 + "__id__": 165 } ], "removedComponents": [] @@ -4007,7 +3313,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 196 + "__id__": 166 }, "propertyPath": [ "_lpos" @@ -4031,11 +3337,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 198 + "__id__": 168 }, "_contentSize": { "__type__": "cc.Size", @@ -4059,16 +3365,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 170 }, "iconWidth": 170, "iconHeight": 170, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "row": 5, "_format": true, @@ -4097,36 +3403,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 78 }, "_children": [ { - "__id__": 203 + "__id__": 173 }, { - "__id__": 208 + "__id__": 178 }, { - "__id__": 213 + "__id__": 183 }, { - "__id__": 216 + "__id__": 186 }, { - "__id__": 221 + "__id__": 191 } ], "_active": true, "_components": [ { - "__id__": 226 + "__id__": 196 }, { - "__id__": 228 + "__id__": 198 } ], "_prefab": { - "__id__": 230 + "__id__": 200 }, "_lpos": { "__type__": "cc.Vec3", @@ -4161,17 +3467,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 202 + "__id__": 172 }, "_prefab": { - "__id__": 204 + "__id__": 174 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 203 + "__id__": 173 }, "asset": { "__uuid__": "3d6ede65-0026-4281-8572-569e42eea9a0", @@ -4179,7 +3485,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 205 + "__id__": 175 }, "targetOverrides": null }, @@ -4193,7 +3499,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 206 + "__id__": 176 } ], "removedComponents": [] @@ -4201,7 +3507,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 207 + "__id__": 177 }, "propertyPath": [ "_lpos" @@ -4223,17 +3529,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 202 + "__id__": 172 }, "_prefab": { - "__id__": 209 + "__id__": 179 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 208 + "__id__": 178 }, "asset": { "__uuid__": "c0f436e9-b870-4064-8135-2b15c16c8a08", @@ -4241,7 +3547,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 210 + "__id__": 180 }, "targetOverrides": null }, @@ -4255,7 +3561,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 211 + "__id__": 181 } ], "removedComponents": [] @@ -4263,7 +3569,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 212 + "__id__": 182 }, "propertyPath": [ "_lpos" @@ -4285,17 +3591,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 202 + "__id__": 172 }, "_prefab": { - "__id__": 214 + "__id__": 184 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 213 + "__id__": 183 }, "asset": { "__uuid__": "c2ff920f-4cea-4f5d-9ebc-f3d4c4aab3af", @@ -4303,7 +3609,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 215 + "__id__": 185 }, "targetOverrides": null }, @@ -4322,17 +3628,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 202 + "__id__": 172 }, "_prefab": { - "__id__": 217 + "__id__": 187 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 216 + "__id__": 186 }, "asset": { "__uuid__": "c2ff920f-4cea-4f5d-9ebc-f3d4c4aab3af", @@ -4340,7 +3646,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 218 + "__id__": 188 }, "targetOverrides": null }, @@ -4354,7 +3660,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 219 + "__id__": 189 } ], "removedComponents": [] @@ -4362,7 +3668,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 220 + "__id__": 190 }, "propertyPath": [ "_lpos" @@ -4384,17 +3690,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 202 + "__id__": 172 }, "_prefab": { - "__id__": 222 + "__id__": 192 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 221 + "__id__": 191 }, "asset": { "__uuid__": "3d6ede65-0026-4281-8572-569e42eea9a0", @@ -4402,7 +3708,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 223 + "__id__": 193 }, "targetOverrides": null }, @@ -4416,7 +3722,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 224 + "__id__": 194 } ], "removedComponents": [] @@ -4424,7 +3730,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 225 + "__id__": 195 }, "propertyPath": [ "_lpos" @@ -4448,11 +3754,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 172 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 197 }, "_contentSize": { "__type__": "cc.Size", @@ -4476,16 +3782,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 172 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 199 }, "iconWidth": 170, "iconHeight": 170, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "row": 5, "_format": true, @@ -4514,36 +3820,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 78 }, "_children": [ { - "__id__": 232 + "__id__": 202 }, { - "__id__": 237 + "__id__": 207 }, { - "__id__": 242 + "__id__": 212 }, { - "__id__": 245 + "__id__": 215 }, { - "__id__": 250 + "__id__": 220 } ], "_active": true, "_components": [ { - "__id__": 255 + "__id__": 225 }, { - "__id__": 257 + "__id__": 227 } ], "_prefab": { - "__id__": 259 + "__id__": 229 }, "_lpos": { "__type__": "cc.Vec3", @@ -4578,17 +3884,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 231 + "__id__": 201 }, "_prefab": { - "__id__": 233 + "__id__": 203 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 232 + "__id__": 202 }, "asset": { "__uuid__": "4e3beddd-2d76-4352-9a2a-843c0ea26164", @@ -4596,7 +3902,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 234 + "__id__": 204 }, "targetOverrides": null }, @@ -4610,7 +3916,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 235 + "__id__": 205 } ], "removedComponents": [] @@ -4618,7 +3924,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 236 + "__id__": 206 }, "propertyPath": [ "_lpos" @@ -4640,17 +3946,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 231 + "__id__": 201 }, "_prefab": { - "__id__": 238 + "__id__": 208 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 237 + "__id__": 207 }, "asset": { "__uuid__": "5e3c6a81-0213-4db7-8682-237dab87b17b", @@ -4658,7 +3964,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 239 + "__id__": 209 }, "targetOverrides": null }, @@ -4672,7 +3978,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 240 + "__id__": 210 } ], "removedComponents": [] @@ -4680,7 +3986,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 241 + "__id__": 211 }, "propertyPath": [ "_lpos" @@ -4702,17 +4008,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 231 + "__id__": 201 }, "_prefab": { - "__id__": 243 + "__id__": 213 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 242 + "__id__": 212 }, "asset": { "__uuid__": "c0f436e9-b870-4064-8135-2b15c16c8a08", @@ -4720,7 +4026,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 244 + "__id__": 214 }, "targetOverrides": null }, @@ -4739,17 +4045,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 231 + "__id__": 201 }, "_prefab": { - "__id__": 246 + "__id__": 216 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 245 + "__id__": 215 }, "asset": { "__uuid__": "f71a5e7a-0230-4ec6-8614-02c14675ad2b", @@ -4757,7 +4063,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 247 + "__id__": 217 }, "targetOverrides": null }, @@ -4771,7 +4077,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 248 + "__id__": 218 } ], "removedComponents": [] @@ -4779,7 +4085,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 249 + "__id__": 219 }, "propertyPath": [ "_lpos" @@ -4801,17 +4107,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 231 + "__id__": 201 }, "_prefab": { - "__id__": 251 + "__id__": 221 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 250 + "__id__": 220 }, "asset": { "__uuid__": "d83c2d3b-8b26-4845-b957-cfc7eb3a38c5", @@ -4819,7 +4125,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 252 + "__id__": 222 }, "targetOverrides": null }, @@ -4833,7 +4139,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 253 + "__id__": 223 } ], "removedComponents": [] @@ -4841,7 +4147,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 254 + "__id__": 224 }, "propertyPath": [ "_lpos" @@ -4865,11 +4171,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 226 }, "_contentSize": { "__type__": "cc.Size", @@ -4893,16 +4199,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 228 }, "iconWidth": 170, "iconHeight": 170, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "row": 5, "_format": true, @@ -4931,36 +4237,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 78 }, "_children": [ { - "__id__": 261 + "__id__": 231 }, { - "__id__": 266 + "__id__": 236 }, { - "__id__": 271 + "__id__": 241 }, { - "__id__": 274 + "__id__": 244 }, { - "__id__": 279 + "__id__": 249 } ], "_active": true, "_components": [ { - "__id__": 284 + "__id__": 254 }, { - "__id__": 286 + "__id__": 256 } ], "_prefab": { - "__id__": 288 + "__id__": 258 }, "_lpos": { "__type__": "cc.Vec3", @@ -4995,17 +4301,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 260 + "__id__": 230 }, "_prefab": { - "__id__": 262 + "__id__": 232 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 261 + "__id__": 231 }, "asset": { "__uuid__": "4ab9580f-7d0c-4a5e-adb5-f15811b676b3", @@ -5013,7 +4319,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 263 + "__id__": 233 }, "targetOverrides": null }, @@ -5027,7 +4333,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 264 + "__id__": 234 } ], "removedComponents": [] @@ -5035,7 +4341,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 265 + "__id__": 235 }, "propertyPath": [ "_lpos" @@ -5057,17 +4363,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 260 + "__id__": 230 }, "_prefab": { - "__id__": 267 + "__id__": 237 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 266 + "__id__": 236 }, "asset": { "__uuid__": "5e3c6a81-0213-4db7-8682-237dab87b17b", @@ -5075,7 +4381,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 268 + "__id__": 238 }, "targetOverrides": null }, @@ -5089,7 +4395,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 269 + "__id__": 239 } ], "removedComponents": [] @@ -5097,7 +4403,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 270 + "__id__": 240 }, "propertyPath": [ "_lpos" @@ -5119,17 +4425,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 260 + "__id__": 230 }, "_prefab": { - "__id__": 272 + "__id__": 242 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 271 + "__id__": 241 }, "asset": { "__uuid__": "4ab9580f-7d0c-4a5e-adb5-f15811b676b3", @@ -5137,7 +4443,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 273 + "__id__": 243 }, "targetOverrides": null }, @@ -5156,17 +4462,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 260 + "__id__": 230 }, "_prefab": { - "__id__": 275 + "__id__": 245 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 274 + "__id__": 244 }, "asset": { "__uuid__": "c2ff920f-4cea-4f5d-9ebc-f3d4c4aab3af", @@ -5174,7 +4480,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 276 + "__id__": 246 }, "targetOverrides": null }, @@ -5188,7 +4494,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 277 + "__id__": 247 } ], "removedComponents": [] @@ -5196,7 +4502,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 278 + "__id__": 248 }, "propertyPath": [ "_lpos" @@ -5218,17 +4524,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 260 + "__id__": 230 }, "_prefab": { - "__id__": 280 + "__id__": 250 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 279 + "__id__": 249 }, "asset": { "__uuid__": "4ab9580f-7d0c-4a5e-adb5-f15811b676b3", @@ -5236,7 +4542,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 281 + "__id__": 251 }, "targetOverrides": null }, @@ -5250,7 +4556,7 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 282 + "__id__": 252 } ], "removedComponents": [] @@ -5258,7 +4564,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 283 + "__id__": 253 }, "propertyPath": [ "_lpos" @@ -5282,11 +4588,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 260 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 255 }, "_contentSize": { "__type__": "cc.Size", @@ -5310,16 +4616,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 260 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 257 }, "iconWidth": 170, "iconHeight": 170, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "row": 5, "_format": true, @@ -5348,11 +4654,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 290 + "__id__": 260 }, "_contentSize": { "__type__": "cc.Size", @@ -5376,11 +4682,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 292 + "__id__": 262 }, "_type": 3, "_inverted": false, @@ -5398,11 +4704,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 294 + "__id__": 264 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5456,11 +4762,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 267 }, "_contentSize": { "__type__": "cc.Size", @@ -5484,17 +4790,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 299 + "__id__": 269 }, "iconWidth": 170, "iconHeight": 170, "iconHMerge": 0, "iconFactory": { - "__id__": 137 + "__id__": 107 }, "_format": false, "_id": "" @@ -5526,28 +4832,28 @@ }, "_children": [ { - "__id__": 302 + "__id__": 272 }, { - "__id__": 370 + "__id__": 340 } ], "_active": true, "_components": [ { - "__id__": 394 + "__id__": 364 }, { - "__id__": 396 + "__id__": 366 } ], "_prefab": { - "__id__": 398 + "__id__": 368 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 306.534, + "y": 90.837, "z": 0 }, "_lrot": { @@ -5579,30 +4885,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 301 + "__id__": 271 }, "_children": [ { - "__id__": 303 + "__id__": 273 }, { - "__id__": 307 + "__id__": 277 }, { - "__id__": 349 + "__id__": 319 }, { - "__id__": 353 + "__id__": 323 } ], "_active": true, "_components": [ { - "__id__": 367 + "__id__": 337 } ], "_prefab": { - "__id__": 369 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", @@ -5639,17 +4945,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 302 + "__id__": 272 }, "_children": [], "_active": true, "_components": [ { - "__id__": 304 + "__id__": 274 } ], "_prefab": { - "__id__": 306 + "__id__": 276 }, "_lpos": { "__type__": "cc.Vec3", @@ -5686,11 +4992,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 303 + "__id__": 273 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 275 }, "_contentSize": { "__type__": "cc.Size", @@ -5727,39 +5033,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 302 + "__id__": 272 }, "_children": [ + { + "__id__": 278 + }, + { + "__id__": 284 + }, + { + "__id__": 290 + }, + { + "__id__": 296 + }, + { + "__id__": 302 + }, { "__id__": 308 - }, - { - "__id__": 314 - }, - { - "__id__": 320 - }, - { - "__id__": 326 - }, - { - "__id__": 332 - }, - { - "__id__": 338 } ], "_active": true, "_components": [ { - "__id__": 344 + "__id__": 314 }, { - "__id__": 346 + "__id__": 316 } ], "_prefab": { - "__id__": 348 + "__id__": 318 }, "_lpos": { "__type__": "cc.Vec3", @@ -5796,20 +5102,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 307 + "__id__": 277 }, "_children": [], "_active": true, "_components": [ { - "__id__": 309 + "__id__": 279 }, { - "__id__": 311 + "__id__": 281 } ], "_prefab": { - "__id__": 313 + "__id__": 283 }, "_lpos": { "__type__": "cc.Vec3", @@ -5846,16 +5152,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 280 }, "_contentSize": { "__type__": "cc.Size", "width": 176, - "height": 910 + "height": 810 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5874,11 +5180,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 312 + "__id__": 282 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5932,20 +5238,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 307 + "__id__": 277 }, "_children": [], "_active": true, "_components": [ { - "__id__": 315 + "__id__": 285 }, { - "__id__": 317 + "__id__": 287 } ], "_prefab": { - "__id__": 319 + "__id__": 289 }, "_lpos": { "__type__": "cc.Vec3", @@ -5982,16 +5288,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 314 + "__id__": 284 }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 286 }, "_contentSize": { "__type__": "cc.Size", "width": 176, - "height": 910 + "height": 810 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6010,11 +5316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 314 + "__id__": 284 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 288 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6068,20 +5374,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 307 + "__id__": 277 }, "_children": [], "_active": true, "_components": [ { - "__id__": 321 + "__id__": 291 }, { - "__id__": 323 + "__id__": 293 } ], "_prefab": { - "__id__": 325 + "__id__": 295 }, "_lpos": { "__type__": "cc.Vec3", @@ -6118,16 +5424,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 322 + "__id__": 292 }, "_contentSize": { "__type__": "cc.Size", "width": 176, - "height": 910 + "height": 810 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6146,11 +5452,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 324 + "__id__": 294 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6204,20 +5510,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 307 + "__id__": 277 }, "_children": [], "_active": true, "_components": [ { - "__id__": 327 + "__id__": 297 }, { - "__id__": 329 + "__id__": 299 } ], "_prefab": { - "__id__": 331 + "__id__": 301 }, "_lpos": { "__type__": "cc.Vec3", @@ -6254,16 +5560,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 296 }, "_enabled": true, "__prefab": { - "__id__": 328 + "__id__": 298 }, "_contentSize": { "__type__": "cc.Size", "width": 176, - "height": 910 + "height": 810 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6282,11 +5588,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 296 }, "_enabled": true, "__prefab": { - "__id__": 330 + "__id__": 300 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6340,20 +5646,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 307 + "__id__": 277 }, "_children": [], "_active": true, "_components": [ { - "__id__": 333 + "__id__": 303 }, { - "__id__": 335 + "__id__": 305 } ], "_prefab": { - "__id__": 337 + "__id__": 307 }, "_lpos": { "__type__": "cc.Vec3", @@ -6390,16 +5696,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 302 }, "_enabled": true, "__prefab": { - "__id__": 334 + "__id__": 304 }, "_contentSize": { "__type__": "cc.Size", "width": 176, - "height": 910 + "height": 810 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6418,11 +5724,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 302 }, "_enabled": true, "__prefab": { - "__id__": 336 + "__id__": 306 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6476,20 +5782,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 307 + "__id__": 277 }, "_children": [], "_active": true, "_components": [ { - "__id__": 339 + "__id__": 309 }, { - "__id__": 341 + "__id__": 311 } ], "_prefab": { - "__id__": 343 + "__id__": 313 }, "_lpos": { "__type__": "cc.Vec3", @@ -6526,16 +5832,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 338 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 310 }, "_contentSize": { "__type__": "cc.Size", "width": 176, - "height": 910 + "height": 810 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6554,11 +5860,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 338 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 312 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6612,11 +5918,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 277 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 315 }, "_contentSize": { "__type__": "cc.Size", @@ -6640,11 +5946,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 277 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 317 }, "_opacity": 255, "_id": "" @@ -6672,17 +5978,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 302 + "__id__": 272 }, "_children": [], "_active": true, "_components": [ { - "__id__": 350 + "__id__": 320 } ], "_prefab": { - "__id__": 352 + "__id__": 322 }, "_lpos": { "__type__": "cc.Vec3", @@ -6719,11 +6025,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 319 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 321 }, "_contentSize": { "__type__": "cc.Size", @@ -6760,27 +6066,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 302 + "__id__": 272 }, "_children": [ { - "__id__": 354 + "__id__": 324 } ], "_active": true, "_components": [ { - "__id__": 360 + "__id__": 330 }, { - "__id__": 362 + "__id__": 332 }, { - "__id__": 364 + "__id__": 334 } ], "_prefab": { - "__id__": 366 + "__id__": 336 }, "_lpos": { "__type__": "cc.Vec3", @@ -6817,20 +6123,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 353 + "__id__": 323 }, "_children": [], "_active": true, "_components": [ { - "__id__": 355 + "__id__": 325 }, { - "__id__": 357 + "__id__": 327 } ], "_prefab": { - "__id__": 359 + "__id__": 329 }, "_lpos": { "__type__": "cc.Vec3", @@ -6867,11 +6173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 354 + "__id__": 324 }, "_enabled": true, "__prefab": { - "__id__": 356 + "__id__": 326 }, "_contentSize": { "__type__": "cc.Size", @@ -6895,11 +6201,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 354 + "__id__": 324 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 328 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6950,11 +6256,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 353 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 361 + "__id__": 331 }, "_contentSize": { "__type__": "cc.Size", @@ -6978,11 +6284,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 353 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 363 + "__id__": 333 }, "_type": 3, "_inverted": false, @@ -7000,11 +6306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 353 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 365 + "__id__": 335 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7058,11 +6364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 338 }, "_contentSize": { "__type__": "cc.Size", @@ -7099,27 +6405,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 301 + "__id__": 271 }, "_children": [ { - "__id__": 371 + "__id__": 341 }, { - "__id__": 383 + "__id__": 353 }, { - "__id__": 387 + "__id__": 357 } ], "_active": true, "_components": [ { - "__id__": 391 + "__id__": 361 } ], "_prefab": { - "__id__": 393 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -7156,24 +6462,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 370 + "__id__": 340 }, "_children": [ { - "__id__": 372 + "__id__": 342 } ], "_active": true, "_components": [ { - "__id__": 378 + "__id__": 348 }, { - "__id__": 380 + "__id__": 350 } ], "_prefab": { - "__id__": 382 + "__id__": 352 }, "_lpos": { "__type__": "cc.Vec3", @@ -7210,20 +6516,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 371 + "__id__": 341 }, "_children": [], "_active": true, "_components": [ { - "__id__": 373 + "__id__": 343 }, { - "__id__": 375 + "__id__": 345 } ], "_prefab": { - "__id__": 377 + "__id__": 347 }, "_lpos": { "__type__": "cc.Vec3", @@ -7260,16 +6566,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 372 + "__id__": 342 }, "_enabled": true, "__prefab": { - "__id__": 374 + "__id__": 344 }, "_contentSize": { "__type__": "cc.Size", - "width": 1056, - "height": 920 + "width": 1044, + "height": 800 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -7288,11 +6594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 372 + "__id__": 342 }, "_enabled": true, "__prefab": { - "__id__": 376 + "__id__": 346 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7343,11 +6649,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 379 + "__id__": 349 }, "_contentSize": { "__type__": "cc.Size", @@ -7371,11 +6677,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 351 }, "_opacity": 255, "_id": "" @@ -7403,17 +6709,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 370 + "__id__": 340 }, "_children": [], "_active": true, "_components": [ { - "__id__": 384 + "__id__": 354 } ], "_prefab": { - "__id__": 386 + "__id__": 356 }, "_lpos": { "__type__": "cc.Vec3", @@ -7450,11 +6756,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 383 + "__id__": 353 }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 355 }, "_contentSize": { "__type__": "cc.Size", @@ -7491,17 +6797,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 370 + "__id__": 340 }, "_children": [], "_active": true, "_components": [ { - "__id__": 388 + "__id__": 358 } ], "_prefab": { - "__id__": 390 + "__id__": 360 }, "_lpos": { "__type__": "cc.Vec3", @@ -7538,11 +6844,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 389 + "__id__": 359 }, "_contentSize": { "__type__": "cc.Size", @@ -7579,11 +6885,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 370 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 392 + "__id__": 362 }, "_contentSize": { "__type__": "cc.Size", @@ -7620,11 +6926,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 271 }, "_enabled": true, "__prefab": { - "__id__": 395 + "__id__": 365 }, "_contentSize": { "__type__": "cc.Size", @@ -7648,38 +6954,38 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 271 }, "_enabled": true, "__prefab": { - "__id__": 397 + "__id__": 367 }, "readHandLayer": { - "__id__": 302 + "__id__": 272 }, "wildLayer": { - "__id__": 303 + "__id__": 273 }, "readyHandGrayNode": { - "__id__": 307 + "__id__": 277 }, "scatterLayer": { - "__id__": 349 + "__id__": 319 }, "readyHandNode": { - "__id__": 354 + "__id__": 324 }, "winLayer": { - "__id__": 370 + "__id__": 340 }, "winGrayLayer": { - "__id__": 371 + "__id__": 341 }, "winSpineLayer": { - "__id__": 383 + "__id__": 353 }, "winIconLayer": { - "__id__": 387 + "__id__": 357 }, "winSpinePrefab": { "__uuid__": "3c2fa1b8-7168-4d39-bdca-73ef0d8fc8ed", @@ -7704,929 +7010,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "NormalGameBg1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 400 - }, - { - "__id__": 406 - }, - { - "__id__": 412 - }, - { - "__id__": 418 - }, - { - "__id__": 424 - }, - { - "__id__": 430 - } - ], - "_active": true, - "_components": [ - { - "__id__": 436 - } - ], - "_prefab": { - "__id__": 438 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 288, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "pt_07", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 401 - }, - { - "__id__": 403 - } - ], - "_prefab": { - "__id__": 405 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -413, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 400 - }, - "_enabled": true, - "__prefab": { - "__id__": 402 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 147 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d8pRfoLxFHjbZZT7qqWO9n" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 400 - }, - "_enabled": true, - "__prefab": { - "__id__": 404 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "3b842098-1f52-4bda-a7ee-c80ac4b1ac3b@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "02EGtLR9VL95HV1VKrZvmq" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "62AEIML71LZab4845dWO6a", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pt_06", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 407 - }, - { - "__id__": 409 - } - ], - "_prefab": { - "__id__": 411 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 553, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 406 - }, - "_enabled": true, - "__prefab": { - "__id__": 408 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 290 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "09QOoWxUVK9p7iclsU18Fv" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 406 - }, - "_enabled": true, - "__prefab": { - "__id__": 410 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "f7d4ab61-31f1-4680-aac2-eea8ae49ad3a@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "45aBEFx9hJPKxpdE1jyTyf" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a39xafY7pDh7NXXS8Uvgxf", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 413 - }, - { - "__id__": 415 - } - ], - "_prefab": { - "__id__": 417 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -360.203, - "y": -993, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 412 - }, - "_enabled": true, - "__prefab": { - "__id__": 414 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 86, - "height": 115 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.4956521739130435 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6f7Dxdl3FOA7IWdG2QrSGf" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 412 - }, - "_enabled": true, - "__prefab": { - "__id__": 416 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9760a9c5-9e9a-4f3f-b44e-b9baed78fe8c", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "animation", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8RbLf7XZGya7N5x71vASG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "29O/Kqvi1GgYgngsHJVRki", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "6", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 419 - }, - { - "__id__": 421 - } - ], - "_prefab": { - "__id__": 423 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 293.853, - "y": -998.157, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 418 - }, - "_enabled": true, - "__prefab": { - "__id__": 420 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 112, - "height": 194 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dbzvDyLodGP5NNGlxA+gY4" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 418 - }, - "_enabled": true, - "__prefab": { - "__id__": 422 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "29881b24-ec6d-4809-abc7-efb21c928e1f", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "chixu", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "67pzJIM+xEQZ5tmBL11RMj" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6c0mwcO65EY4zj4qdIZ2cJ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pt_05", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 425 - }, - { - "__id__": 427 - } - ], - "_prefab": { - "__id__": 429 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -888, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 424 - }, - "_enabled": true, - "__prefab": { - "__id__": 426 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1165 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23sh9Bi59J5J2T2DHwfY7n" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 424 - }, - "_enabled": true, - "__prefab": { - "__id__": 428 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "27528379-07a0-47dc-9e77-846b60dfc6cc@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ceOGvr1YNAYJ+Ovx3H8tEh" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "73XV8AbSNN9IHO0RQ6S/GV", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 431 - }, - { - "__id__": 433 - } - ], - "_prefab": { - "__id__": 435 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -346, - "y": 564, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 430 - }, - "_enabled": true, - "__prefab": { - "__id__": 432 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.17960185298213252, - "y": 0.9440104166666666 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4efaNFhRRLDLShWrbT06Rj" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 430 - }, - "_enabled": true, - "__prefab": { - "__id__": 434 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "037095f3-2606-40c8-8a7e-615a6b4d6e90", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c1qFdWIGND1bx4yJXCNHVd" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f7dmqcSRhIlquIdtWofG+z", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 399 - }, - "_enabled": true, - "__prefab": { - "__id__": 437 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 979 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0bJwfUTFVOJ7Q+S9wYnIJz" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "eb1wg1429OVbiDCDbGWnB4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "FreeGameBg1", @@ -8637,29 +7020,29 @@ }, "_children": [ { - "__id__": 440 + "__id__": 370 }, { - "__id__": 446 + "__id__": 376 }, { - "__id__": 452 + "__id__": 382 }, { - "__id__": 458 + "__id__": 388 }, { - "__id__": 464 + "__id__": 394 } ], "_active": false, "_components": [ { - "__id__": 470 + "__id__": 400 } ], "_prefab": { - "__id__": 472 + "__id__": 402 }, "_lpos": { "__type__": "cc.Vec3", @@ -8696,20 +7079,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 439 + "__id__": 369 }, "_children": [], "_active": true, "_components": [ { - "__id__": 441 + "__id__": 371 }, { - "__id__": 443 + "__id__": 373 } ], "_prefab": { - "__id__": 445 + "__id__": 375 }, "_lpos": { "__type__": "cc.Vec3", @@ -8746,11 +7129,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 442 + "__id__": 372 }, "_contentSize": { "__type__": "cc.Size", @@ -8774,11 +7157,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 444 + "__id__": 374 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8832,20 +7215,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 439 + "__id__": 369 }, "_children": [], "_active": true, "_components": [ { - "__id__": 447 + "__id__": 377 }, { - "__id__": 449 + "__id__": 379 } ], "_prefab": { - "__id__": 451 + "__id__": 381 }, "_lpos": { "__type__": "cc.Vec3", @@ -8882,11 +7265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 446 + "__id__": 376 }, "_enabled": true, "__prefab": { - "__id__": 448 + "__id__": 378 }, "_contentSize": { "__type__": "cc.Size", @@ -8910,11 +7293,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 446 + "__id__": 376 }, "_enabled": true, "__prefab": { - "__id__": 450 + "__id__": 380 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8968,20 +7351,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 439 + "__id__": 369 }, "_children": [], "_active": true, "_components": [ { - "__id__": 453 + "__id__": 383 }, { - "__id__": 455 + "__id__": 385 } ], "_prefab": { - "__id__": 457 + "__id__": 387 }, "_lpos": { "__type__": "cc.Vec3", @@ -9018,11 +7401,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 452 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 454 + "__id__": 384 }, "_contentSize": { "__type__": "cc.Size", @@ -9046,11 +7429,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 452 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 456 + "__id__": 386 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9104,20 +7487,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 439 + "__id__": 369 }, "_children": [], "_active": true, "_components": [ { - "__id__": 459 + "__id__": 389 }, { - "__id__": 461 + "__id__": 391 } ], "_prefab": { - "__id__": 463 + "__id__": 393 }, "_lpos": { "__type__": "cc.Vec3", @@ -9154,11 +7537,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 388 }, "_enabled": true, "__prefab": { - "__id__": 460 + "__id__": 390 }, "_contentSize": { "__type__": "cc.Size", @@ -9182,11 +7565,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 388 }, "_enabled": true, "__prefab": { - "__id__": 462 + "__id__": 392 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9240,20 +7623,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 439 + "__id__": 369 }, "_children": [], "_active": true, "_components": [ { - "__id__": 465 + "__id__": 395 }, { - "__id__": 467 + "__id__": 397 } ], "_prefab": { - "__id__": 469 + "__id__": 399 }, "_lpos": { "__type__": "cc.Vec3", @@ -9290,11 +7673,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 464 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 466 + "__id__": 396 }, "_contentSize": { "__type__": "cc.Size", @@ -9318,11 +7701,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 464 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 468 + "__id__": 398 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9376,11 +7759,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 369 }, "_enabled": true, "__prefab": { - "__id__": 471 + "__id__": 401 }, "_contentSize": { "__type__": "cc.Size", @@ -9421,40 +7804,40 @@ }, "_children": [ { - "__id__": 474 + "__id__": 404 }, { - "__id__": 480 + "__id__": 410 }, { - "__id__": 486 + "__id__": 416 }, { - "__id__": 492 + "__id__": 422 }, { - "__id__": 498 + "__id__": 428 } ], "_active": true, "_components": [ { - "__id__": 506 + "__id__": 436 }, { - "__id__": 508 + "__id__": 438 }, { - "__id__": 511 + "__id__": 441 } ], "_prefab": { - "__id__": 513 + "__id__": 443 }, "_lpos": { "__type__": "cc.Vec3", - "x": -294, - "y": -329, + "x": -381.374, + "y": -511.653, "z": 0 }, "_lrot": { @@ -9486,20 +7869,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 473 + "__id__": 403 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 475 + "__id__": 405 }, { - "__id__": 477 + "__id__": 407 } ], "_prefab": { - "__id__": 479 + "__id__": 409 }, "_lpos": { "__type__": "cc.Vec3", @@ -9536,11 +7919,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 474 + "__id__": 404 }, "_enabled": true, "__prefab": { - "__id__": 476 + "__id__": 406 }, "_contentSize": { "__type__": "cc.Size", @@ -9564,11 +7947,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 474 + "__id__": 404 }, "_enabled": true, "__prefab": { - "__id__": 478 + "__id__": 408 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9622,20 +8005,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 473 + "__id__": 403 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 481 + "__id__": 411 }, { - "__id__": 483 + "__id__": 413 } ], "_prefab": { - "__id__": 485 + "__id__": 415 }, "_lpos": { "__type__": "cc.Vec3", @@ -9672,11 +8055,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 480 + "__id__": 410 }, "_enabled": true, "__prefab": { - "__id__": 482 + "__id__": 412 }, "_contentSize": { "__type__": "cc.Size", @@ -9700,11 +8083,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 480 + "__id__": 410 }, "_enabled": true, "__prefab": { - "__id__": 484 + "__id__": 414 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9758,20 +8141,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 473 + "__id__": 403 }, "_children": [], "_active": true, "_components": [ { - "__id__": 487 + "__id__": 417 }, { - "__id__": 489 + "__id__": 419 } ], "_prefab": { - "__id__": 491 + "__id__": 421 }, "_lpos": { "__type__": "cc.Vec3", @@ -9808,16 +8191,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 486 + "__id__": 416 }, "_enabled": true, "__prefab": { - "__id__": 488 + "__id__": 418 }, "_contentSize": { "__type__": "cc.Size", - "width": 339, - "height": 127 + "width": 345, + "height": 301 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -9831,16 +8214,16 @@ "fileId": "89R6H32ihFHZKaSUjVyMSv" }, { - "__type__": "sp.Skeleton", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 486 + "__id__": 416 }, "_enabled": true, "__prefab": { - "__id__": 490 + "__id__": 420 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9852,28 +8235,28 @@ "b": 255, "a": 255 }, - "_skeletonData": { - "__uuid__": "ff13fecd-f467-4355-9077-c30691823f7a", - "__expectedType__": "sp.SkeletonData" + "_spriteFrame": { + "__uuid__": "7f1e28da-f220-457c-a899-6770a1890792@f9941", + "__expectedType__": "cc.SpriteFrame" }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": false, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "b1vf4Jcp1Djq/PYKqbAVpP" + "fileId": "81j2wuNGtI+KwC8pVpLWrd" }, { "__type__": "cc.PrefabInfo", @@ -9894,20 +8277,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 473 + "__id__": 403 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 493 + "__id__": 423 }, { - "__id__": 495 + "__id__": 425 } ], "_prefab": { - "__id__": 497 + "__id__": 427 }, "_lpos": { "__type__": "cc.Vec3", @@ -9944,11 +8327,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 492 + "__id__": 422 }, "_enabled": true, "__prefab": { - "__id__": 494 + "__id__": 424 }, "_contentSize": { "__type__": "cc.Size", @@ -9972,11 +8355,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 492 + "__id__": 422 }, "_enabled": true, "__prefab": { - "__id__": 496 + "__id__": 426 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10030,28 +8413,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 473 + "__id__": 403 }, "_children": [], "_active": true, "_components": [ { - "__id__": 499 + "__id__": 429 }, { - "__id__": 501 + "__id__": 431 }, { - "__id__": 503 + "__id__": 433 } ], "_prefab": { - "__id__": 505 + "__id__": 435 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 0, + "x": -34.079, + "y": -14.349, "z": 0 }, "_lrot": { @@ -10083,16 +8466,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 498 + "__id__": 428 }, "_enabled": true, "__prefab": { - "__id__": 500 + "__id__": 430 }, "_contentSize": { "__type__": "cc.Size", - "width": 182, - "height": 105 + "width": 197, + "height": 87 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -10111,11 +8494,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 498 + "__id__": 428 }, "_enabled": true, "__prefab": { - "__id__": 502 + "__id__": 432 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10128,7 +8511,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "923e185d-0129-491f-9250-faef9f146312@f9941", + "__uuid__": "95b5bbad-ea24-440f-8665-284c1c3efc1b@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -10156,13 +8539,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 498 + "__id__": 428 }, "_enabled": true, "__prefab": { - "__id__": 504 + "__id__": 434 }, - "spriteName": "Normal", + "spriteName": "Buy2", "_id": "" }, { @@ -10188,11 +8571,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 473 + "__id__": 403 }, "_enabled": true, "__prefab": { - "__id__": 507 + "__id__": 437 }, "_contentSize": { "__type__": "cc.Size", @@ -10216,15 +8599,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 473 + "__id__": 403 }, "_enabled": true, "__prefab": { - "__id__": 509 + "__id__": 439 }, "clickEvents": [ { - "__id__": 510 + "__id__": 440 } ], "_interactable": true, @@ -10264,7 +8647,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 473 + "__id__": 403 }, "_id": "" }, @@ -10288,11 +8671,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 473 + "__id__": 403 }, "_enabled": true, "__prefab": { - "__id__": 512 + "__id__": 442 }, "_opacity": 255, "_id": "" @@ -10316,529 +8699,26 @@ }, { "__type__": "cc.Node", - "_name": "DoubleWinBtn", + "_name": "NormalGameBg1", "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 2 }, - "_children": [ - { - "__id__": 515 - }, - { - "__id__": 570 - } - ], - "_active": true, - "_components": [ - { - "__id__": 576 - } - ], - "_prefab": { - "__id__": 578 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 415, - "y": -258, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "btn", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 514 - }, - "_children": [ - { - "__id__": 516 - }, - { - "__id__": 524 - }, - { - "__id__": 530 - } - ], - "_active": true, - "_components": [ - { - "__id__": 560 - }, - { - "__id__": 562 - }, - { - "__id__": 564 - }, - { - "__id__": 567 - } - ], - "_prefab": { - "__id__": 569 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "zxksctte1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 515 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 517 - }, - { - "__id__": 519 - }, - { - "__id__": 521 - } - ], - "_prefab": { - "__id__": 523 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 29.024999999999977, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 516 - }, - "_enabled": true, - "__prefab": { - "__id__": 518 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 112, - "height": 187 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "67wRlTfsxMQKswxUVvSk8z" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 516 - }, - "_enabled": true, - "__prefab": { - "__id__": 520 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "1ff6b803-b541-4fa6-b491-e527a244893c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5awipZOc5GsqQvsPwUe9h8" - }, - { - "__type__": "e6c8d4szahIuLbtf6yx+hH6", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 516 - }, - "_enabled": true, - "__prefab": { - "__id__": 522 - }, - "spriteName": "zxksctte1", - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a59pwOF/5M9JWlGvs6xz+k" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "48puUmBqZNHrkGET42FcsO", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "count", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 515 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 525 - }, - { - "__id__": 527 - } - ], - "_prefab": { - "__id__": 529 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 56.269000000000005, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 524 - }, - "_enabled": true, - "__prefab": { - "__id__": 526 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 110.09765625, - "height": 60.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b3ow4dhPxPW4G7UvTq0oeM" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 524 - }, - "_enabled": true, - "__prefab": { - "__id__": 528 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "$2.65", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 5, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f2f35F3CZAmIK+Haltt0Et" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a9RHROiw1MzZ+T+pAxwPwY", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pt_11", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 515 - }, - "_children": [ - { - "__id__": 531 - }, - { - "__id__": 537 - }, - { - "__id__": 543 - }, - { - "__id__": 549 - } - ], - "_active": true, - "_components": [ - { - "__id__": 555 - }, - { - "__id__": 557 - } - ], - "_prefab": { - "__id__": 559 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -89.88499999999999, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "on", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 530 - }, "_children": [], "_active": false, "_components": [ { - "__id__": 532 - }, - { - "__id__": 534 + "__id__": 445 } ], "_prefab": { - "__id__": 536 + "__id__": 447 }, "_lpos": { "__type__": "cc.Vec3", - "x": -35, - "y": 0, + "x": 0, + "y": 288, "z": 0 }, "_lrot": { @@ -10870,996 +8750,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 531 + "__id__": 444 }, "_enabled": true, "__prefab": { - "__id__": 533 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 38.5146484375, - "height": 38.02 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bffzi4ArVM6rAOYWFKr1BQ" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 531 - }, - "_enabled": true, - "__prefab": { - "__id__": 535 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "0N", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 27, - "_fontSize": 27, - "_fontFamily": "Arial", - "_lineHeight": 27, - "_overflow": 0, - "_enableWrapText": false, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7aGEQ/J9NN3KD/ZHE1LlXq" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5fKXAsS3JIWI+gxbYH/n5b", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "off", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 530 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 538 - }, - { - "__id__": 540 - } - ], - "_prefab": { - "__id__": 542 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 35, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 537 - }, - "_enabled": true, - "__prefab": { - "__id__": 539 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 52.00146484375, - "height": 38.02 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "86FeobKH5DKIQAbjrhrkx9" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 537 - }, - "_enabled": true, - "__prefab": { - "__id__": 541 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "0FF", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 27, - "_fontSize": 27, - "_fontFamily": "Arial", - "_lineHeight": 27, - "_overflow": 0, - "_enableWrapText": false, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "463fTYeiNB+KpX3ZI+AlJu" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "55su+Bw4RAT7RfIR97d75o", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pt_12", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 530 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 544 - }, - { - "__id__": 546 - } - ], - "_prefab": { - "__id__": 548 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -35, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 543 - }, - "_enabled": true, - "__prefab": { - "__id__": 545 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 83, - "height": 52 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a4XnbuPINDLIT1v0O8rVf2" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 543 - }, - "_enabled": true, - "__prefab": { - "__id__": 547 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "2514f632-ff22-4064-a9b6-817aefd5e83f@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "47magF16BABpIAffYWwkUt" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7f6HXTSRAgIHOtVSmAlB8", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pt_13", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 530 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 550 - }, - { - "__id__": 552 - } - ], - "_prefab": { - "__id__": 554 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 35, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 549 - }, - "_enabled": true, - "__prefab": { - "__id__": 551 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 83, - "height": 52 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f5T3BPSNdO/pvX1hmX97RB" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 549 - }, - "_enabled": true, - "__prefab": { - "__id__": 553 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "5f57eb21-f5f7-44cc-bfc7-440c7595b09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2d9ssGaPtEraAmUjwfREOR" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "7cqe06hR9G1ZDUAxXc3DEC", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 530 - }, - "_enabled": true, - "__prefab": { - "__id__": 556 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 158, - "height": 52 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "61W7wZFPNAI46nozXqR5lh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 530 - }, - "_enabled": true, - "__prefab": { - "__id__": 558 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "ae8f580a-30c1-43d4-aaf6-fbd597dcbf92@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "93aBH9uIVBwaBVaA9DY+WR" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "83TkuG35RDm7c6cvFWEpxS", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 515 - }, - "_enabled": true, - "__prefab": { - "__id__": 561 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 243, - "height": 273 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "63VmpaBDpLabSoL4PkAkWe" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 515 - }, - "_enabled": true, - "__prefab": { - "__id__": 563 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b5b4e832-88e8-437e-b416-c5671cc817b4@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aaKiFOr1JH2ZyOQHUR1y3c" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 515 - }, - "_enabled": true, - "__prefab": { - "__id__": 565 - }, - "clickEvents": [ - { - "__id__": 566 - } - ], - "_interactable": true, - "_transition": 3, - "_normalColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 211, - "g": 211, - "b": 211, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 - }, - "_normalSprite": null, - "_hoverSprite": null, - "_pressedSprite": null, - "_disabledSprite": null, - "_duration": 0.1, - "_zoomScale": 1.2, - "_target": { - "__id__": 515 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4eHjH3ilNDQ68If0adKtNH" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 2 - }, - "component": "", - "_componentId": "39da6NyIT5DFJ4+NN6m72aH", - "handler": "onClickDoubleWin", - "customEventData": "" - }, - { - "__type__": "cc.UIOpacity", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 515 - }, - "_enabled": true, - "__prefab": { - "__id__": 568 - }, - "_opacity": 255, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bdqz0W+55Bg6qOcaKuVCbM" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "88oYSSJeRHrowP25rJuaLc", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 514 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 571 - }, - { - "__id__": 573 - } - ], - "_prefab": { - "__id__": 575 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -134.64800000000002, - "y": -136.26800000000003, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 570 - }, - "_enabled": true, - "__prefab": { - "__id__": 572 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 96.95999908447266, - "height": 61.27000045776367 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.48473597817439196, - "y": 0.5103639664458559 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d99AdE8KdGCozMUxKH1Dh8" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 570 - }, - "_enabled": true, - "__prefab": { - "__id__": 574 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "800ab2e8-aaa7-4dd1-bdd3-e6c63ff49b87", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "animation", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4fys337Z9I65GyJYZaGKR6" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b39wxgfZZPUICqhJmkWKGO", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 514 - }, - "_enabled": true, - "__prefab": { - "__id__": 577 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 243, - "height": 273 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "51qjdxEcRPUI3nDz3Ld68s" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a7sXt3qKFJ/JrrCP1qlXI9", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 580 + "__id__": 446 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1920 + "height": 979 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -11870,79 +8770,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "a0mQNYlCVLU7yBpKSfVlxQ" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 582 - }, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 100, - "_originalHeight": 100, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c5oova4AhF+78l8781RA1a" - }, - { - "__type__": "39da6NyIT5DFJ4+NN6m72aH", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 584 - }, - "rollerManager": { - "__id__": 298 - }, - "upLayer": { - "__id__": 396 - }, - "normalGameBg": { - "__id__": 3 - }, - "freeGameBg": { - "__id__": 67 - }, - "featureBuyNode": { - "__id__": 473 - }, - "doubleWinBtnNode": { - "__id__": 515 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "26YW2sLWxNBKEPhNXLZLIS" + "fileId": "0bJwfUTFVOJ7Q+S9wYnIJz" }, { "__type__": "cc.PrefabInfo", @@ -11952,7 +8780,7 @@ "asset": { "__id__": 0 }, - "fileId": "f02iA86VVLeq4VSZawQg93", + "fileId": "eb1wg1429OVbiDCDbGWnB4", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -11963,35 +8791,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 2 }, "_children": [ { - "__id__": 587 + "__id__": 449 }, { - "__id__": 657 + "__id__": 527 } ], "_active": true, "_components": [ { - "__id__": 697 + "__id__": 567 }, { - "__id__": 699 + "__id__": 569 }, { - "__id__": 701 + "__id__": 571 } ], "_prefab": { - "__id__": 703 + "__id__": 573 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": 131.34399999999994, "z": 0 }, "_lrot": { @@ -12023,27 +8851,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 586 + "__id__": 448 }, "_children": [ { - "__id__": 588 + "__id__": 450 }, { - "__id__": 602 + "__id__": 472 }, { - "__id__": 628 + "__id__": 498 } ], "_active": true, "_components": [ { - "__id__": 654 + "__id__": 524 } ], "_prefab": { - "__id__": 656 + "__id__": 526 }, "_lpos": { "__type__": "cc.Vec3", @@ -12080,24 +8908,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 587 + "__id__": 449 }, "_children": [ { - "__id__": 589 + "__id__": 451 } ], "_active": true, "_components": [ { - "__id__": 597 + "__id__": 467 }, { - "__id__": 599 + "__id__": 469 } ], "_prefab": { - "__id__": 601 + "__id__": 471 }, "_lpos": { "__type__": "cc.Vec3", @@ -12128,33 +8956,90 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 450 + }, + "_children": [ + { + "__id__": 452 + } + ], + "_active": true, + "_components": [ + { + "__id__": 460 + }, + { + "__id__": 462 + }, + { + "__id__": 464 + } + ], + "_prefab": { + "__id__": 466 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.Node", "_name": "sprite", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 588 + "__id__": 451 }, "_children": [], "_active": true, "_components": [ { - "__id__": 590 + "__id__": 453 }, { - "__id__": 592 + "__id__": 455 }, { - "__id__": 594 + "__id__": 457 } ], "_prefab": { - "__id__": 596 + "__id__": 459 }, "_lpos": { "__type__": "cc.Vec3", - "x": -259.5, + "x": -207.713, "y": 0, "z": 0 }, @@ -12187,16 +9072,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 589 + "__id__": 452 }, "_enabled": true, "__prefab": { - "__id__": 591 + "__id__": 454 }, "_contentSize": { "__type__": "cc.Size", - "width": 481, - "height": 83 + "width": 503, + "height": 75 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12215,11 +9100,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 589 + "__id__": 452 }, "_enabled": true, "__prefab": { - "__id__": 593 + "__id__": 456 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12232,7 +9117,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "c1f141e5-b89a-4695-a9e7-bf5011358222@f9941", + "__uuid__": "c4b48ccc-6c05-469a-93b3-fc640cfff011@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -12260,13 +9145,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 589 + "__id__": 452 }, "_enabled": true, "__prefab": { - "__id__": 595 + "__id__": 458 }, - "spriteName": "Normal1", + "spriteName": "Normal9", "_id": "" }, { @@ -12292,16 +9177,124 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 588 + "__id__": 451 }, "_enabled": true, "__prefab": { - "__id__": 598 + "__id__": 461 }, "_contentSize": { "__type__": "cc.Size", - "width": 1079.8199462890625, - "height": 238 + "width": 770, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "60lb1kG61DOqDhEsMUuYDt" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 451 + }, + "_enabled": true, + "__prefab": { + "__id__": 463 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.8, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c5ABbb8/5NDIvY0CltWXfU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 451 + }, + "_enabled": true, + "__prefab": { + "__id__": 465 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "faWw+JvEtAhY01hoW5xSUZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28l//w1FhKSLlhdNpOfmKa", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 450 + }, + "_enabled": true, + "__prefab": { + "__id__": 468 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 794, + "height": 117 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12315,16 +9308,16 @@ "fileId": "5bl5M2C+5D47p6rDcXY3vn" }, { - "__type__": "sp.Skeleton", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 588 + "__id__": 450 }, "_enabled": true, "__prefab": { - "__id__": 600 + "__id__": 470 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12336,28 +9329,28 @@ "b": 255, "a": 255 }, - "_skeletonData": { - "__uuid__": "013b6947-b68b-4997-98a6-d27487b64f16", - "__expectedType__": "sp.SkeletonData" + "_spriteFrame": { + "__uuid__": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", + "__expectedType__": "cc.SpriteFrame" }, - "defaultSkin": "default", - "defaultAnimation": "2", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "3eOfIowc1NKpR1Kbs6NRr0" + "fileId": "cb7KiL85JOxLaPx2ZR7FH6" }, { "__type__": "cc.PrefabInfo", @@ -12378,24 +9371,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 587 + "__id__": 449 }, "_children": [ { - "__id__": 603 + "__id__": 473 } ], "_active": false, "_components": [ { - "__id__": 623 + "__id__": 493 }, { - "__id__": 625 + "__id__": 495 } ], "_prefab": { - "__id__": 627 + "__id__": 497 }, "_lpos": { "__type__": "cc.Vec3", @@ -12432,27 +9425,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 602 + "__id__": 472 }, "_children": [ { - "__id__": 604 + "__id__": 474 }, { - "__id__": 612 + "__id__": 482 } ], "_active": true, "_components": [ { - "__id__": 618 + "__id__": 488 }, { - "__id__": 620 + "__id__": 490 } ], "_prefab": { - "__id__": 622 + "__id__": 492 }, "_lpos": { "__type__": "cc.Vec3", @@ -12489,27 +9482,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 603 + "__id__": 473 }, "_children": [], "_active": true, "_components": [ { - "__id__": 605 + "__id__": 475 }, { - "__id__": 607 + "__id__": 477 }, { - "__id__": 609 + "__id__": 479 } ], "_prefab": { - "__id__": 611 + "__id__": 481 }, "_lpos": { "__type__": "cc.Vec3", - "x": -179.25, + "x": -157.75, "y": 0, "z": 0 }, @@ -12542,16 +9535,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 604 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 606 + "__id__": 476 }, "_contentSize": { "__type__": "cc.Size", - "width": 51, - "height": 50 + "width": 94, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12570,11 +9563,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 604 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 608 + "__id__": 478 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12587,7 +9580,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "e86e634c-4370-48ee-bd87-436c701add77@f9941", + "__uuid__": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -12615,13 +9608,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 604 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 610 + "__id__": 480 }, - "spriteName": "Normal3", + "spriteName": "Normal6", "_id": "" }, { @@ -12647,24 +9640,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 603 + "__id__": 473 }, "_children": [], "_active": true, "_components": [ { - "__id__": 613 + "__id__": 483 }, { - "__id__": 615 + "__id__": 485 } ], "_prefab": { - "__id__": 617 + "__id__": 487 }, "_lpos": { "__type__": "cc.Vec3", - "x": -149.25, + "x": -127.75, "y": 0, "z": 0 }, @@ -12697,11 +9690,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 612 + "__id__": 482 }, "_enabled": true, "__prefab": { - "__id__": 614 + "__id__": 484 }, "_contentSize": { "__type__": "cc.Size", @@ -12725,11 +9718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 612 + "__id__": 482 }, "_enabled": true, "__prefab": { - "__id__": 616 + "__id__": 486 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12809,15 +9802,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 603 + "__id__": 473 }, "_enabled": true, "__prefab": { - "__id__": 619 + "__id__": 489 }, "_contentSize": { "__type__": "cc.Size", - "width": 460.5, + "width": 503.5, "height": 100 }, "_anchorPoint": { @@ -12837,11 +9830,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 603 + "__id__": 473 }, "_enabled": true, "__prefab": { - "__id__": 621 + "__id__": 491 }, "_resizeMode": 1, "_layoutType": 1, @@ -12888,16 +9881,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 602 + "__id__": 472 }, "_enabled": true, "__prefab": { - "__id__": 624 + "__id__": 494 }, "_contentSize": { "__type__": "cc.Size", - "width": 1084, - "height": 171 + "width": 794, + "height": 117 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12911,16 +9904,16 @@ "fileId": "faxvpP5NNN9LiP2/z7Wx0+" }, { - "__type__": "sp.Skeleton", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 602 + "__id__": 472 }, "_enabled": true, "__prefab": { - "__id__": 626 + "__id__": 496 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12932,28 +9925,28 @@ "b": 255, "a": 255 }, - "_skeletonData": { - "__uuid__": "e2992f0b-ce9f-4b85-9bcc-da2f1ced5acf", - "__expectedType__": "sp.SkeletonData" + "_spriteFrame": { + "__uuid__": "fc9fad23-4ca6-4689-9f38-b09f337acecf@f9941", + "__expectedType__": "cc.SpriteFrame" }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "7d6mSiIzNJ7aH1MbHHSezZ" + "fileId": "1a6pUIhOJKUYckHbGgHVu/" }, { "__type__": "cc.PrefabInfo", @@ -12974,24 +9967,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 587 + "__id__": 449 }, "_children": [ { - "__id__": 629 + "__id__": 499 } ], "_active": false, "_components": [ { - "__id__": 649 + "__id__": 519 }, { - "__id__": 651 + "__id__": 521 } ], "_prefab": { - "__id__": 653 + "__id__": 523 }, "_lpos": { "__type__": "cc.Vec3", @@ -13028,27 +10021,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 628 + "__id__": 498 }, "_children": [ { - "__id__": 630 + "__id__": 500 }, { - "__id__": 638 + "__id__": 508 } ], "_active": true, "_components": [ { - "__id__": 644 + "__id__": 514 }, { - "__id__": 646 + "__id__": 516 } ], "_prefab": { - "__id__": 648 + "__id__": 518 }, "_lpos": { "__type__": "cc.Vec3", @@ -13085,27 +10078,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 629 + "__id__": 499 }, "_children": [], "_active": true, "_components": [ { - "__id__": 631 + "__id__": 501 }, { - "__id__": 633 + "__id__": 503 }, { - "__id__": 635 + "__id__": 505 } ], "_prefab": { - "__id__": 637 + "__id__": 507 }, "_lpos": { "__type__": "cc.Vec3", - "x": -131.75, + "x": -91.75, "y": 0, "z": 0 }, @@ -13138,16 +10131,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 630 + "__id__": 500 }, "_enabled": true, "__prefab": { - "__id__": 632 + "__id__": 502 }, "_contentSize": { "__type__": "cc.Size", - "width": 146, - "height": 51 + "width": 226, + "height": 43 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -13166,11 +10159,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 630 + "__id__": 500 }, "_enabled": true, "__prefab": { - "__id__": 634 + "__id__": 504 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13183,7 +10176,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "711b4916-5e77-45bb-a541-9afff7a66a03@f9941", + "__uuid__": "ae4603c5-4824-4cd2-9978-cd767e21c269@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -13211,13 +10204,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 630 + "__id__": 500 }, "_enabled": true, "__prefab": { - "__id__": 636 + "__id__": 506 }, - "spriteName": "Normal4", + "spriteName": "Normal7", "_id": "" }, { @@ -13243,24 +10236,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 629 + "__id__": 499 }, "_children": [], "_active": true, "_components": [ { - "__id__": 639 + "__id__": 509 }, { - "__id__": 641 + "__id__": 511 } ], "_prefab": { - "__id__": 643 + "__id__": 513 }, "_lpos": { "__type__": "cc.Vec3", - "x": -101.75, + "x": -61.75, "y": 0, "z": 0 }, @@ -13293,11 +10286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 638 + "__id__": 508 }, "_enabled": true, "__prefab": { - "__id__": 640 + "__id__": 510 }, "_contentSize": { "__type__": "cc.Size", @@ -13321,11 +10314,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 638 + "__id__": 508 }, "_enabled": true, "__prefab": { - "__id__": 642 + "__id__": 512 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13405,15 +10398,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 645 + "__id__": 515 }, "_contentSize": { "__type__": "cc.Size", - "width": 555.5, + "width": 635.5, "height": 100 }, "_anchorPoint": { @@ -13433,11 +10426,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 647 + "__id__": 517 }, "_resizeMode": 1, "_layoutType": 1, @@ -13484,16 +10477,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 628 + "__id__": 498 }, "_enabled": true, "__prefab": { - "__id__": 650 + "__id__": 520 }, "_contentSize": { "__type__": "cc.Size", - "width": 1110, - "height": 238 + "width": 794, + "height": 117 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -13507,16 +10500,16 @@ "fileId": "f96aGOjU5KNZx6dHgWXsYz" }, { - "__type__": "sp.Skeleton", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 628 + "__id__": 498 }, "_enabled": true, "__prefab": { - "__id__": 652 + "__id__": 522 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13528,28 +10521,28 @@ "b": 255, "a": 255 }, - "_skeletonData": { - "__uuid__": "ac6cae4a-22f2-41dc-afc5-670a681e289f", - "__expectedType__": "sp.SkeletonData" + "_spriteFrame": { + "__uuid__": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@f9941", + "__expectedType__": "cc.SpriteFrame" }, - "defaultSkin": "default", - "defaultAnimation": "2", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "51Nw0xxf1KiK416sXkgJMZ" + "fileId": "69MMg5tMZKBpZZO+arzrM8" }, { "__type__": "cc.PrefabInfo", @@ -13570,11 +10563,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 587 + "__id__": 449 }, "_enabled": true, "__prefab": { - "__id__": 655 + "__id__": 525 }, "_contentSize": { "__type__": "cc.Size", @@ -13611,24 +10604,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 586 + "__id__": 448 }, "_children": [ { - "__id__": 658 + "__id__": 528 }, { - "__id__": 664 + "__id__": 534 } ], "_active": false, "_components": [ { - "__id__": 694 + "__id__": 564 } ], "_prefab": { - "__id__": 696 + "__id__": 566 }, "_lpos": { "__type__": "cc.Vec3", @@ -13665,20 +10658,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 657 + "__id__": 527 }, "_children": [], "_active": true, "_components": [ { - "__id__": 659 + "__id__": 529 }, { - "__id__": 661 + "__id__": 531 } ], "_prefab": { - "__id__": 663 + "__id__": 533 }, "_lpos": { "__type__": "cc.Vec3", @@ -13715,11 +10708,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 658 + "__id__": 528 }, "_enabled": true, "__prefab": { - "__id__": 660 + "__id__": 530 }, "_contentSize": { "__type__": "cc.Size", @@ -13743,11 +10736,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 658 + "__id__": 528 }, "_enabled": true, "__prefab": { - "__id__": 662 + "__id__": 532 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13801,27 +10794,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 657 + "__id__": 527 }, "_children": [ { - "__id__": 665 + "__id__": 535 }, { - "__id__": 681 + "__id__": 551 } ], "_active": true, "_components": [ { - "__id__": 689 + "__id__": 559 }, { - "__id__": 691 + "__id__": 561 } ], "_prefab": { - "__id__": 693 + "__id__": 563 }, "_lpos": { "__type__": "cc.Vec3", @@ -13858,24 +10851,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 534 }, "_children": [ { - "__id__": 666 + "__id__": 536 }, { - "__id__": 672 + "__id__": 542 } ], "_active": true, "_components": [ { - "__id__": 678 + "__id__": 548 } ], "_prefab": { - "__id__": 680 + "__id__": 550 }, "_lpos": { "__type__": "cc.Vec3", @@ -13912,20 +10905,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 665 + "__id__": 535 }, "_children": [], "_active": true, "_components": [ { - "__id__": 667 + "__id__": 537 }, { - "__id__": 669 + "__id__": 539 } ], "_prefab": { - "__id__": 671 + "__id__": 541 }, "_lpos": { "__type__": "cc.Vec3", @@ -13962,11 +10955,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 666 + "__id__": 536 }, "_enabled": true, "__prefab": { - "__id__": 668 + "__id__": 538 }, "_contentSize": { "__type__": "cc.Size", @@ -13990,11 +10983,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 666 + "__id__": 536 }, "_enabled": true, "__prefab": { - "__id__": 670 + "__id__": 540 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14048,20 +11041,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 665 + "__id__": 535 }, "_children": [], "_active": true, "_components": [ { - "__id__": 673 + "__id__": 543 }, { - "__id__": 675 + "__id__": 545 } ], "_prefab": { - "__id__": 677 + "__id__": 547 }, "_lpos": { "__type__": "cc.Vec3", @@ -14098,11 +11091,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 672 + "__id__": 542 }, "_enabled": true, "__prefab": { - "__id__": 674 + "__id__": 544 }, "_contentSize": { "__type__": "cc.Size", @@ -14126,11 +11119,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 672 + "__id__": 542 }, "_enabled": true, "__prefab": { - "__id__": 676 + "__id__": 546 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14184,11 +11177,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 665 + "__id__": 535 }, "_enabled": true, "__prefab": { - "__id__": 679 + "__id__": 549 }, "_contentSize": { "__type__": "cc.Size", @@ -14225,23 +11218,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 534 }, "_children": [], "_active": true, "_components": [ { - "__id__": 682 + "__id__": 552 }, { - "__id__": 684 + "__id__": 554 }, { - "__id__": 686 + "__id__": 556 } ], "_prefab": { - "__id__": 688 + "__id__": 558 }, "_lpos": { "__type__": "cc.Vec3", @@ -14278,11 +11271,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 683 + "__id__": 553 }, "_contentSize": { "__type__": "cc.Size", @@ -14306,11 +11299,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 685 + "__id__": 555 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14377,11 +11370,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 687 + "__id__": 557 }, "isBold": false, "fontOther": { @@ -14433,11 +11426,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 534 }, "_enabled": true, "__prefab": { - "__id__": 690 + "__id__": 560 }, "_contentSize": { "__type__": "cc.Size", @@ -14461,11 +11454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 534 }, "_enabled": true, "__prefab": { - "__id__": 692 + "__id__": 562 }, "_resizeMode": 1, "_layoutType": 1, @@ -14512,11 +11505,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 657 + "__id__": 527 }, "_enabled": true, "__prefab": { - "__id__": 695 + "__id__": 565 }, "_contentSize": { "__type__": "cc.Size", @@ -14553,16 +11546,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 448 }, "_enabled": true, "__prefab": { - "__id__": 698 + "__id__": 568 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1920 + "height": 1919.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -14581,26 +11574,26 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 448 }, "_enabled": true, "__prefab": { - "__id__": 700 + "__id__": 570 }, "smallMsgSpine": { - "__id__": 599 + "__id__": 469 }, "middleMsgSpine": { - "__id__": 625 + "__id__": 495 }, "largeMsgSpine": { - "__id__": 651 + "__id__": 521 }, "i18nSpriteMsg": { - "__id__": 592 + "__id__": 455 }, "grayMsgNode": { - "__id__": 657 + "__id__": 527 }, "_id": "" }, @@ -14614,18 +11607,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 448 }, "_enabled": true, "__prefab": { - "__id__": 702 + "__id__": 572 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 0, - "_bottom": 0, + "_top": -131.344, + "_bottom": 131.344, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -14659,46 +11652,97 @@ }, { "__type__": "cc.Node", - "_name": "SlotBar", + "_name": "DoubleWinBtn", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 2 }, "_children": [ { - "__id__": 705 - }, - { - "__id__": 801 - }, - { - "__id__": 940 - }, - { - "__id__": 1070 - }, - { - "__id__": 1106 - }, - { - "__id__": 1196 + "__id__": 575 } ], "_active": true, "_components": [ { - "__id__": 1205 - }, - { - "__id__": 1207 - }, - { - "__id__": 1209 + "__id__": 666 } ], "_prefab": { - "__id__": 1224 + "__id__": 668 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 157.423, + "y": -524.313, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 574 + }, + "_children": [ + { + "__id__": 576 + }, + { + "__id__": 582 + }, + { + "__id__": 590 + }, + { + "__id__": 604 + }, + { + "__id__": 610 + }, + { + "__id__": 616 + }, + { + "__id__": 622 + }, + { + "__id__": 655 + } + ], + "_active": true, + "_components": [ + { + "__id__": 663 + } + ], + "_prefab": { + "__id__": 665 }, "_lpos": { "__type__": "cc.Vec3", @@ -14731,28 +11775,2315 @@ }, { "__type__": "cc.Node", - "_name": "PlayerMsg", + "_name": "bg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 575 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 577 + }, + { + "__id__": 579 + } + ], + "_prefab": { + "__id__": 581 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 576 + }, + "_enabled": true, + "__prefab": { + "__id__": 578 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 767, + "height": 118 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ae5S2JUr9P0rXHMmU+d797" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 576 + }, + "_enabled": true, + "__prefab": { + "__id__": 580 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23L/7Pmi9E44554ffYplkR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "82Pv8cPbdPLIaJ9gpUdz2f", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "zxksctte1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 583 + }, + { + "__id__": 585 + }, + { + "__id__": 587 + } + ], + "_prefab": { + "__id__": 589 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -87.876, + "y": 29.025, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 582 + }, + "_enabled": true, + "__prefab": { + "__id__": 584 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 475.5029296875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "67wRlTfsxMQKswxUVvSk8z" + }, + { + "__type__": "13604ZE7BdHT7nIlM/sbl+h", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 582 + }, + "_enabled": true, + "__prefab": { + "__id__": 586 + }, + "isBold": true, + "fontOther": { + "__uuid__": "9f6944f9-a7bf-496b-859f-0b3789dea62d", + "__expectedType__": "cc.TTFFont" + }, + "fontOtherBold": { + "__uuid__": "dc98ea2a-da8a-491e-bf52-158d7e0f6ecc", + "__expectedType__": "cc.TTFFont" + }, + "fontThVi": { + "__uuid__": "0d77e31d-ca2c-46b0-ae19-73d80ed8594d", + "__expectedType__": "cc.TTFFont" + }, + "fontThViBold": { + "__uuid__": "ab560c84-c685-4ee1-b869-5770e30c9e5e", + "__expectedType__": "cc.TTFFont" + }, + "fontMy": { + "__uuid__": "8256fee1-5ce7-438f-a392-b5e1d2ec38ab", + "__expectedType__": "cc.TTFFont" + }, + "fontMyBold": { + "__uuid__": "20c23edc-6c4e-43bb-b653-6e5684bf672e", + "__expectedType__": "cc.TTFFont" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "85UzeeXG1NcJob1EwSR4GO" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 582 + }, + "_enabled": true, + "__prefab": { + "__id__": 588 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 249, + "g": 223, + "b": 104, + "a": 255 + }, + "_string": "Double the chance of Free Spins Feature", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 26, + "_fontSize": 26, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9a6LdIzvBNH4qA19ZOTlj+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48puUmBqZNHrkGET42FcsO", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "bet_bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 }, "_children": [ { - "__id__": 706 + "__id__": 591 + } + ], + "_active": false, + "_components": [ + { + "__id__": 599 }, { - "__id__": 746 + "__id__": 601 + } + ], + "_prefab": { + "__id__": 603 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -68.93, + "y": -15, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 590 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 592 + }, + { + "__id__": 594 + }, + { + "__id__": 596 + } + ], + "_prefab": { + "__id__": 598 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -47.729, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 591 + }, + "_enabled": true, + "__prefab": { + "__id__": 593 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 50.5654296875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3eZUbrgddNtYVplJH9+BAM" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 591 + }, + "_enabled": true, + "__prefab": { + "__id__": 595 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 249, + "g": 223, + "b": 104, + "a": 255 + }, + "_string": "BET", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 26, + "_fontSize": 26, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "18LmD2XoRGOpylYprjlRl5" + }, + { + "__type__": "13604ZE7BdHT7nIlM/sbl+h", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 591 + }, + "_enabled": true, + "__prefab": { + "__id__": 597 + }, + "isBold": true, + "fontOther": { + "__uuid__": "9f6944f9-a7bf-496b-859f-0b3789dea62d", + "__expectedType__": "cc.TTFFont" + }, + "fontOtherBold": { + "__uuid__": "dc98ea2a-da8a-491e-bf52-158d7e0f6ecc", + "__expectedType__": "cc.TTFFont" + }, + "fontThVi": { + "__uuid__": "0d77e31d-ca2c-46b0-ae19-73d80ed8594d", + "__expectedType__": "cc.TTFFont" + }, + "fontThViBold": { + "__uuid__": "ab560c84-c685-4ee1-b869-5770e30c9e5e", + "__expectedType__": "cc.TTFFont" + }, + "fontMy": { + "__uuid__": "8256fee1-5ce7-438f-a392-b5e1d2ec38ab", + "__expectedType__": "cc.TTFFont" + }, + "fontMyBold": { + "__uuid__": "20c23edc-6c4e-43bb-b653-6e5684bf672e", + "__expectedType__": "cc.TTFFont" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "65xN0luF9J8bUewzL6odCU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9eV+XmdylG5pYD2s2T0OwH", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 590 + }, + "_enabled": true, + "__prefab": { + "__id__": 600 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 174, + "height": 48 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e12Ke3okNN+53d8GeEaJqc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 590 + }, + "_enabled": true, + "__prefab": { + "__id__": 602 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "41d262ba-ebf6-43fc-a7c1-eec24567d41a@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "29a5kI/zlNr5/mg/LQ2fLK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eay6ZvfnJB3Jhxu4yDG3E7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "count", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 605 + }, + { + "__id__": 607 + } + ], + "_prefab": { + "__id__": 609 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -43.722, + "y": -15, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 604 + }, + "_enabled": true, + "__prefab": { + "__id__": 606 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61.44, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b3ow4dhPxPW4G7UvTq0oeM" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 604 + }, + "_enabled": true, + "__prefab": { + "__id__": 608 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "1.68", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 24, + "_fontSize": 24, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "e3973bf7-5341-4d1e-8265-88afe473ed48", + "__expectedType__": "cc.BitmapFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_outlineWidth": 0, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f2f35F3CZAmIK+Haltt0Et" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9RHROiw1MzZ+T+pAxwPwY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "deng_off", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 611 + }, + { + "__id__": 613 + } + ], + "_prefab": { + "__id__": 615 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 291, + "y": 70, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 610 + }, + "_enabled": true, + "__prefab": { + "__id__": 612 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 303 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "87QpyqDehEGZpAJ5ntCOv8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 610 + }, + "_enabled": true, + "__prefab": { + "__id__": 614 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d906fce6-2d43-4a52-9076-7700505f040c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "08geat85JIkIa+38H+bZI9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ff1QJ6jMpOzqZITDHtNrWf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "deng_on", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 617 + }, + { + "__id__": 619 + } + ], + "_prefab": { + "__id__": 621 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 291, + "y": 70, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 616 + }, + "_enabled": true, + "__prefab": { + "__id__": 618 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 305 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d9OBK8PAVD2qSwtb33SDYX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 616 + }, + "_enabled": true, + "__prefab": { + "__id__": 620 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "4a415c4b-10bb-4709-8481-d6ca8799a474@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8buCR6qGhJsbAhe/UXxBmo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f6NFyp895Lz4fjEqxzn5ub", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pt_11", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 + }, + "_children": [ + { + "__id__": 623 + }, + { + "__id__": 629 + }, + { + "__id__": 635 + }, + { + "__id__": 641 } ], "_active": true, "_components": [ { - "__id__": 798 + "__id__": 647 + }, + { + "__id__": 649 + }, + { + "__id__": 652 } ], "_prefab": { - "__id__": 800 + "__id__": 654 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 283.61, + "y": -15, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "pt_12", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 622 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 624 + }, + { + "__id__": 626 + } + ], + "_prefab": { + "__id__": 628 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 623 + }, + "_enabled": true, + "__prefab": { + "__id__": 625 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 123, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a4XnbuPINDLIT1v0O8rVf2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 623 + }, + "_enabled": true, + "__prefab": { + "__id__": 627 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "47magF16BABpIAffYWwkUt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7f6HXTSRAgIHOtVSmAlB8", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pt_13", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 622 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 630 + }, + { + "__id__": 632 + } + ], + "_prefab": { + "__id__": 634 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 629 + }, + "_enabled": true, + "__prefab": { + "__id__": 631 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 123, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f5T3BPSNdO/pvX1hmX97RB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 629 + }, + "_enabled": true, + "__prefab": { + "__id__": 633 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "bcdd2794-92bc-4204-ace8-3cb57366af3d@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2d9ssGaPtEraAmUjwfREOR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7cqe06hR9G1ZDUAxXc3DEC", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "on", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 622 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 636 + }, + { + "__id__": 638 + } + ], + "_prefab": { + "__id__": 640 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -25, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 635 + }, + "_enabled": true, + "__prefab": { + "__id__": 637 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 41, + "height": 23 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bffzi4ArVM6rAOYWFKr1BQ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 635 + }, + "_enabled": true, + "__prefab": { + "__id__": 639 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "54f8ca3f-1f35-4e87-88f2-6865bf919da9@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ec1Q4wc1NGi7lS4C244Laf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5fKXAsS3JIWI+gxbYH/n5b", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "off", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 622 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 642 + }, + { + "__id__": 644 + } + ], + "_prefab": { + "__id__": 646 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 25, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 641 + }, + "_enabled": true, + "__prefab": { + "__id__": 643 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 54, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "86FeobKH5DKIQAbjrhrkx9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 641 + }, + "_enabled": true, + "__prefab": { + "__id__": 645 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aansLzsNtJy5v+qVG4iH9g" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "55su+Bw4RAT7RfIR97d75o", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 622 + }, + "_enabled": true, + "__prefab": { + "__id__": 648 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 123, + "height": 52 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61W7wZFPNAI46nozXqR5lh" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 622 + }, + "_enabled": true, + "__prefab": { + "__id__": 650 + }, + "clickEvents": [ + { + "__id__": 651 + } + ], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 575 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5eayKvXblGS562Q3zcutkp" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "39da6NyIT5DFJ4+NN6m72aH", + "handler": "onClickDoubleWin", + "customEventData": "" + }, + { + "__type__": "cc.UIOpacity", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 622 + }, + "_enabled": true, + "__prefab": { + "__id__": 653 + }, + "_opacity": 255, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d8YhD5c2NANLqWR7XqLwfi" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "83TkuG35RDm7c6cvFWEpxS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "bet_label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 575 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 656 + }, + { + "__id__": 658 + }, + { + "__id__": 660 + } + ], + "_prefab": { + "__id__": 662 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 290, + "y": 35, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 655 + }, + "_enabled": true, + "__prefab": { + "__id__": 657 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 54, + "height": 28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44L++Z+WNHbZGc3PAPnkvb" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 655 + }, + "_enabled": true, + "__prefab": { + "__id__": 659 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "1bd3da38-fa51-43b4-b3cf-32416322aea1@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bemuRHAbFF4LbtzA8qfiCP" + }, + { + "__type__": "e6c8d4szahIuLbtf6yx+hH6", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 655 + }, + "_enabled": true, + "__prefab": { + "__id__": 661 + }, + "spriteName": "Normal5", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23tI2CX/xGqIpEgolFWVzU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fOvBpnZhKAKVWYW2Z3CuA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 575 + }, + "_enabled": true, + "__prefab": { + "__id__": 664 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 767, + "height": 118 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "63VmpaBDpLabSoL4PkAkWe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "88oYSSJeRHrowP25rJuaLc", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 574 + }, + "_enabled": true, + "__prefab": { + "__id__": 667 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 243, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "51qjdxEcRPUI3nDz3Ld68s" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7sXt3qKFJ/JrrCP1qlXI9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 670 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1919.9999999999998 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a0mQNYlCVLU7yBpKSfVlxQ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 672 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c5oova4AhF+78l8781RA1a" + }, + { + "__type__": "39da6NyIT5DFJ4+NN6m72aH", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 674 + }, + "rollerManager": { + "__id__": 268 + }, + "upLayer": { + "__id__": 366 + }, + "normalGameBg": { + "__id__": 3 + }, + "freeGameBg": { + "__id__": 37 + }, + "featureBuyNode": { + "__id__": 403 + }, + "doubleWinBtnNode": { + "__id__": 575 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "26YW2sLWxNBKEPhNXLZLIS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f02iA86VVLeq4VSZawQg93", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SlotBar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 677 + }, + { + "__id__": 773 + }, + { + "__id__": 868 + }, + { + "__id__": 998 + }, + { + "__id__": 1034 + }, + { + "__id__": 1124 + } + ], + "_active": true, + "_components": [ + { + "__id__": 1133 + }, + { + "__id__": 1135 + }, + { + "__id__": 1137 + } + ], + "_prefab": { + "__id__": 1152 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -18.448999999999955, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "PlayerMsg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 676 + }, + "_children": [ + { + "__id__": 678 + }, + { + "__id__": 718 + } + ], + "_active": true, + "_components": [ + { + "__id__": 770 + } + ], + "_prefab": { + "__id__": 772 }, "_lpos": { "__type__": "cc.Vec3", @@ -14789,27 +14120,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 705 + "__id__": 677 }, "_children": [ { - "__id__": 707 + "__id__": 679 }, { - "__id__": 719 + "__id__": 691 }, { - "__id__": 731 + "__id__": 703 } ], "_active": true, "_components": [ { - "__id__": 743 + "__id__": 715 } ], "_prefab": { - "__id__": 745 + "__id__": 717 }, "_lpos": { "__type__": "cc.Vec3", @@ -14846,24 +14177,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 706 + "__id__": 678 }, "_children": [ { - "__id__": 708 + "__id__": 680 } ], "_active": true, "_components": [ { - "__id__": 714 + "__id__": 686 }, { - "__id__": 716 + "__id__": 688 } ], "_prefab": { - "__id__": 718 + "__id__": 690 }, "_lpos": { "__type__": "cc.Vec3", @@ -14900,20 +14231,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 707 + "__id__": 679 }, "_children": [], "_active": true, "_components": [ { - "__id__": 709 + "__id__": 681 }, { - "__id__": 711 + "__id__": 683 } ], "_prefab": { - "__id__": 713 + "__id__": 685 }, "_lpos": { "__type__": "cc.Vec3", @@ -14950,11 +14281,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 708 + "__id__": 680 }, "_enabled": true, "__prefab": { - "__id__": 710 + "__id__": 682 }, "_contentSize": { "__type__": "cc.Size", @@ -14978,20 +14309,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 708 + "__id__": 680 }, "_enabled": true, "__prefab": { - "__id__": 712 + "__id__": 684 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 91, - "g": 255, - "b": 18, + "r": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -15036,11 +14367,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 707 + "__id__": 679 }, "_enabled": true, "__prefab": { - "__id__": 715 + "__id__": 687 }, "_contentSize": { "__type__": "cc.Size", @@ -15064,11 +14395,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 707 + "__id__": 679 }, "_enabled": true, "__prefab": { - "__id__": 717 + "__id__": 689 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15122,24 +14453,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 706 + "__id__": 678 }, "_children": [ { - "__id__": 720 + "__id__": 692 } ], "_active": true, "_components": [ { - "__id__": 726 + "__id__": 698 }, { - "__id__": 728 + "__id__": 700 } ], "_prefab": { - "__id__": 730 + "__id__": 702 }, "_lpos": { "__type__": "cc.Vec3", @@ -15176,20 +14507,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 719 + "__id__": 691 }, "_children": [], "_active": true, "_components": [ { - "__id__": 721 + "__id__": 693 }, { - "__id__": 723 + "__id__": 695 } ], "_prefab": { - "__id__": 725 + "__id__": 697 }, "_lpos": { "__type__": "cc.Vec3", @@ -15226,11 +14557,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 720 + "__id__": 692 }, "_enabled": true, "__prefab": { - "__id__": 722 + "__id__": 694 }, "_contentSize": { "__type__": "cc.Size", @@ -15254,20 +14585,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 720 + "__id__": 692 }, "_enabled": true, "__prefab": { - "__id__": 724 + "__id__": 696 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 91, - "g": 255, - "b": 18, + "r": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -15312,11 +14643,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 719 + "__id__": 691 }, "_enabled": true, "__prefab": { - "__id__": 727 + "__id__": 699 }, "_contentSize": { "__type__": "cc.Size", @@ -15340,11 +14671,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 719 + "__id__": 691 }, "_enabled": true, "__prefab": { - "__id__": 729 + "__id__": 701 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15398,24 +14729,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 706 + "__id__": 678 }, "_children": [ { - "__id__": 732 + "__id__": 704 } ], "_active": true, "_components": [ { - "__id__": 738 + "__id__": 710 }, { - "__id__": 740 + "__id__": 712 } ], "_prefab": { - "__id__": 742 + "__id__": 714 }, "_lpos": { "__type__": "cc.Vec3", @@ -15452,20 +14783,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 731 + "__id__": 703 }, "_children": [], "_active": true, "_components": [ { - "__id__": 733 + "__id__": 705 }, { - "__id__": 735 + "__id__": 707 } ], "_prefab": { - "__id__": 737 + "__id__": 709 }, "_lpos": { "__type__": "cc.Vec3", @@ -15502,11 +14833,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 732 + "__id__": 704 }, "_enabled": true, "__prefab": { - "__id__": 734 + "__id__": 706 }, "_contentSize": { "__type__": "cc.Size", @@ -15530,20 +14861,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 732 + "__id__": 704 }, "_enabled": true, "__prefab": { - "__id__": 736 + "__id__": 708 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 91, - "g": 255, - "b": 18, + "r": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -15588,11 +14919,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 731 + "__id__": 703 }, "_enabled": true, "__prefab": { - "__id__": 739 + "__id__": 711 }, "_contentSize": { "__type__": "cc.Size", @@ -15616,11 +14947,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 731 + "__id__": 703 }, "_enabled": true, "__prefab": { - "__id__": 741 + "__id__": 713 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15674,11 +15005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 706 + "__id__": 678 }, "_enabled": true, "__prefab": { - "__id__": 744 + "__id__": 716 }, "_contentSize": { "__type__": "cc.Size", @@ -15715,36 +15046,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 705 + "__id__": 677 }, "_children": [ { - "__id__": 747 + "__id__": 719 }, { - "__id__": 757 + "__id__": 729 }, { - "__id__": 767 + "__id__": 739 }, { - "__id__": 777 + "__id__": 749 }, { - "__id__": 783 + "__id__": 755 }, { - "__id__": 789 + "__id__": 761 } ], "_active": true, "_components": [ { - "__id__": 795 + "__id__": 767 } ], "_prefab": { - "__id__": 797 + "__id__": 769 }, "_lpos": { "__type__": "cc.Vec3", @@ -15781,26 +15112,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 746 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 748 + "__id__": 720 }, { - "__id__": 750 + "__id__": 722 }, { - "__id__": 752 + "__id__": 724 }, { - "__id__": 754 + "__id__": 726 } ], "_prefab": { - "__id__": 756 + "__id__": 728 }, "_lpos": { "__type__": "cc.Vec3", @@ -15837,11 +15168,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 747 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 749 + "__id__": 721 }, "_contentSize": { "__type__": "cc.Size", @@ -15865,20 +15196,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 747 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 751 + "__id__": 723 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 91, - "g": 255, - "b": 18, + "r": 255, + "g": 246, + "b": 187, "a": 255 }, "_string": "Balance", @@ -15933,11 +15264,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 747 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 753 + "__id__": 725 }, "key": "AID_MAIN_SHOW_BALANCE", "_id": "" @@ -15952,11 +15283,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 747 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 755 + "__id__": 727 }, "isBold": true, "fontOther": { @@ -16008,26 +15339,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 746 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 758 + "__id__": 730 }, { - "__id__": 760 + "__id__": 732 }, { - "__id__": 762 + "__id__": 734 }, { - "__id__": 764 + "__id__": 736 } ], "_prefab": { - "__id__": 766 + "__id__": 738 }, "_lpos": { "__type__": "cc.Vec3", @@ -16064,11 +15395,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 729 }, "_enabled": true, "__prefab": { - "__id__": 759 + "__id__": 731 }, "_contentSize": { "__type__": "cc.Size", @@ -16092,20 +15423,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 729 }, "_enabled": true, "__prefab": { - "__id__": 761 + "__id__": 733 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 91, - "g": 255, - "b": 18, + "r": 255, + "g": 246, + "b": 187, "a": 255 }, "_string": "Bet", @@ -16160,11 +15491,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 729 }, "_enabled": true, "__prefab": { - "__id__": 763 + "__id__": 735 }, "key": "AID_MAIN_SHOW_BET", "_id": "" @@ -16179,11 +15510,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 729 }, "_enabled": true, "__prefab": { - "__id__": 765 + "__id__": 737 }, "isBold": true, "fontOther": { @@ -16235,26 +15566,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 746 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 768 + "__id__": 740 }, { - "__id__": 770 + "__id__": 742 }, { - "__id__": 772 + "__id__": 744 }, { - "__id__": 774 + "__id__": 746 } ], "_prefab": { - "__id__": 776 + "__id__": 748 }, "_lpos": { "__type__": "cc.Vec3", @@ -16291,11 +15622,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 739 }, "_enabled": true, "__prefab": { - "__id__": 769 + "__id__": 741 }, "_contentSize": { "__type__": "cc.Size", @@ -16319,20 +15650,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 739 }, "_enabled": true, "__prefab": { - "__id__": 771 + "__id__": 743 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 91, - "g": 255, - "b": 18, + "r": 255, + "g": 246, + "b": 187, "a": 255 }, "_string": "Win", @@ -16387,11 +15718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 739 }, "_enabled": true, "__prefab": { - "__id__": 773 + "__id__": 745 }, "key": "AID_MAIN_SHOW_WIN", "_id": "" @@ -16406,11 +15737,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 739 }, "_enabled": true, "__prefab": { - "__id__": 775 + "__id__": 747 }, "isBold": true, "fontOther": { @@ -16462,20 +15793,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 746 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 778 + "__id__": 750 }, { - "__id__": 780 + "__id__": 752 } ], "_prefab": { - "__id__": 782 + "__id__": 754 }, "_lpos": { "__type__": "cc.Vec3", @@ -16512,11 +15843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 777 + "__id__": 749 }, "_enabled": true, "__prefab": { - "__id__": 779 + "__id__": 751 }, "_contentSize": { "__type__": "cc.Size", @@ -16540,11 +15871,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 777 + "__id__": 749 }, "_enabled": true, "__prefab": { - "__id__": 781 + "__id__": 753 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16559,12 +15890,12 @@ "_string": "123,456,789.00", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 41, + "_actualFontSize": 40, "_fontSize": 40, "_fontFamily": "Arial", "_lineHeight": 30, "_overflow": 2, - "_enableWrapText": true, + "_enableWrapText": false, "_font": { "__uuid__": "f456b964-0023-403d-a138-a3b0d17c4a9c", "__expectedType__": "cc.TTFFont" @@ -16624,20 +15955,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 746 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 784 + "__id__": 756 }, { - "__id__": 786 + "__id__": 758 } ], "_prefab": { - "__id__": 788 + "__id__": 760 }, "_lpos": { "__type__": "cc.Vec3", @@ -16674,11 +16005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 755 }, "_enabled": true, "__prefab": { - "__id__": 785 + "__id__": 757 }, "_contentSize": { "__type__": "cc.Size", @@ -16702,11 +16033,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 755 }, "_enabled": true, "__prefab": { - "__id__": 787 + "__id__": 759 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16721,12 +16052,12 @@ "_string": "123,456,789.00", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 41, + "_actualFontSize": 40, "_fontSize": 40, "_fontFamily": "Arial", "_lineHeight": 30, "_overflow": 2, - "_enableWrapText": true, + "_enableWrapText": false, "_font": { "__uuid__": "f456b964-0023-403d-a138-a3b0d17c4a9c", "__expectedType__": "cc.TTFFont" @@ -16786,20 +16117,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 746 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 790 + "__id__": 762 }, { - "__id__": 792 + "__id__": 764 } ], "_prefab": { - "__id__": 794 + "__id__": 766 }, "_lpos": { "__type__": "cc.Vec3", @@ -16836,11 +16167,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 761 }, "_enabled": true, "__prefab": { - "__id__": 791 + "__id__": 763 }, "_contentSize": { "__type__": "cc.Size", @@ -16864,11 +16195,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 761 }, "_enabled": true, "__prefab": { - "__id__": 793 + "__id__": 765 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16883,12 +16214,12 @@ "_string": "123,456,789.00", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 41, + "_actualFontSize": 40, "_fontSize": 40, "_fontFamily": "Arial", "_lineHeight": 30, "_overflow": 2, - "_enableWrapText": true, + "_enableWrapText": false, "_font": { "__uuid__": "f456b964-0023-403d-a138-a3b0d17c4a9c", "__expectedType__": "cc.TTFFont" @@ -16948,11 +16279,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 746 + "__id__": 718 }, "_enabled": true, "__prefab": { - "__id__": 796 + "__id__": 768 }, "_contentSize": { "__type__": "cc.Size", @@ -16989,11 +16320,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 677 }, "_enabled": true, "__prefab": { - "__id__": 799 + "__id__": 771 }, "_contentSize": { "__type__": "cc.Size", @@ -17030,42 +16361,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 676 }, "_children": [ { - "__id__": 802 + "__id__": 774 }, { - "__id__": 817 + "__id__": 795 + }, + { + "__id__": 810 + }, + { + "__id__": 821 }, { "__id__": 832 }, { - "__id__": 843 + "__id__": 847 }, { - "__id__": 854 - }, - { - "__id__": 869 - }, - { - "__id__": 895 + "__id__": 855 } ], "_active": true, "_components": [ { - "__id__": 935 + "__id__": 863 }, { - "__id__": 937 + "__id__": 865 } ], "_prefab": { - "__id__": 939 + "__id__": 867 }, "_lpos": { "__type__": "cc.Vec3", @@ -17102,27 +16433,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 801 + "__id__": 773 }, "_children": [ { - "__id__": 803 + "__id__": 775 + }, + { + "__id__": 781 } ], "_active": true, "_components": [ { - "__id__": 809 + "__id__": 787 }, { - "__id__": 811 + "__id__": 789 }, { - "__id__": 814 + "__id__": 792 } ], "_prefab": { - "__id__": 816 + "__id__": 794 }, "_lpos": { "__type__": "cc.Vec3", @@ -17159,20 +16493,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 802 + "__id__": 774 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 804 + "__id__": 776 }, { - "__id__": 806 + "__id__": 778 } ], "_prefab": { - "__id__": 808 + "__id__": 780 }, "_lpos": { "__type__": "cc.Vec3", @@ -17209,11 +16543,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 803 + "__id__": 775 }, "_enabled": true, "__prefab": { - "__id__": 805 + "__id__": 777 }, "_contentSize": { "__type__": "cc.Size", @@ -17237,11 +16571,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 803 + "__id__": 775 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 807 + "__id__": 779 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17289,17 +16623,153 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 774 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 782 + }, + { + "__id__": 784 + } + ], + "_prefab": { + "__id__": 786 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 781 }, "_enabled": true, "__prefab": { - "__id__": 810 + "__id__": 783 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 289, + "height": 286 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b7lbdEp6xNlqGO3DXs+YwT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 781 + }, + "_enabled": true, + "__prefab": { + "__id__": 785 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "19d79212-3069-46d9-bded-d1fbccf8f461@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "45OVH0mPxJurqTdbiru95p" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3cOrmT/M9M/peoZNRu7hI8", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 774 + }, + "_enabled": true, + "__prefab": { + "__id__": 788 }, "_contentSize": { "__type__": "cc.Size", @@ -17323,15 +16793,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 774 }, "_enabled": true, "__prefab": { - "__id__": 812 + "__id__": 790 }, "clickEvents": [ { - "__id__": 813 + "__id__": 791 } ], "_interactable": true, @@ -17383,7 +16853,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 802 + "__id__": 774 }, "_id": "" }, @@ -17394,7 +16864,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17407,11 +16877,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 774 }, "_enabled": true, "__prefab": { - "__id__": 815 + "__id__": 793 }, "_opacity": 255, "_id": "" @@ -17439,27 +16909,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 801 + "__id__": 773 }, "_children": [ { - "__id__": 818 + "__id__": 796 } ], "_active": false, "_components": [ { - "__id__": 824 + "__id__": 802 }, { - "__id__": 826 + "__id__": 804 }, { - "__id__": 828 + "__id__": 806 } ], "_prefab": { - "__id__": 831 + "__id__": 809 }, "_lpos": { "__type__": "cc.Vec3", @@ -17496,20 +16966,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 817 + "__id__": 795 }, "_children": [], "_active": true, "_components": [ { - "__id__": 819 + "__id__": 797 }, { - "__id__": 821 + "__id__": 799 } ], "_prefab": { - "__id__": 823 + "__id__": 801 }, "_lpos": { "__type__": "cc.Vec3", @@ -17546,11 +17016,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 818 + "__id__": 796 }, "_enabled": true, "__prefab": { - "__id__": 820 + "__id__": 798 }, "_contentSize": { "__type__": "cc.Size", @@ -17574,11 +17044,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 818 + "__id__": 796 }, "_enabled": true, "__prefab": { - "__id__": 822 + "__id__": 800 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17593,18 +17063,18 @@ "_string": "999", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 88, + "_actualFontSize": 64, "_fontSize": 199, "_fontFamily": "Arial", "_lineHeight": 199, "_overflow": 2, "_enableWrapText": false, "_font": { - "__uuid__": "224e0ba0-9f4a-484d-a1cf-0e42544513db", + "__uuid__": "0c603a88-f90d-4f74-93ad-e66475ad5ff3", "__expectedType__": "cc.BitmapFont" }, "_isSystemFontUsed": false, - "_spacingX": -23, + "_spacingX": 0, "_isItalic": false, "_isBold": false, "_isUnderline": false, @@ -17658,16 +17128,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 817 + "__id__": 795 }, "_enabled": true, "__prefab": { - "__id__": 825 + "__id__": 803 }, "_contentSize": { "__type__": "cc.Size", - "width": 236, - "height": 236 + "width": 262, + "height": 256 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -17686,11 +17156,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 817 + "__id__": 795 }, "_enabled": true, "__prefab": { - "__id__": 827 + "__id__": 805 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17703,7 +17173,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "77ab7745-2944-4bee-aff3-217558081b2e@f9941", + "__uuid__": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -17731,15 +17201,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 817 + "__id__": 795 }, "_enabled": true, "__prefab": { - "__id__": 829 + "__id__": 807 }, "clickEvents": [ { - "__id__": 830 + "__id__": 808 } ], "_interactable": true, @@ -17788,7 +17258,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17814,26 +17284,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 801 + "__id__": 773 }, "_children": [], "_active": true, "_components": [ { - "__id__": 833 + "__id__": 811 }, { - "__id__": 835 + "__id__": 813 }, { - "__id__": 837 + "__id__": 815 }, { - "__id__": 840 + "__id__": 818 } ], "_prefab": { - "__id__": 842 + "__id__": 820 }, "_lpos": { "__type__": "cc.Vec3", @@ -17870,11 +17340,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 832 + "__id__": 810 }, "_enabled": true, "__prefab": { - "__id__": 834 + "__id__": 812 }, "_contentSize": { "__type__": "cc.Size", @@ -17898,11 +17368,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 832 + "__id__": 810 }, "_enabled": true, "__prefab": { - "__id__": 836 + "__id__": 814 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17910,8 +17380,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -17943,15 +17413,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 832 + "__id__": 810 }, "_enabled": true, "__prefab": { - "__id__": 838 + "__id__": 816 }, "clickEvents": [ { - "__id__": 839 + "__id__": 817 } ], "_interactable": true, @@ -18000,7 +17470,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18013,11 +17483,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 832 + "__id__": 810 }, "_enabled": true, "__prefab": { - "__id__": 841 + "__id__": 819 }, "_opacity": 255, "_id": "" @@ -18045,26 +17515,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 801 + "__id__": 773 }, "_children": [], "_active": true, "_components": [ { - "__id__": 844 + "__id__": 822 }, { - "__id__": 846 + "__id__": 824 }, { - "__id__": 848 + "__id__": 826 }, { - "__id__": 851 + "__id__": 829 } ], "_prefab": { - "__id__": 853 + "__id__": 831 }, "_lpos": { "__type__": "cc.Vec3", @@ -18101,11 +17571,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 821 }, "_enabled": true, "__prefab": { - "__id__": 845 + "__id__": 823 }, "_contentSize": { "__type__": "cc.Size", @@ -18129,11 +17599,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 821 }, "_enabled": true, "__prefab": { - "__id__": 847 + "__id__": 825 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18141,8 +17611,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -18174,15 +17644,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 821 }, "_enabled": true, "__prefab": { - "__id__": 849 + "__id__": 827 }, "clickEvents": [ { - "__id__": 850 + "__id__": 828 } ], "_interactable": true, @@ -18231,7 +17701,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18244,11 +17714,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 821 }, "_enabled": true, "__prefab": { - "__id__": 852 + "__id__": 830 }, "_opacity": 255, "_id": "" @@ -18276,27 +17746,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 801 + "__id__": 773 }, "_children": [ { - "__id__": 855 + "__id__": 833 } ], "_active": true, "_components": [ { - "__id__": 861 + "__id__": 839 }, { - "__id__": 863 + "__id__": 841 }, { - "__id__": 866 + "__id__": 844 } ], "_prefab": { - "__id__": 868 + "__id__": 846 }, "_lpos": { "__type__": "cc.Vec3", @@ -18333,20 +17803,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 854 + "__id__": 832 }, "_children": [], "_active": true, "_components": [ { - "__id__": 856 + "__id__": 834 }, { - "__id__": 858 + "__id__": 836 } ], "_prefab": { - "__id__": 860 + "__id__": 838 }, "_lpos": { "__type__": "cc.Vec3", @@ -18383,11 +17853,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 855 + "__id__": 833 }, "_enabled": true, "__prefab": { - "__id__": 857 + "__id__": 835 }, "_contentSize": { "__type__": "cc.Size", @@ -18411,11 +17881,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 855 + "__id__": 833 }, "_enabled": true, "__prefab": { - "__id__": 859 + "__id__": 837 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18423,8 +17893,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -18469,11 +17939,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 832 }, "_enabled": true, "__prefab": { - "__id__": 862 + "__id__": 840 }, "_contentSize": { "__type__": "cc.Size", @@ -18497,15 +17967,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 832 }, "_enabled": true, "__prefab": { - "__id__": 864 + "__id__": 842 }, "clickEvents": [ { - "__id__": 865 + "__id__": 843 } ], "_interactable": true, @@ -18554,7 +18024,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18567,11 +18037,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 832 }, "_enabled": true, "__prefab": { - "__id__": 867 + "__id__": 845 }, "_opacity": 255, "_id": "" @@ -18597,17 +18067,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 801 + "__id__": 773 }, "_prefab": { - "__id__": 870 + "__id__": 848 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 869 + "__id__": 847 }, "asset": { "__uuid__": "5f59d76b-2bb8-429d-88ff-59ca11f5cc86", @@ -18615,7 +18085,7 @@ }, "fileId": "4bE1J8xTZFH7iCEqkhoCQD", "instance": { - "__id__": 871 + "__id__": 849 }, "targetOverrides": null }, @@ -18629,49 +18099,16 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 872 + "__id__": 850 }, { - "__id__": 874 + "__id__": 852 }, { - "__id__": 875 + "__id__": 853 }, { - "__id__": 876 - }, - { - "__id__": 877 - }, - { - "__id__": 879 - }, - { - "__id__": 881 - }, - { - "__id__": 883 - }, - { - "__id__": 885 - }, - { - "__id__": 887 - }, - { - "__id__": 888 - }, - { - "__id__": 890 - }, - { - "__id__": 891 - }, - { - "__id__": 892 - }, - { - "__id__": 894 + "__id__": 854 } ], "removedComponents": [] @@ -18679,7 +18116,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 873 + "__id__": 851 }, "propertyPath": [ "_name" @@ -18695,7 +18132,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 873 + "__id__": 851 }, "propertyPath": [ "_lpos" @@ -18710,7 +18147,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 873 + "__id__": 851 }, "propertyPath": [ "_lrot" @@ -18726,7 +18163,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 873 + "__id__": 851 }, "propertyPath": [ "_euler" @@ -18738,210 +18175,21 @@ "z": 0 } }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 878 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5e7JLhkPhNhrLZ+Ag3IdFT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 880 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "9du7nDzqNMJqfPld79ccwb" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 882 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 180 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "beWRihwNNNoKAJ3PBR6YSe" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 884 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 180 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b3xv0yqldF8ofuYOZeFS4y" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 886 - }, - "propertyPath": [ - "_transition" - ], - "value": 3 - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "0e/1N4EUxN77qVznylTS4D" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 886 - }, - "propertyPath": [ - "_target" - ], - "value": { - "__id__": 869 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 889 - }, - "propertyPath": [ - "_defaultClip" - ], - "value": { - "__uuid__": "5215b41d-7a1f-42c4-8b8e-c6f5ea65787f", - "__expectedType__": "cc.AnimationClip" - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b70WX/4HxMBYb6T/sHcYLy" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 889 - }, - "propertyPath": [ - "playOnLoad" - ], - "value": true - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 886 - }, - "propertyPath": [ - "clickEvents", - "length" - ], - "value": 1 - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 886 - }, - "propertyPath": [ - "clickEvents", - "0" - ], - "value": { - "__id__": 893 - } - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 704 - }, - "component": "", - "_componentId": "b95476QoaZH66hYtUhlIWhd", - "handler": "onClickAutoSpin", - "customEventData": "" - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 873 - }, - "propertyPath": [ - "_active" - ], - "value": true - }, { "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 801 + "__id__": 773 }, "_prefab": { - "__id__": 896 + "__id__": 856 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 895 + "__id__": 855 }, "asset": { "__uuid__": "b4e13e9b-1ee9-4811-8216-79bd4eeec776", @@ -18949,7 +18197,7 @@ }, "fileId": "a3vI+eIBhPnLnuNgWtjMLe", "instance": { - "__id__": 897 + "__id__": 857 }, "targetOverrides": null }, @@ -18963,70 +18211,16 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 898 + "__id__": 858 }, { - "__id__": 900 + "__id__": 860 }, { - "__id__": 901 + "__id__": 861 }, { - "__id__": 902 - }, - { - "__id__": 903 - }, - { - "__id__": 905 - }, - { - "__id__": 907 - }, - { - "__id__": 909 - }, - { - "__id__": 911 - }, - { - "__id__": 913 - }, - { - "__id__": 915 - }, - { - "__id__": 917 - }, - { - "__id__": 919 - }, - { - "__id__": 921 - }, - { - "__id__": 923 - }, - { - "__id__": 925 - }, - { - "__id__": 927 - }, - { - "__id__": 928 - }, - { - "__id__": 930 - }, - { - "__id__": 931 - }, - { - "__id__": 932 - }, - { - "__id__": 934 + "__id__": 862 } ], "removedComponents": [] @@ -19034,7 +18228,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 899 + "__id__": 859 }, "propertyPath": [ "_name" @@ -19050,7 +18244,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 899 + "__id__": 859 }, "propertyPath": [ "_lpos" @@ -19065,7 +18259,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 899 + "__id__": 859 }, "propertyPath": [ "_lrot" @@ -19081,7 +18275,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 899 + "__id__": 859 }, "propertyPath": [ "_euler" @@ -19093,360 +18287,17 @@ "z": 0 } }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 904 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 120 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "659I7oAuBDH68p/zgJLtX3" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 906 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 120 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "bcTnoI5ZhDLZp+4I45zHrU" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 908 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 120 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "ec+ujM/+5KspiQ32ZEHpcA" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 910 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 80 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "99BB//T6tJXYxKKqabsexT" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 912 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "79n0TW31lIYa/aO9LOWPn/" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 914 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 200 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "e0wN06hYxBAZXGWgaJmy9i" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 916 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 200 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "83huI+QcZPaJkpXPdqyJ/U" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 918 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 200 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "edfOp/Z0pGxp4waZtgWcFz" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 920 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "00g/2Rr29N+4KXIhN5F84B" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 922 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "6dYJDpCU1Lc6/+i+VThClX" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 924 - }, - "propertyPath": [ - "_color" - ], - "value": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "7fNeOjVbVOU78/X5hYlEAo" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 926 - }, - "propertyPath": [ - "_transition" - ], - "value": 3 - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "e2tzoTQmFFsK9wyPiXQUa6" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 926 - }, - "propertyPath": [ - "_target" - ], - "value": { - "__id__": 895 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 929 - }, - "propertyPath": [ - "playOnLoad" - ], - "value": true - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "5eYvjEzuFNmqgi1c6HskRV" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 929 - }, - "propertyPath": [ - "_defaultClip" - ], - "value": { - "__uuid__": "ea0d25d7-bf16-4af7-81e6-713afc08a2bb", - "__expectedType__": "cc.AnimationClip" - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 926 - }, - "propertyPath": [ - "clickEvents", - "length" - ], - "value": 1 - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 926 - }, - "propertyPath": [ - "clickEvents", - "0" - ], - "value": { - "__id__": 933 - } - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 704 - }, - "component": "", - "_componentId": "b95476QoaZH66hYtUhlIWhd", - "handler": "onClickFastSpin", - "customEventData": "" - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 899 - }, - "propertyPath": [ - "_active" - ], - "value": true - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 801 + "__id__": 773 }, "_enabled": true, "__prefab": { - "__id__": 936 + "__id__": 864 }, "_contentSize": { "__type__": "cc.Size", @@ -19470,11 +18321,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 801 + "__id__": 773 }, "_enabled": true, "__prefab": { - "__id__": 938 + "__id__": 866 }, "_opacity": 255, "_id": "" @@ -19502,39 +18353,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 676 }, "_children": [ { - "__id__": 941 + "__id__": 869 }, { - "__id__": 960 + "__id__": 888 }, { - "__id__": 989 + "__id__": 917 }, { - "__id__": 1008 + "__id__": 936 }, { - "__id__": 1027 + "__id__": 955 }, { - "__id__": 1046 + "__id__": 974 } ], "_active": false, "_components": [ { - "__id__": 1065 + "__id__": 993 }, { - "__id__": 1067 + "__id__": 995 } ], "_prefab": { - "__id__": 1069 + "__id__": 997 }, "_lpos": { "__type__": "cc.Vec3", @@ -19571,27 +18422,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 940 + "__id__": 868 }, "_children": [ { - "__id__": 942 + "__id__": 870 } ], "_active": true, "_components": [ { - "__id__": 952 + "__id__": 880 }, { - "__id__": 954 + "__id__": 882 }, { - "__id__": 956 + "__id__": 884 } ], "_prefab": { - "__id__": 959 + "__id__": 887 }, "_lpos": { "__type__": "cc.Vec3", @@ -19628,26 +18479,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 941 + "__id__": 869 }, "_children": [], "_active": true, "_components": [ { - "__id__": 943 + "__id__": 871 }, { - "__id__": 945 + "__id__": 873 }, { - "__id__": 947 + "__id__": 875 }, { - "__id__": 949 + "__id__": 877 } ], "_prefab": { - "__id__": 951 + "__id__": 879 }, "_lpos": { "__type__": "cc.Vec3", @@ -19684,11 +18535,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 870 }, "_enabled": true, "__prefab": { - "__id__": 944 + "__id__": 872 }, "_contentSize": { "__type__": "cc.Size", @@ -19712,11 +18563,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 870 }, "_enabled": true, "__prefab": { - "__id__": 946 + "__id__": 874 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19783,11 +18634,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 870 }, "_enabled": true, "__prefab": { - "__id__": 948 + "__id__": 876 }, "key": "AID_MAIN_OPERATE_QUIT", "_id": "" @@ -19802,11 +18653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 870 }, "_enabled": true, "__prefab": { - "__id__": 950 + "__id__": 878 }, "isBold": false, "fontOther": { @@ -19858,11 +18709,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 941 + "__id__": 869 }, "_enabled": true, "__prefab": { - "__id__": 953 + "__id__": 881 }, "_contentSize": { "__type__": "cc.Size", @@ -19886,11 +18737,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 941 + "__id__": 869 }, "_enabled": true, "__prefab": { - "__id__": 955 + "__id__": 883 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19931,15 +18782,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 941 + "__id__": 869 }, "_enabled": true, "__prefab": { - "__id__": 957 + "__id__": 885 }, "clickEvents": [ { - "__id__": 958 + "__id__": 886 } ], "_interactable": true, @@ -19988,7 +18839,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -20014,30 +18865,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 940 + "__id__": 868 }, "_children": [ { - "__id__": 961 + "__id__": 889 }, { - "__id__": 967 + "__id__": 895 }, { - "__id__": 973 + "__id__": 901 } ], "_active": true, "_components": [ { - "__id__": 983 + "__id__": 911 }, { - "__id__": 985 + "__id__": 913 } ], "_prefab": { - "__id__": 988 + "__id__": 916 }, "_lpos": { "__type__": "cc.Vec3", @@ -20074,20 +18925,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 960 + "__id__": 888 }, "_children": [], "_active": true, "_components": [ { - "__id__": 962 + "__id__": 890 }, { - "__id__": 964 + "__id__": 892 } ], "_prefab": { - "__id__": 966 + "__id__": 894 }, "_lpos": { "__type__": "cc.Vec3", @@ -20124,11 +18975,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 961 + "__id__": 889 }, "_enabled": true, "__prefab": { - "__id__": 963 + "__id__": 891 }, "_contentSize": { "__type__": "cc.Size", @@ -20152,11 +19003,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 961 + "__id__": 889 }, "_enabled": true, "__prefab": { - "__id__": 965 + "__id__": 893 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20210,20 +19061,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 960 + "__id__": 888 }, "_children": [], "_active": false, "_components": [ { - "__id__": 968 + "__id__": 896 }, { - "__id__": 970 + "__id__": 898 } ], "_prefab": { - "__id__": 972 + "__id__": 900 }, "_lpos": { "__type__": "cc.Vec3", @@ -20260,11 +19111,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 967 + "__id__": 895 }, "_enabled": true, "__prefab": { - "__id__": 969 + "__id__": 897 }, "_contentSize": { "__type__": "cc.Size", @@ -20288,11 +19139,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 967 + "__id__": 895 }, "_enabled": true, "__prefab": { - "__id__": 971 + "__id__": 899 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20346,26 +19197,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 960 + "__id__": 888 }, "_children": [], "_active": true, "_components": [ { - "__id__": 974 + "__id__": 902 }, { - "__id__": 976 + "__id__": 904 }, { - "__id__": 978 + "__id__": 906 }, { - "__id__": 980 + "__id__": 908 } ], "_prefab": { - "__id__": 982 + "__id__": 910 }, "_lpos": { "__type__": "cc.Vec3", @@ -20402,11 +19253,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 973 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 975 + "__id__": 903 }, "_contentSize": { "__type__": "cc.Size", @@ -20430,11 +19281,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 973 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 977 + "__id__": 905 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20501,11 +19352,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 973 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 979 + "__id__": 907 }, "key": "AID_MAIN_OPERATE_SOUND", "_id": "" @@ -20520,11 +19371,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 973 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 981 + "__id__": 909 }, "isBold": false, "fontOther": { @@ -20576,11 +19427,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 960 + "__id__": 888 }, "_enabled": true, "__prefab": { - "__id__": 984 + "__id__": 912 }, "_contentSize": { "__type__": "cc.Size", @@ -20604,15 +19455,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 960 + "__id__": 888 }, "_enabled": true, "__prefab": { - "__id__": 986 + "__id__": 914 }, "clickEvents": [ { - "__id__": 987 + "__id__": 915 } ], "_interactable": true, @@ -20661,7 +19512,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -20687,27 +19538,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 940 + "__id__": 868 }, "_children": [ { - "__id__": 990 + "__id__": 918 } ], "_active": true, "_components": [ { - "__id__": 1000 + "__id__": 928 }, { - "__id__": 1002 + "__id__": 930 }, { - "__id__": 1004 + "__id__": 932 } ], "_prefab": { - "__id__": 1007 + "__id__": 935 }, "_lpos": { "__type__": "cc.Vec3", @@ -20744,26 +19595,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 989 + "__id__": 917 }, "_children": [], "_active": true, "_components": [ { - "__id__": 991 + "__id__": 919 }, { - "__id__": 993 + "__id__": 921 }, { - "__id__": 995 + "__id__": 923 }, { - "__id__": 997 + "__id__": 925 } ], "_prefab": { - "__id__": 999 + "__id__": 927 }, "_lpos": { "__type__": "cc.Vec3", @@ -20800,11 +19651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 990 + "__id__": 918 }, "_enabled": true, "__prefab": { - "__id__": 992 + "__id__": 920 }, "_contentSize": { "__type__": "cc.Size", @@ -20828,11 +19679,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 990 + "__id__": 918 }, "_enabled": true, "__prefab": { - "__id__": 994 + "__id__": 922 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20899,11 +19750,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 990 + "__id__": 918 }, "_enabled": true, "__prefab": { - "__id__": 996 + "__id__": 924 }, "key": "AID_MAIN_OPERATE_PAYTABLE", "_id": "" @@ -20918,11 +19769,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 990 + "__id__": 918 }, "_enabled": true, "__prefab": { - "__id__": 998 + "__id__": 926 }, "isBold": false, "fontOther": { @@ -20974,11 +19825,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 917 }, "_enabled": true, "__prefab": { - "__id__": 1001 + "__id__": 929 }, "_contentSize": { "__type__": "cc.Size", @@ -21002,11 +19853,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 917 }, "_enabled": true, "__prefab": { - "__id__": 1003 + "__id__": 931 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21047,15 +19898,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 917 }, "_enabled": true, "__prefab": { - "__id__": 1005 + "__id__": 933 }, "clickEvents": [ { - "__id__": 1006 + "__id__": 934 } ], "_interactable": true, @@ -21104,7 +19955,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -21130,27 +19981,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 940 + "__id__": 868 }, "_children": [ { - "__id__": 1009 + "__id__": 937 } ], "_active": true, "_components": [ { - "__id__": 1019 + "__id__": 947 }, { - "__id__": 1021 + "__id__": 949 }, { - "__id__": 1023 + "__id__": 951 } ], "_prefab": { - "__id__": 1026 + "__id__": 954 }, "_lpos": { "__type__": "cc.Vec3", @@ -21187,26 +20038,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1008 + "__id__": 936 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1010 + "__id__": 938 }, { - "__id__": 1012 + "__id__": 940 }, { - "__id__": 1014 + "__id__": 942 }, { - "__id__": 1016 + "__id__": 944 } ], "_prefab": { - "__id__": 1018 + "__id__": 946 }, "_lpos": { "__type__": "cc.Vec3", @@ -21243,11 +20094,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1009 + "__id__": 937 }, "_enabled": true, "__prefab": { - "__id__": 1011 + "__id__": 939 }, "_contentSize": { "__type__": "cc.Size", @@ -21271,11 +20122,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1009 + "__id__": 937 }, "_enabled": true, "__prefab": { - "__id__": 1013 + "__id__": 941 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21342,11 +20193,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1009 + "__id__": 937 }, "_enabled": true, "__prefab": { - "__id__": 1015 + "__id__": 943 }, "key": "AID_MAIN_OPERATE_RULES", "_id": "" @@ -21361,11 +20212,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1009 + "__id__": 937 }, "_enabled": true, "__prefab": { - "__id__": 1017 + "__id__": 945 }, "isBold": false, "fontOther": { @@ -21417,11 +20268,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 936 }, "_enabled": true, "__prefab": { - "__id__": 1020 + "__id__": 948 }, "_contentSize": { "__type__": "cc.Size", @@ -21445,11 +20296,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 936 }, "_enabled": true, "__prefab": { - "__id__": 1022 + "__id__": 950 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21490,15 +20341,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 936 }, "_enabled": true, "__prefab": { - "__id__": 1024 + "__id__": 952 }, "clickEvents": [ { - "__id__": 1025 + "__id__": 953 } ], "_interactable": true, @@ -21547,7 +20398,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -21573,27 +20424,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 940 + "__id__": 868 }, "_children": [ { - "__id__": 1028 + "__id__": 956 } ], "_active": true, "_components": [ { - "__id__": 1038 + "__id__": 966 }, { - "__id__": 1040 + "__id__": 968 }, { - "__id__": 1042 + "__id__": 970 } ], "_prefab": { - "__id__": 1045 + "__id__": 973 }, "_lpos": { "__type__": "cc.Vec3", @@ -21630,26 +20481,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1027 + "__id__": 955 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1029 + "__id__": 957 }, { - "__id__": 1031 + "__id__": 959 }, { - "__id__": 1033 + "__id__": 961 }, { - "__id__": 1035 + "__id__": 963 } ], "_prefab": { - "__id__": 1037 + "__id__": 965 }, "_lpos": { "__type__": "cc.Vec3", @@ -21686,11 +20537,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1028 + "__id__": 956 }, "_enabled": true, "__prefab": { - "__id__": 1030 + "__id__": 958 }, "_contentSize": { "__type__": "cc.Size", @@ -21714,11 +20565,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1028 + "__id__": 956 }, "_enabled": true, "__prefab": { - "__id__": 1032 + "__id__": 960 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21785,11 +20636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1028 + "__id__": 956 }, "_enabled": true, "__prefab": { - "__id__": 1034 + "__id__": 962 }, "key": "AID_MAIN_OPERATE_HISTORY", "_id": "" @@ -21804,11 +20655,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1028 + "__id__": 956 }, "_enabled": true, "__prefab": { - "__id__": 1036 + "__id__": 964 }, "isBold": false, "fontOther": { @@ -21860,11 +20711,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1027 + "__id__": 955 }, "_enabled": true, "__prefab": { - "__id__": 1039 + "__id__": 967 }, "_contentSize": { "__type__": "cc.Size", @@ -21888,11 +20739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1027 + "__id__": 955 }, "_enabled": true, "__prefab": { - "__id__": 1041 + "__id__": 969 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21933,15 +20784,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1027 + "__id__": 955 }, "_enabled": true, "__prefab": { - "__id__": 1043 + "__id__": 971 }, "clickEvents": [ { - "__id__": 1044 + "__id__": 972 } ], "_interactable": true, @@ -21990,7 +20841,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -22016,27 +20867,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 940 + "__id__": 868 }, "_children": [ { - "__id__": 1047 + "__id__": 975 } ], "_active": true, "_components": [ { - "__id__": 1057 + "__id__": 985 }, { - "__id__": 1059 + "__id__": 987 }, { - "__id__": 1061 + "__id__": 989 } ], "_prefab": { - "__id__": 1064 + "__id__": 992 }, "_lpos": { "__type__": "cc.Vec3", @@ -22073,26 +20924,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1046 + "__id__": 974 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1048 + "__id__": 976 }, { - "__id__": 1050 + "__id__": 978 }, { - "__id__": 1052 + "__id__": 980 }, { - "__id__": 1054 + "__id__": 982 } ], "_prefab": { - "__id__": 1056 + "__id__": 984 }, "_lpos": { "__type__": "cc.Vec3", @@ -22129,11 +20980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1047 + "__id__": 975 }, "_enabled": true, "__prefab": { - "__id__": 1049 + "__id__": 977 }, "_contentSize": { "__type__": "cc.Size", @@ -22157,11 +21008,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1047 + "__id__": 975 }, "_enabled": true, "__prefab": { - "__id__": 1051 + "__id__": 979 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22228,11 +21079,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1047 + "__id__": 975 }, "_enabled": true, "__prefab": { - "__id__": 1053 + "__id__": 981 }, "key": "AID_MAIN_OPERATE_CLOSE", "_id": "" @@ -22247,11 +21098,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1047 + "__id__": 975 }, "_enabled": true, "__prefab": { - "__id__": 1055 + "__id__": 983 }, "isBold": false, "fontOther": { @@ -22303,11 +21154,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1046 + "__id__": 974 }, "_enabled": true, "__prefab": { - "__id__": 1058 + "__id__": 986 }, "_contentSize": { "__type__": "cc.Size", @@ -22331,11 +21182,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1046 + "__id__": 974 }, "_enabled": true, "__prefab": { - "__id__": 1060 + "__id__": 988 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22376,15 +21227,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1046 + "__id__": 974 }, "_enabled": true, "__prefab": { - "__id__": 1062 + "__id__": 990 }, "clickEvents": [ { - "__id__": 1063 + "__id__": 991 } ], "_interactable": true, @@ -22433,7 +21284,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -22459,11 +21310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 940 + "__id__": 868 }, "_enabled": true, "__prefab": { - "__id__": 1066 + "__id__": 994 }, "_contentSize": { "__type__": "cc.Size", @@ -22487,11 +21338,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 940 + "__id__": 868 }, "_enabled": true, "__prefab": { - "__id__": 1068 + "__id__": 996 }, "_opacity": 255, "_id": "" @@ -22519,24 +21370,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 676 }, "_children": [ { - "__id__": 1071 + "__id__": 999 }, { - "__id__": 1079 + "__id__": 1007 } ], "_active": false, "_components": [ { - "__id__": 1103 + "__id__": 1031 } ], "_prefab": { - "__id__": 1105 + "__id__": 1033 }, "_lpos": { "__type__": "cc.Vec3", @@ -22573,23 +21424,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1070 + "__id__": 998 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1072 + "__id__": 1000 }, { - "__id__": 1074 + "__id__": 1002 }, { - "__id__": 1076 + "__id__": 1004 } ], "_prefab": { - "__id__": 1078 + "__id__": 1006 }, "_lpos": { "__type__": "cc.Vec3", @@ -22626,11 +21477,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1071 + "__id__": 999 }, "_enabled": true, "__prefab": { - "__id__": 1073 + "__id__": 1001 }, "_contentSize": { "__type__": "cc.Size", @@ -22654,11 +21505,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1071 + "__id__": 999 }, "_enabled": true, "__prefab": { - "__id__": 1075 + "__id__": 1003 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22696,11 +21547,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1071 + "__id__": 999 }, "_enabled": true, "__prefab": { - "__id__": 1077 + "__id__": 1005 }, "spriteName": "15", "_id": "" @@ -22728,27 +21579,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1070 + "__id__": 998 }, "_children": [ { - "__id__": 1080 + "__id__": 1008 }, { - "__id__": 1088 + "__id__": 1016 }, { - "__id__": 1094 + "__id__": 1022 } ], "_active": true, "_components": [ { - "__id__": 1100 + "__id__": 1028 } ], "_prefab": { - "__id__": 1102 + "__id__": 1030 }, "_lpos": { "__type__": "cc.Vec3", @@ -22785,23 +21636,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1079 + "__id__": 1007 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1081 + "__id__": 1009 }, { - "__id__": 1083 + "__id__": 1011 }, { - "__id__": 1085 + "__id__": 1013 } ], "_prefab": { - "__id__": 1087 + "__id__": 1015 }, "_lpos": { "__type__": "cc.Vec3", @@ -22838,11 +21689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1080 + "__id__": 1008 }, "_enabled": true, "__prefab": { - "__id__": 1082 + "__id__": 1010 }, "_contentSize": { "__type__": "cc.Size", @@ -22866,11 +21717,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1080 + "__id__": 1008 }, "_enabled": true, "__prefab": { - "__id__": 1084 + "__id__": 1012 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22908,11 +21759,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1080 + "__id__": 1008 }, "_enabled": true, "__prefab": { - "__id__": 1086 + "__id__": 1014 }, "spriteName": "13", "_id": "" @@ -22940,20 +21791,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1079 + "__id__": 1007 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1089 + "__id__": 1017 }, { - "__id__": 1091 + "__id__": 1019 } ], "_prefab": { - "__id__": 1093 + "__id__": 1021 }, "_lpos": { "__type__": "cc.Vec3", @@ -22990,11 +21841,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1088 + "__id__": 1016 }, "_enabled": true, "__prefab": { - "__id__": 1090 + "__id__": 1018 }, "_contentSize": { "__type__": "cc.Size", @@ -23018,11 +21869,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1088 + "__id__": 1016 }, "_enabled": true, "__prefab": { - "__id__": 1092 + "__id__": 1020 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23076,20 +21927,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1079 + "__id__": 1007 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1095 + "__id__": 1023 }, { - "__id__": 1097 + "__id__": 1025 } ], "_prefab": { - "__id__": 1099 + "__id__": 1027 }, "_lpos": { "__type__": "cc.Vec3", @@ -23126,11 +21977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1094 + "__id__": 1022 }, "_enabled": true, "__prefab": { - "__id__": 1096 + "__id__": 1024 }, "_contentSize": { "__type__": "cc.Size", @@ -23154,11 +22005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1094 + "__id__": 1022 }, "_enabled": true, "__prefab": { - "__id__": 1098 + "__id__": 1026 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23238,11 +22089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1079 + "__id__": 1007 }, "_enabled": true, "__prefab": { - "__id__": 1101 + "__id__": 1029 }, "_contentSize": { "__type__": "cc.Size", @@ -23279,11 +22130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1070 + "__id__": 998 }, "_enabled": true, "__prefab": { - "__id__": 1104 + "__id__": 1032 }, "_contentSize": { "__type__": "cc.Size", @@ -23320,24 +22171,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 676 }, "_children": [ { - "__id__": 1107 + "__id__": 1035 }, { - "__id__": 1147 + "__id__": 1075 } ], "_active": false, "_components": [ { - "__id__": 1193 + "__id__": 1121 } ], "_prefab": { - "__id__": 1195 + "__id__": 1123 }, "_lpos": { "__type__": "cc.Vec3", @@ -23374,27 +22225,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1106 + "__id__": 1034 }, "_children": [ { - "__id__": 1108 + "__id__": 1036 }, { - "__id__": 1120 + "__id__": 1048 }, { - "__id__": 1132 + "__id__": 1060 } ], "_active": true, "_components": [ { - "__id__": 1144 + "__id__": 1072 } ], "_prefab": { - "__id__": 1146 + "__id__": 1074 }, "_lpos": { "__type__": "cc.Vec3", @@ -23431,24 +22282,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1107 + "__id__": 1035 }, "_children": [ { - "__id__": 1109 + "__id__": 1037 } ], "_active": true, "_components": [ { - "__id__": 1115 + "__id__": 1043 }, { - "__id__": 1117 + "__id__": 1045 } ], "_prefab": { - "__id__": 1119 + "__id__": 1047 }, "_lpos": { "__type__": "cc.Vec3", @@ -23485,20 +22336,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1036 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1110 + "__id__": 1038 }, { - "__id__": 1112 + "__id__": 1040 } ], "_prefab": { - "__id__": 1114 + "__id__": 1042 }, "_lpos": { "__type__": "cc.Vec3", @@ -23535,11 +22386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1109 + "__id__": 1037 }, "_enabled": true, "__prefab": { - "__id__": 1111 + "__id__": 1039 }, "_contentSize": { "__type__": "cc.Size", @@ -23563,11 +22414,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1109 + "__id__": 1037 }, "_enabled": true, "__prefab": { - "__id__": 1113 + "__id__": 1041 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23621,11 +22472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1108 + "__id__": 1036 }, "_enabled": true, "__prefab": { - "__id__": 1116 + "__id__": 1044 }, "_contentSize": { "__type__": "cc.Size", @@ -23649,11 +22500,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1108 + "__id__": 1036 }, "_enabled": true, "__prefab": { - "__id__": 1118 + "__id__": 1046 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23707,24 +22558,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1107 + "__id__": 1035 }, "_children": [ { - "__id__": 1121 + "__id__": 1049 } ], "_active": true, "_components": [ { - "__id__": 1127 + "__id__": 1055 }, { - "__id__": 1129 + "__id__": 1057 } ], "_prefab": { - "__id__": 1131 + "__id__": 1059 }, "_lpos": { "__type__": "cc.Vec3", @@ -23761,20 +22612,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1120 + "__id__": 1048 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1122 + "__id__": 1050 }, { - "__id__": 1124 + "__id__": 1052 } ], "_prefab": { - "__id__": 1126 + "__id__": 1054 }, "_lpos": { "__type__": "cc.Vec3", @@ -23811,11 +22662,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1049 }, "_enabled": true, "__prefab": { - "__id__": 1123 + "__id__": 1051 }, "_contentSize": { "__type__": "cc.Size", @@ -23839,11 +22690,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1049 }, "_enabled": true, "__prefab": { - "__id__": 1125 + "__id__": 1053 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23897,11 +22748,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1120 + "__id__": 1048 }, "_enabled": true, "__prefab": { - "__id__": 1128 + "__id__": 1056 }, "_contentSize": { "__type__": "cc.Size", @@ -23925,11 +22776,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1120 + "__id__": 1048 }, "_enabled": true, "__prefab": { - "__id__": 1130 + "__id__": 1058 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23983,24 +22834,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1107 + "__id__": 1035 }, "_children": [ { - "__id__": 1133 + "__id__": 1061 } ], "_active": true, "_components": [ { - "__id__": 1139 + "__id__": 1067 }, { - "__id__": 1141 + "__id__": 1069 } ], "_prefab": { - "__id__": 1143 + "__id__": 1071 }, "_lpos": { "__type__": "cc.Vec3", @@ -24037,20 +22888,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1132 + "__id__": 1060 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1134 + "__id__": 1062 }, { - "__id__": 1136 + "__id__": 1064 } ], "_prefab": { - "__id__": 1138 + "__id__": 1066 }, "_lpos": { "__type__": "cc.Vec3", @@ -24087,11 +22938,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1061 }, "_enabled": true, "__prefab": { - "__id__": 1135 + "__id__": 1063 }, "_contentSize": { "__type__": "cc.Size", @@ -24115,11 +22966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1061 }, "_enabled": true, "__prefab": { - "__id__": 1137 + "__id__": 1065 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24173,11 +23024,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1132 + "__id__": 1060 }, "_enabled": true, "__prefab": { - "__id__": 1140 + "__id__": 1068 }, "_contentSize": { "__type__": "cc.Size", @@ -24201,11 +23052,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1132 + "__id__": 1060 }, "_enabled": true, "__prefab": { - "__id__": 1142 + "__id__": 1070 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24259,11 +23110,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1107 + "__id__": 1035 }, "_enabled": true, "__prefab": { - "__id__": 1145 + "__id__": 1073 }, "_contentSize": { "__type__": "cc.Size", @@ -24300,36 +23151,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1106 + "__id__": 1034 }, "_children": [ { - "__id__": 1148 + "__id__": 1076 }, { - "__id__": 1156 + "__id__": 1084 }, { - "__id__": 1164 + "__id__": 1092 }, { - "__id__": 1172 + "__id__": 1100 }, { - "__id__": 1178 + "__id__": 1106 }, { - "__id__": 1184 + "__id__": 1112 } ], "_active": true, "_components": [ { - "__id__": 1190 + "__id__": 1118 } ], "_prefab": { - "__id__": 1192 + "__id__": 1120 }, "_lpos": { "__type__": "cc.Vec3", @@ -24366,23 +23217,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1147 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1149 + "__id__": 1077 }, { - "__id__": 1151 + "__id__": 1079 }, { - "__id__": 1153 + "__id__": 1081 } ], "_prefab": { - "__id__": 1155 + "__id__": 1083 }, "_lpos": { "__type__": "cc.Vec3", @@ -24419,11 +23270,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1148 + "__id__": 1076 }, "_enabled": true, "__prefab": { - "__id__": 1150 + "__id__": 1078 }, "_contentSize": { "__type__": "cc.Size", @@ -24447,11 +23298,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1148 + "__id__": 1076 }, "_enabled": true, "__prefab": { - "__id__": 1152 + "__id__": 1080 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24518,11 +23369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1148 + "__id__": 1076 }, "_enabled": true, "__prefab": { - "__id__": 1154 + "__id__": 1082 }, "key": "AID_MAIN_SHOW_BALANCE", "_id": "" @@ -24550,23 +23401,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1147 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1157 + "__id__": 1085 }, { - "__id__": 1159 + "__id__": 1087 }, { - "__id__": 1161 + "__id__": 1089 } ], "_prefab": { - "__id__": 1163 + "__id__": 1091 }, "_lpos": { "__type__": "cc.Vec3", @@ -24603,11 +23454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1156 + "__id__": 1084 }, "_enabled": true, "__prefab": { - "__id__": 1158 + "__id__": 1086 }, "_contentSize": { "__type__": "cc.Size", @@ -24631,11 +23482,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1156 + "__id__": 1084 }, "_enabled": true, "__prefab": { - "__id__": 1160 + "__id__": 1088 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24702,11 +23553,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1156 + "__id__": 1084 }, "_enabled": true, "__prefab": { - "__id__": 1162 + "__id__": 1090 }, "key": "AID_MAIN_SHOW_BET", "_id": "" @@ -24734,23 +23585,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1147 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1165 + "__id__": 1093 }, { - "__id__": 1167 + "__id__": 1095 }, { - "__id__": 1169 + "__id__": 1097 } ], "_prefab": { - "__id__": 1171 + "__id__": 1099 }, "_lpos": { "__type__": "cc.Vec3", @@ -24787,11 +23638,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1164 + "__id__": 1092 }, "_enabled": true, "__prefab": { - "__id__": 1166 + "__id__": 1094 }, "_contentSize": { "__type__": "cc.Size", @@ -24815,11 +23666,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1164 + "__id__": 1092 }, "_enabled": true, "__prefab": { - "__id__": 1168 + "__id__": 1096 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24886,11 +23737,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1164 + "__id__": 1092 }, "_enabled": true, "__prefab": { - "__id__": 1170 + "__id__": 1098 }, "key": "AID_MAIN_SHOW_WIN", "_id": "" @@ -24918,20 +23769,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1147 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1173 + "__id__": 1101 }, { - "__id__": 1175 + "__id__": 1103 } ], "_prefab": { - "__id__": 1177 + "__id__": 1105 }, "_lpos": { "__type__": "cc.Vec3", @@ -24968,11 +23819,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1172 + "__id__": 1100 }, "_enabled": true, "__prefab": { - "__id__": 1174 + "__id__": 1102 }, "_contentSize": { "__type__": "cc.Size", @@ -24996,11 +23847,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1172 + "__id__": 1100 }, "_enabled": true, "__prefab": { - "__id__": 1176 + "__id__": 1104 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25080,20 +23931,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1147 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1179 + "__id__": 1107 }, { - "__id__": 1181 + "__id__": 1109 } ], "_prefab": { - "__id__": 1183 + "__id__": 1111 }, "_lpos": { "__type__": "cc.Vec3", @@ -25130,11 +23981,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1178 + "__id__": 1106 }, "_enabled": true, "__prefab": { - "__id__": 1180 + "__id__": 1108 }, "_contentSize": { "__type__": "cc.Size", @@ -25158,11 +24009,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1178 + "__id__": 1106 }, "_enabled": true, "__prefab": { - "__id__": 1182 + "__id__": 1110 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25242,20 +24093,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1147 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1185 + "__id__": 1113 }, { - "__id__": 1187 + "__id__": 1115 } ], "_prefab": { - "__id__": 1189 + "__id__": 1117 }, "_lpos": { "__type__": "cc.Vec3", @@ -25292,11 +24143,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1184 + "__id__": 1112 }, "_enabled": true, "__prefab": { - "__id__": 1186 + "__id__": 1114 }, "_contentSize": { "__type__": "cc.Size", @@ -25320,11 +24171,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1184 + "__id__": 1112 }, "_enabled": true, "__prefab": { - "__id__": 1188 + "__id__": 1116 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25404,11 +24255,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1147 + "__id__": 1075 }, "_enabled": true, "__prefab": { - "__id__": 1191 + "__id__": 1119 }, "_contentSize": { "__type__": "cc.Size", @@ -25445,11 +24296,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1106 + "__id__": 1034 }, "_enabled": true, "__prefab": { - "__id__": 1194 + "__id__": 1122 }, "_contentSize": { "__type__": "cc.Size", @@ -25486,28 +24337,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 676 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1197 + "__id__": 1125 }, { - "__id__": 1199 + "__id__": 1127 }, { - "__id__": 1202 + "__id__": 1130 } ], "_prefab": { - "__id__": 1204 + "__id__": 1132 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 286.5440000000001, + "y": 286.54400000000004, "z": 0 }, "_lrot": { @@ -25539,16 +24390,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1196 + "__id__": 1124 }, "_enabled": true, "__prefab": { - "__id__": 1198 + "__id__": 1126 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 926.3720000000003 + "height": 926.372 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -25567,15 +24418,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1196 + "__id__": 1124 }, "_enabled": true, "__prefab": { - "__id__": 1200 + "__id__": 1128 }, "clickEvents": [ { - "__id__": 1201 + "__id__": 1129 } ], "_interactable": true, @@ -25627,7 +24478,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1196 + "__id__": 1124 }, "_id": "" }, @@ -25638,7 +24489,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 704 + "__id__": 676 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -25651,11 +24502,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1196 + "__id__": 1124 }, "_enabled": true, "__prefab": { - "__id__": 1203 + "__id__": 1131 }, "_alignFlags": 45, "_target": null, @@ -25700,16 +24551,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 704 + "__id__": 676 }, "_enabled": true, "__prefab": { - "__id__": 1206 + "__id__": 1134 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1920 + "height": 1919.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -25728,18 +24579,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 704 + "__id__": 676 }, "_enabled": true, "__prefab": { - "__id__": 1208 + "__id__": 1136 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 0, - "_bottom": 0, + "_top": 18.448999999999998, + "_bottom": -18.448999999999998, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -25764,51 +24615,51 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 704 + "__id__": 676 }, "_enabled": true, "__prefab": { - "__id__": 1210 + "__id__": 1138 }, "btnTable": [ { - "__id__": 1211 + "__id__": 1139 }, { - "__id__": 1212 + "__id__": 1140 }, { - "__id__": 1213 + "__id__": 1141 }, { - "__id__": 1214 + "__id__": 1142 }, { - "__id__": 1215 + "__id__": 1143 }, { - "__id__": 1216 + "__id__": 1144 }, { - "__id__": 1217 + "__id__": 1145 }, { - "__id__": 1218 + "__id__": 1146 }, { - "__id__": 1219 + "__id__": 1147 }, { - "__id__": 1220 + "__id__": 1148 }, { - "__id__": 1221 + "__id__": 1149 }, { - "__id__": 1222 + "__id__": 1150 }, { - "__id__": 1223 + "__id__": 1151 } ], "_id": "" @@ -25821,91 +24672,91 @@ "__type__": "BtnConfig", "key": "SpinBtn", "btnNode": { - "__id__": 802 + "__id__": 774 } }, { "__type__": "BtnConfig", "key": "AddBetBtn", "btnNode": { - "__id__": 832 + "__id__": 810 } }, { "__type__": "BtnConfig", "key": "SubBetBtn", "btnNode": { - "__id__": 843 + "__id__": 821 } }, { "__type__": "BtnConfig", "key": "FastSpinBtn", "btnNode": { - "__id__": 895 + "__id__": 855 } }, { "__type__": "BtnConfig", "key": "AutoSpinBtn", "btnNode": { - "__id__": 869 + "__id__": 847 } }, { "__type__": "BtnConfig", "key": "MenuBtn", "btnNode": { - "__id__": 854 + "__id__": 832 } }, { "__type__": "BtnConfig", "key": "QuitBtn", "btnNode": { - "__id__": 941 + "__id__": 869 } }, { "__type__": "BtnConfig", "key": "SoundBtn", "btnNode": { - "__id__": 960 + "__id__": 888 } }, { "__type__": "BtnConfig", "key": "PaytableBtn", "btnNode": { - "__id__": 989 + "__id__": 917 } }, { "__type__": "BtnConfig", "key": "RuleBtn", "btnNode": { - "__id__": 1008 + "__id__": 936 } }, { "__type__": "BtnConfig", "key": "HistoryBtn", "btnNode": { - "__id__": 1027 + "__id__": 955 } }, { "__type__": "BtnConfig", "key": "CloseL2Btn", "btnNode": { - "__id__": 1046 + "__id__": 974 } }, { "__type__": "BtnConfig", "key": "StopAutoSpinBtn", "btnNode": { - "__id__": 817 + "__id__": 795 } }, { @@ -25928,14 +24779,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 1226 + "__id__": 1154 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 1225 + "__id__": 1153 }, "asset": { "__uuid__": "29fb0a1e-a12f-4c41-9000-815327a25730", @@ -25943,7 +24794,7 @@ }, "fileId": "c9QEC2alVDUrRXVFfYng3l", "instance": { - "__id__": 1227 + "__id__": 1155 }, "targetOverrides": null }, @@ -25957,28 +24808,31 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 1228 + "__id__": 1156 }, { - "__id__": 1230 + "__id__": 1158 }, { - "__id__": 1231 + "__id__": 1159 }, { - "__id__": 1232 + "__id__": 1160 }, { - "__id__": 1233 + "__id__": 1161 }, { - "__id__": 1234 + "__id__": 1162 }, { - "__id__": 1236 + "__id__": 1164 }, { - "__id__": 1238 + "__id__": 1166 + }, + { + "__id__": 1168 } ], "removedComponents": [] @@ -25986,7 +24840,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1229 + "__id__": 1157 }, "propertyPath": [ "_name" @@ -26002,7 +24856,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1229 + "__id__": 1157 }, "propertyPath": [ "_lpos" @@ -26017,7 +24871,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1229 + "__id__": 1157 }, "propertyPath": [ "_lrot" @@ -26033,7 +24887,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1229 + "__id__": 1157 }, "propertyPath": [ "_euler" @@ -26048,7 +24902,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1229 + "__id__": 1157 }, "propertyPath": [ "_active" @@ -26058,7 +24912,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1235 + "__id__": 1163 }, "propertyPath": [ "_active" @@ -26074,7 +24928,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1237 + "__id__": 1165 }, "propertyPath": [ "_active" @@ -26090,7 +24944,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1239 + "__id__": 1167 }, "propertyPath": [ "_active" @@ -26103,6 +24957,26 @@ "0b/44XdE9At5P+nlGwhsrd" ] }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 1169 + }, + "propertyPath": [ + "_contentSize" + ], + "value": { + "__type__": "cc.Size", + "width": 1080, + "height": 1919.9999999999998 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "3b9+ZZOVRP8reZkWzUsxHA" + ] + }, { "__type__": "cc.Node", "_objFlags": 0, @@ -26110,14 +24984,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 1241 + "__id__": 1171 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 1240 + "__id__": 1170 }, "asset": { "__uuid__": "93f49f19-92c8-468b-a67d-b423f3be55f9", @@ -26125,7 +24999,7 @@ }, "fileId": "0d6YCKuIdEs4y/XDNnFU5x", "instance": { - "__id__": 1242 + "__id__": 1172 }, "targetOverrides": [] }, @@ -26139,25 +25013,28 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 1243 + "__id__": 1173 }, { - "__id__": 1245 + "__id__": 1175 }, { - "__id__": 1246 + "__id__": 1176 }, { - "__id__": 1247 + "__id__": 1177 }, { - "__id__": 1248 + "__id__": 1178 }, { - "__id__": 1249 + "__id__": 1179 }, { - "__id__": 1251 + "__id__": 1181 + }, + { + "__id__": 1183 } ], "removedComponents": [] @@ -26165,7 +25042,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1244 + "__id__": 1174 }, "propertyPath": [ "_name" @@ -26181,7 +25058,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1244 + "__id__": 1174 }, "propertyPath": [ "_lpos" @@ -26196,7 +25073,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1244 + "__id__": 1174 }, "propertyPath": [ "_lrot" @@ -26212,7 +25089,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1244 + "__id__": 1174 }, "propertyPath": [ "_euler" @@ -26227,7 +25104,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1244 + "__id__": 1174 }, "propertyPath": [ "_active" @@ -26237,7 +25114,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1250 + "__id__": 1180 }, "propertyPath": [ "_active" @@ -26253,7 +25130,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1252 + "__id__": 1182 }, "propertyPath": [ "_active" @@ -26266,6 +25143,26 @@ "1b6nDnUH9HHLF86yxFTwA0" ] }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 1184 + }, + "propertyPath": [ + "_contentSize" + ], + "value": { + "__type__": "cc.Size", + "width": 1080, + "height": 1919.9999999999998 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "f4aQq7idZPdbNdUF+cqOcU" + ] + }, { "__type__": "cc.UITransform", "_name": "", @@ -26276,12 +25173,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 1254 + "__id__": 1186 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1920 + "height": 1919.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -26304,7 +25201,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 1256 + "__id__": 1188 }, "_alignFlags": 45, "_target": null, @@ -26340,16 +25237,16 @@ }, "_enabled": true, "__prefab": { - "__id__": 1258 + "__id__": 1190 }, "slotGame": { - "__id__": 583 + "__id__": 673 }, "slotMsg": { - "__id__": 699 + "__id__": 569 }, "slotBar": { - "__id__": 1209 + "__id__": 1137 }, "sysGift": null, "slotRanking": null, @@ -26371,108 +25268,96 @@ "instance": null, "targetOverrides": [ { - "__id__": 1260 + "__id__": 1192 }, { - "__id__": 1262 + "__id__": 1194 }, { - "__id__": 1264 + "__id__": 1196 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 1240 + "__id__": 1170 }, { - "__id__": 1225 + "__id__": 1153 }, { - "__id__": 895 + "__id__": 855 }, { - "__id__": 869 + "__id__": 847 }, { - "__id__": 279 + "__id__": 249 }, { - "__id__": 274 + "__id__": 244 }, { - "__id__": 271 + "__id__": 241 }, { - "__id__": 266 + "__id__": 236 }, { - "__id__": 261 + "__id__": 231 }, { - "__id__": 250 + "__id__": 220 }, { - "__id__": 245 + "__id__": 215 }, { - "__id__": 242 + "__id__": 212 }, { - "__id__": 237 + "__id__": 207 }, { - "__id__": 232 + "__id__": 202 }, { - "__id__": 221 + "__id__": 191 }, { - "__id__": 216 + "__id__": 186 }, { - "__id__": 213 + "__id__": 183 }, { - "__id__": 208 + "__id__": 178 }, { - "__id__": 203 + "__id__": 173 }, { - "__id__": 192 + "__id__": 162 }, { - "__id__": 187 + "__id__": 157 }, { - "__id__": 184 + "__id__": 154 }, { - "__id__": 179 + "__id__": 149 }, { - "__id__": 174 + "__id__": 144 }, { - "__id__": 163 - }, - { - "__id__": 158 - }, - { - "__id__": 155 - }, - { - "__id__": 150 - }, - { - "__id__": 145 + "__id__": 133 }, { "__id__": 128 }, { - "__id__": 123 + "__id__": 125 }, { "__id__": 120 @@ -26481,7 +25366,19 @@ "__id__": 115 }, { - "__id__": 110 + "__id__": 98 + }, + { + "__id__": 93 + }, + { + "__id__": 90 + }, + { + "__id__": 85 + }, + { + "__id__": 80 } ] }, @@ -26493,10 +25390,10 @@ "sysGift" ], "target": { - "__id__": 1225 + "__id__": 1153 }, "targetInfo": { - "__id__": 1261 + "__id__": 1193 } }, { @@ -26508,17 +25405,17 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 1257 + "__id__": 1189 }, "sourceInfo": null, "propertyPath": [ "sysGift" ], "target": { - "__id__": 1225 + "__id__": 1153 }, "targetInfo": { - "__id__": 1263 + "__id__": 1195 } }, { @@ -26530,17 +25427,17 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 1257 + "__id__": 1189 }, "sourceInfo": null, "propertyPath": [ "slotRanking" ], "target": { - "__id__": 1240 + "__id__": 1170 }, "targetInfo": { - "__id__": 1265 + "__id__": 1197 } }, { diff --git a/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Auto.prefab b/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Auto.prefab index c3f1bd9..536fcfa 100644 --- a/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Auto.prefab +++ b/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Auto.prefab @@ -174,9 +174,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 180 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@ef0d5", @@ -313,9 +313,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 180 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@ef0d5", @@ -452,8 +452,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -591,8 +591,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { diff --git a/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Turbo.prefab b/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Turbo.prefab index dcac169..61042b4 100644 --- a/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Turbo.prefab +++ b/assets/Game/Textures/SlotBar/AutoSpinAndTurbo/prefabs/Turbo.prefab @@ -243,9 +243,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 120 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@4ab58", @@ -379,9 +379,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 120 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@465eb", @@ -515,9 +515,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 120 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@06d86", @@ -651,9 +651,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 80 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@922e7", @@ -787,8 +787,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -923,9 +923,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 200 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@40950", @@ -1059,9 +1059,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 200 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@3c173", @@ -1195,9 +1195,9 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, - "a": 200 + "g": 246, + "b": 187, + "a": 255 }, "_spriteFrame": { "__uuid__": "1aac3c77-71f9-4d5c-980d-27b6fac3e1c1@40950", @@ -1331,8 +1331,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -1470,8 +1470,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { @@ -1609,8 +1609,8 @@ "_color": { "__type__": "cc.Color", "r": 255, - "g": 255, - "b": 255, + "g": 246, + "b": 187, "a": 255 }, "_spriteFrame": { diff --git a/assets/Game/阿拉丁神灯-资源.meta b/assets/Game/阿拉丁神灯-资源.meta new file mode 100644 index 0000000..58c6148 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "215672f8-1218-4928-86ae-b8175b5a85af", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts.meta b/assets/Game/阿拉丁神灯-资源/fonts.meta new file mode 100644 index 0000000..9f76481 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "877e058d-5dc5-489d-ab2d-4c26f691588d", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/bet数字.fnt b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.fnt new file mode 100644 index 0000000..aa0d3c6 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/bet数字.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.fnt.meta new file mode 100644 index 0000000..f8e194c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/bet数字.png b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.png new file mode 100644 index 0000000..9b25db0 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/bet数字.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.png.meta new file mode 100644 index 0000000..fe02e23 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/bet数字.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/win数字.fnt b/assets/Game/阿拉丁神灯-资源/fonts/win数字.fnt new file mode 100644 index 0000000..8ec7293 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/win数字.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/win数字.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/win数字.fnt.meta new file mode 100644 index 0000000..096738c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/win数字.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/win数字.png b/assets/Game/阿拉丁神灯-资源/fonts/win数字.png new file mode 100644 index 0000000..9337c57 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/win数字.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/win数字.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/win数字.png.meta new file mode 100644 index 0000000..fb50b93 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/win数字.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/倍数.fnt b/assets/Game/阿拉丁神灯-资源/fonts/倍数.fnt new file mode 100644 index 0000000..20326fc --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/倍数.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/倍数.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/倍数.fnt.meta new file mode 100644 index 0000000..8719c1d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/倍数.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/倍数.png b/assets/Game/阿拉丁神灯-资源/fonts/倍数.png new file mode 100644 index 0000000..94b08cd Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/倍数.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/倍数.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/倍数.png.meta new file mode 100644 index 0000000..a257c21 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/倍数.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.fnt b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.fnt new file mode 100644 index 0000000..81c91b2 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.fnt.meta new file mode 100644 index 0000000..1654923 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.png b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.png new file mode 100644 index 0000000..e144d3a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.png.meta new file mode 100644 index 0000000..2cfd70f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费加载进度.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.fnt b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.fnt new file mode 100644 index 0000000..4927d82 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.fnt.meta new file mode 100644 index 0000000..6d36eef --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.png b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.png new file mode 100644 index 0000000..18036c5 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.png.meta new file mode 100644 index 0000000..f4d60c9 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费旋转数字.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.fnt b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.fnt new file mode 100644 index 0000000..5ebaf1d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.fnt.meta new file mode 100644 index 0000000..4ef021e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.png b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.png new file mode 100644 index 0000000..c7a57b2 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.png.meta new file mode 100644 index 0000000..911ba65 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/免费模式倍率.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.fnt b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.fnt new file mode 100644 index 0000000..6c943ff --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.fnt @@ -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 diff --git a/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.fnt.meta b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.fnt.meta new file mode 100644 index 0000000..bdae788 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.fnt.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.png b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.png new file mode 100644 index 0000000..d47fee3 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.png differ diff --git a/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.png.meta b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.png.meta new file mode 100644 index 0000000..687013b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/fonts/咨询框数字.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/freespins.meta b/assets/Game/阿拉丁神灯-资源/freespins.meta new file mode 100644 index 0000000..8294d12 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/freespins.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e0ec2651-0a40-48f0-9a40-2111242d734a", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/freespins/btn_0.png b/assets/Game/阿拉丁神灯-资源/freespins/btn_0.png new file mode 100755 index 0000000..f5930db Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/freespins/btn_0.png differ diff --git a/assets/Game/阿拉丁神灯-资源/freespins/btn_0.png.meta b/assets/Game/阿拉丁神灯-资源/freespins/btn_0.png.meta new file mode 100644 index 0000000..1fe05e4 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/freespins/btn_0.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/freespins/mfjz_bg.png b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_bg.png new file mode 100755 index 0000000..aa7f4f6 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/freespins/mfjz_bg.png.meta b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_bg.png.meta new file mode 100644 index 0000000..d49408c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_bg.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/freespins/mfjz_jz.png b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_jz.png new file mode 100755 index 0000000..474d90b Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_jz.png differ diff --git a/assets/Game/阿拉丁神灯-资源/freespins/mfjz_jz.png.meta b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_jz.png.meta new file mode 100644 index 0000000..0a61250 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_jz.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/freespins/mfjz_ren.png b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_ren.png new file mode 100755 index 0000000..4e1bdf5 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_ren.png differ diff --git a/assets/Game/阿拉丁神灯-资源/freespins/mfjz_ren.png.meta b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_ren.png.meta new file mode 100644 index 0000000..f458ca4 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/freespins/mfjz_ren.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/jb.png b/assets/Game/阿拉丁神灯-资源/jb.png new file mode 100755 index 0000000..03b2a32 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/jb.png differ diff --git a/assets/Game/阿拉丁神灯-资源/jb.png.meta b/assets/Game/阿拉丁神灯-资源/jb.png.meta new file mode 100644 index 0000000..653619e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/jb.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/loading.meta b/assets/Game/阿拉丁神灯-资源/loading.meta new file mode 100644 index 0000000..092222e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/loading.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "5e43d55f-b818-4a6d-accb-8af9bb103554", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/loading/bg.png b/assets/Game/阿拉丁神灯-资源/loading/bg.png new file mode 100755 index 0000000..2ef4a48 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/loading/bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/loading/bg.png.meta b/assets/Game/阿拉丁神灯-资源/loading/bg.png.meta new file mode 100644 index 0000000..1701e40 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/loading/bg.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/loading/logo_en.png b/assets/Game/阿拉丁神灯-资源/loading/logo_en.png new file mode 100755 index 0000000..cfccf30 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/loading/logo_en.png differ diff --git a/assets/Game/阿拉丁神灯-资源/loading/logo_en.png.meta b/assets/Game/阿拉丁神灯-资源/loading/logo_en.png.meta new file mode 100644 index 0000000..e98d047 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/loading/logo_en.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/loading/logo_zh.png b/assets/Game/阿拉丁神灯-资源/loading/logo_zh.png new file mode 100755 index 0000000..dd0773f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/loading/logo_zh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/loading/logo_zh.png.meta b/assets/Game/阿拉丁神灯-资源/loading/logo_zh.png.meta new file mode 100644 index 0000000..53921dd --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/loading/logo_zh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/loading/横屏.png b/assets/Game/阿拉丁神灯-资源/loading/横屏.png new file mode 100755 index 0000000..17ee90b Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/loading/横屏.png differ diff --git a/assets/Game/阿拉丁神灯-资源/loading/横屏.png.meta b/assets/Game/阿拉丁神灯-资源/loading/横屏.png.meta new file mode 100644 index 0000000..30c0f77 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/loading/横屏.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol.meta b/assets/Game/阿拉丁神灯-资源/symbol.meta new file mode 100644 index 0000000..1b2055f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "26f21ef5-383b-437a-abfa-1cb98e2f2e42", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_en.png b/assets/Game/阿拉丁神灯-资源/symbol/0_en.png new file mode 100755 index 0000000..dcbeafc Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/0_en.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_en.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/0_en.png.meta new file mode 100644 index 0000000..fa3007f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/0_en.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_en_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/0_en_mh.png new file mode 100755 index 0000000..e5b532c Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/0_en_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_en_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/0_en_mh.png.meta new file mode 100644 index 0000000..87c8599 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/0_en_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_zh.png b/assets/Game/阿拉丁神灯-资源/symbol/0_zh.png new file mode 100755 index 0000000..e454266 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/0_zh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_zh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/0_zh.png.meta new file mode 100644 index 0000000..5e0d92a --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/0_zh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_zh_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/0_zh_mh.png new file mode 100755 index 0000000..8e8a1f6 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/0_zh_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/0_zh_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/0_zh_mh.png.meta new file mode 100644 index 0000000..42eb78f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/0_zh_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/1.png b/assets/Game/阿拉丁神灯-资源/symbol/1.png new file mode 100755 index 0000000..1e1cd41 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/1.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/1.png.meta new file mode 100644 index 0000000..010d2ff --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/1.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/1_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/1_mh.png new file mode 100755 index 0000000..10bed4f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/1_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/1_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/1_mh.png.meta new file mode 100644 index 0000000..1717a83 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/1_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/2.png b/assets/Game/阿拉丁神灯-资源/symbol/2.png new file mode 100755 index 0000000..5e24d79 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/2.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/2.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/2.png.meta new file mode 100644 index 0000000..a7d24d2 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/2.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/2_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/2_mh.png new file mode 100755 index 0000000..9278963 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/2_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/2_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/2_mh.png.meta new file mode 100644 index 0000000..a53b225 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/2_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/3.png b/assets/Game/阿拉丁神灯-资源/symbol/3.png new file mode 100755 index 0000000..6a1450f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/3.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/3.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/3.png.meta new file mode 100644 index 0000000..709c358 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/3.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/3_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/3_mh.png new file mode 100755 index 0000000..bcb7f9b Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/3_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/3_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/3_mh.png.meta new file mode 100644 index 0000000..7ec2628 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/3_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/4.png b/assets/Game/阿拉丁神灯-资源/symbol/4.png new file mode 100755 index 0000000..1dafbae Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/4.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/4.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/4.png.meta new file mode 100644 index 0000000..030b42d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/4.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/4_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/4_mh.png new file mode 100755 index 0000000..e774ae0 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/4_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/4_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/4_mh.png.meta new file mode 100644 index 0000000..9d1186f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/4_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/5.png b/assets/Game/阿拉丁神灯-资源/symbol/5.png new file mode 100755 index 0000000..07371b3 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/5.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/5.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/5.png.meta new file mode 100644 index 0000000..ea87e4b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/5.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/5_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/5_mh.png new file mode 100755 index 0000000..c27635f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/5_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/5_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/5_mh.png.meta new file mode 100644 index 0000000..6f3834d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/5_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/6.png b/assets/Game/阿拉丁神灯-资源/symbol/6.png new file mode 100755 index 0000000..2a2eeea Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/6.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/6.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/6.png.meta new file mode 100644 index 0000000..8827bde --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/6.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/6_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/6_mh.png new file mode 100755 index 0000000..dc2dadc Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/6_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/6_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/6_mh.png.meta new file mode 100644 index 0000000..2a2df87 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/6_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/7.png b/assets/Game/阿拉丁神灯-资源/symbol/7.png new file mode 100755 index 0000000..db5be60 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/7.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/7.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/7.png.meta new file mode 100644 index 0000000..9a87f4b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/7.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/7_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/7_mh.png new file mode 100755 index 0000000..a5364ac Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/7_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/7_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/7_mh.png.meta new file mode 100644 index 0000000..de0739d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/7_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/8.png b/assets/Game/阿拉丁神灯-资源/symbol/8.png new file mode 100755 index 0000000..8ad5b77 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/8.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/8.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/8.png.meta new file mode 100644 index 0000000..28d25e9 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/8.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/8_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/8_mh.png new file mode 100755 index 0000000..f14afdd Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/8_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/8_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/8_mh.png.meta new file mode 100644 index 0000000..d8b6669 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/8_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/9.png b/assets/Game/阿拉丁神灯-资源/symbol/9.png new file mode 100755 index 0000000..4edf48d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/9.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/9.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/9.png.meta new file mode 100644 index 0000000..75546f1 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/9.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/9_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/9_mh.png new file mode 100755 index 0000000..aeb549f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/9_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/9_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/9_mh.png.meta new file mode 100644 index 0000000..99169f5 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/9_mh.png.meta @@ -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" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs1.png b/assets/Game/阿拉丁神灯-资源/symbol/bs1.png new file mode 100755 index 0000000..bc1a452 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs1.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs1.png.meta new file mode 100644 index 0000000..8603793 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "41856c4f-db7d-41ef-bd58-cd9c9987baee", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "41856c4f-db7d-41ef-bd58-cd9c9987baee@6c48a", + "displayName": "bs1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "41856c4f-db7d-41ef-bd58-cd9c9987baee", + "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": "41856c4f-db7d-41ef-bd58-cd9c9987baee@f9941", + "displayName": "bs1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -1, + "trimX": 14, + "trimY": 11, + "width": 148, + "height": 140, + "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": [ + -74, + -70, + 0, + 74, + -70, + 0, + -74, + 70, + 0, + 74, + 70, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 14, + 149, + 162, + 149, + 14, + 9, + 162, + 9 + ], + "nuv": [ + 0.08045977011494253, + 0.05625, + 0.9310344827586207, + 0.05625, + 0.08045977011494253, + 0.93125, + 0.9310344827586207, + 0.93125 + ], + "minPos": [ + -74, + -70, + 0 + ], + "maxPos": [ + 74, + 70, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "41856c4f-db7d-41ef-bd58-cd9c9987baee@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "41856c4f-db7d-41ef-bd58-cd9c9987baee@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs1_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/bs1_mh.png new file mode 100755 index 0000000..d6d09e6 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs1_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs1_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs1_mh.png.meta new file mode 100644 index 0000000..c894862 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs1_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "20c7b8b7-03c3-46c3-a36e-c6c9e6ae413b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "20c7b8b7-03c3-46c3-a36e-c6c9e6ae413b@6c48a", + "displayName": "bs1_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "20c7b8b7-03c3-46c3-a36e-c6c9e6ae413b", + "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": "20c7b8b7-03c3-46c3-a36e-c6c9e6ae413b@f9941", + "displayName": "bs1_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": -1, + "trimX": 15, + "trimY": 11, + "width": 147, + "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": [ + -73.5, + -80, + 0, + 73.5, + -80, + 0, + -73.5, + 80, + 0, + 73.5, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 15, + 169, + 162, + 169, + 15, + 9, + 162, + 9 + ], + "nuv": [ + 0.08620689655172414, + 0.05, + 0.9310344827586207, + 0.05, + 0.08620689655172414, + 0.9388888888888889, + 0.9310344827586207, + 0.9388888888888889 + ], + "minPos": [ + -73.5, + -80, + 0 + ], + "maxPos": [ + 73.5, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20c7b8b7-03c3-46c3-a36e-c6c9e6ae413b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "20c7b8b7-03c3-46c3-a36e-c6c9e6ae413b@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs2.png b/assets/Game/阿拉丁神灯-资源/symbol/bs2.png new file mode 100755 index 0000000..eeb53a7 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs2.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs2.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs2.png.meta new file mode 100644 index 0000000..d0010cf --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6ca1aab1-4dbf-429e-99fc-4f362c6661a4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6ca1aab1-4dbf-429e-99fc-4f362c6661a4@6c48a", + "displayName": "bs2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6ca1aab1-4dbf-429e-99fc-4f362c6661a4", + "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": "6ca1aab1-4dbf-429e-99fc-4f362c6661a4@f9941", + "displayName": "bs2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -1.5, + "trimX": 13, + "trimY": 11, + "width": 148, + "height": 141, + "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": [ + -74, + -70.5, + 0, + 74, + -70.5, + 0, + -74, + 70.5, + 0, + 74, + 70.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 149, + 161, + 149, + 13, + 8, + 161, + 8 + ], + "nuv": [ + 0.07471264367816093, + 0.05, + 0.9252873563218391, + 0.05, + 0.07471264367816093, + 0.93125, + 0.9252873563218391, + 0.93125 + ], + "minPos": [ + -74, + -70.5, + 0 + ], + "maxPos": [ + 74, + 70.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6ca1aab1-4dbf-429e-99fc-4f362c6661a4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6ca1aab1-4dbf-429e-99fc-4f362c6661a4@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs2_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/bs2_mh.png new file mode 100755 index 0000000..b5a6691 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs2_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs2_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs2_mh.png.meta new file mode 100644 index 0000000..8acd762 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs2_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3859a3ef-632b-48eb-852a-1c92f41fef1e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3859a3ef-632b-48eb-852a-1c92f41fef1e@6c48a", + "displayName": "bs2_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3859a3ef-632b-48eb-852a-1c92f41fef1e", + "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": "3859a3ef-632b-48eb-852a-1c92f41fef1e@f9941", + "displayName": "bs2_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": -0.5, + "trimX": 13, + "trimY": 10, + "width": 147, + "height": 161, + "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": [ + -73.5, + -80.5, + 0, + 73.5, + -80.5, + 0, + -73.5, + 80.5, + 0, + 73.5, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 170, + 160, + 170, + 13, + 9, + 160, + 9 + ], + "nuv": [ + 0.07471264367816093, + 0.05, + 0.9195402298850575, + 0.05, + 0.07471264367816093, + 0.9444444444444444, + 0.9195402298850575, + 0.9444444444444444 + ], + "minPos": [ + -73.5, + -80.5, + 0 + ], + "maxPos": [ + 73.5, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3859a3ef-632b-48eb-852a-1c92f41fef1e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3859a3ef-632b-48eb-852a-1c92f41fef1e@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs3.png b/assets/Game/阿拉丁神灯-资源/symbol/bs3.png new file mode 100755 index 0000000..71317cb Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs3.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs3.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs3.png.meta new file mode 100644 index 0000000..304edbb --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3e1b43f0-97ef-434f-8da1-d74fba17b421", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3e1b43f0-97ef-434f-8da1-d74fba17b421@6c48a", + "displayName": "bs3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3e1b43f0-97ef-434f-8da1-d74fba17b421", + "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": "3e1b43f0-97ef-434f-8da1-d74fba17b421@f9941", + "displayName": "bs3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": 2.5, + "trimX": 13, + "trimY": 7, + "width": 150, + "height": 141, + "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": [ + -75, + -70.5, + 0, + 75, + -70.5, + 0, + -75, + 70.5, + 0, + 75, + 70.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 153, + 163, + 153, + 13, + 12, + 163, + 12 + ], + "nuv": [ + 0.07471264367816093, + 0.075, + 0.9367816091954023, + 0.075, + 0.07471264367816093, + 0.95625, + 0.9367816091954023, + 0.95625 + ], + "minPos": [ + -75, + -70.5, + 0 + ], + "maxPos": [ + 75, + 70.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3e1b43f0-97ef-434f-8da1-d74fba17b421@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3e1b43f0-97ef-434f-8da1-d74fba17b421@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs3_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/bs3_mh.png new file mode 100755 index 0000000..8c86e4c Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs3_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs3_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs3_mh.png.meta new file mode 100644 index 0000000..d9ddb58 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs3_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d956960c-b05d-4a78-8d42-d382a1c1f928", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d956960c-b05d-4a78-8d42-d382a1c1f928@6c48a", + "displayName": "bs3_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d956960c-b05d-4a78-8d42-d382a1c1f928", + "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": "d956960c-b05d-4a78-8d42-d382a1c1f928@f9941", + "displayName": "bs3_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 2.5, + "trimX": 13, + "trimY": 7, + "width": 149, + "height": 161, + "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": [ + -74.5, + -80.5, + 0, + 74.5, + -80.5, + 0, + -74.5, + 80.5, + 0, + 74.5, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 173, + 162, + 173, + 13, + 12, + 162, + 12 + ], + "nuv": [ + 0.07471264367816093, + 0.06666666666666667, + 0.9310344827586207, + 0.06666666666666667, + 0.07471264367816093, + 0.9611111111111111, + 0.9310344827586207, + 0.9611111111111111 + ], + "minPos": [ + -74.5, + -80.5, + 0 + ], + "maxPos": [ + 74.5, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d956960c-b05d-4a78-8d42-d382a1c1f928@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d956960c-b05d-4a78-8d42-d382a1c1f928@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs4.png b/assets/Game/阿拉丁神灯-资源/symbol/bs4.png new file mode 100755 index 0000000..9fe33d7 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs4.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs4.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs4.png.meta new file mode 100644 index 0000000..bbc5f78 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8c21911c-a274-4a57-9275-a8f3da1a3675", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8c21911c-a274-4a57-9275-a8f3da1a3675@6c48a", + "displayName": "bs4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8c21911c-a274-4a57-9275-a8f3da1a3675", + "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": "8c21911c-a274-4a57-9275-a8f3da1a3675@f9941", + "displayName": "bs4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 6.5, + "offsetY": 1, + "trimX": 20, + "trimY": 8, + "width": 147, + "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": [ + -73.5, + -71, + 0, + 73.5, + -71, + 0, + -73.5, + 71, + 0, + 73.5, + 71, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 20, + 152, + 167, + 152, + 20, + 10, + 167, + 10 + ], + "nuv": [ + 0.11494252873563218, + 0.0625, + 0.9597701149425287, + 0.0625, + 0.11494252873563218, + 0.95, + 0.9597701149425287, + 0.95 + ], + "minPos": [ + -73.5, + -71, + 0 + ], + "maxPos": [ + 73.5, + 71, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8c21911c-a274-4a57-9275-a8f3da1a3675@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8c21911c-a274-4a57-9275-a8f3da1a3675@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs4_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/bs4_mh.png new file mode 100755 index 0000000..fa7434b Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs4_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs4_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs4_mh.png.meta new file mode 100644 index 0000000..a8de878 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs4_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "855545d4-61b4-4faa-8ca8-1077d6e254c6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "855545d4-61b4-4faa-8ca8-1077d6e254c6@6c48a", + "displayName": "bs4_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "855545d4-61b4-4faa-8ca8-1077d6e254c6", + "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": "855545d4-61b4-4faa-8ca8-1077d6e254c6@f9941", + "displayName": "bs4_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 7, + "offsetY": -0.5, + "trimX": 21, + "trimY": 10, + "width": 146, + "height": 161, + "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": [ + -73, + -80.5, + 0, + 73, + -80.5, + 0, + -73, + 80.5, + 0, + 73, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 21, + 170, + 167, + 170, + 21, + 9, + 167, + 9 + ], + "nuv": [ + 0.1206896551724138, + 0.05, + 0.9597701149425287, + 0.05, + 0.1206896551724138, + 0.9444444444444444, + 0.9597701149425287, + 0.9444444444444444 + ], + "minPos": [ + -73, + -80.5, + 0 + ], + "maxPos": [ + 73, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "855545d4-61b4-4faa-8ca8-1077d6e254c6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "855545d4-61b4-4faa-8ca8-1077d6e254c6@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs5.png b/assets/Game/阿拉丁神灯-资源/symbol/bs5.png new file mode 100755 index 0000000..9a27b61 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs5.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs5.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs5.png.meta new file mode 100644 index 0000000..59c93fe --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bd6184d6-9c3d-4ed5-9f75-9fb95924a2c6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bd6184d6-9c3d-4ed5-9f75-9fb95924a2c6@6c48a", + "displayName": "bs5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bd6184d6-9c3d-4ed5-9f75-9fb95924a2c6", + "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": "bd6184d6-9c3d-4ed5-9f75-9fb95924a2c6@f9941", + "displayName": "bs5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": -0.5, + "trimX": 10, + "trimY": 7, + "width": 157, + "height": 147, + "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": [ + -78.5, + -73.5, + 0, + 78.5, + -73.5, + 0, + -78.5, + 73.5, + 0, + 78.5, + 73.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 10, + 153, + 167, + 153, + 10, + 6, + 167, + 6 + ], + "nuv": [ + 0.05747126436781609, + 0.0375, + 0.9597701149425287, + 0.0375, + 0.05747126436781609, + 0.95625, + 0.9597701149425287, + 0.95625 + ], + "minPos": [ + -78.5, + -73.5, + 0 + ], + "maxPos": [ + 78.5, + 73.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bd6184d6-9c3d-4ed5-9f75-9fb95924a2c6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bd6184d6-9c3d-4ed5-9f75-9fb95924a2c6@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs5__mh.png b/assets/Game/阿拉丁神灯-资源/symbol/bs5__mh.png new file mode 100755 index 0000000..3396de4 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs5__mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs5__mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs5__mh.png.meta new file mode 100644 index 0000000..7bbc6ea --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs5__mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ae256cb6-bd27-4c44-ac00-188d99a9a334", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ae256cb6-bd27-4c44-ac00-188d99a9a334@6c48a", + "displayName": "bs5__mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ae256cb6-bd27-4c44-ac00-188d99a9a334", + "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": "ae256cb6-bd27-4c44-ac00-188d99a9a334@f9941", + "displayName": "bs5__mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 2, + "offsetY": -0.5, + "trimX": 11, + "trimY": 7, + "width": 156, + "height": 167, + "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": [ + -78, + -83.5, + 0, + 78, + -83.5, + 0, + -78, + 83.5, + 0, + 78, + 83.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 11, + 173, + 167, + 173, + 11, + 6, + 167, + 6 + ], + "nuv": [ + 0.06321839080459771, + 0.03333333333333333, + 0.9597701149425287, + 0.03333333333333333, + 0.06321839080459771, + 0.9611111111111111, + 0.9597701149425287, + 0.9611111111111111 + ], + "minPos": [ + -78, + -83.5, + 0 + ], + "maxPos": [ + 78, + 83.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ae256cb6-bd27-4c44-ac00-188d99a9a334@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ae256cb6-bd27-4c44-ac00-188d99a9a334@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs_0.png b/assets/Game/阿拉丁神灯-资源/symbol/bs_0.png new file mode 100755 index 0000000..7fc2954 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs_0.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs_0.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs_0.png.meta new file mode 100644 index 0000000..d030fd8 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs_0.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e9d0d723-ecd0-4251-97a6-7dd441a04ae6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e9d0d723-ecd0-4251-97a6-7dd441a04ae6@6c48a", + "displayName": "bs_0", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e9d0d723-ecd0-4251-97a6-7dd441a04ae6", + "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": "e9d0d723-ecd0-4251-97a6-7dd441a04ae6@f9941", + "displayName": "bs_0", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 194, + "rawWidth": 174, + "rawHeight": 194, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -97, + 0, + 87, + -97, + 0, + -87, + 97, + 0, + 87, + 97, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 194, + 174, + 194, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -97, + 0 + ], + "maxPos": [ + 87, + 97, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e9d0d723-ecd0-4251-97a6-7dd441a04ae6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e9d0d723-ecd0-4251-97a6-7dd441a04ae6@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs_0_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/bs_0_mh.png new file mode 100755 index 0000000..df5a3f6 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/bs_0_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/bs_0_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/bs_0_mh.png.meta new file mode 100644 index 0000000..11d2746 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/bs_0_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4e0e135a-de20-41a0-ab6e-c6dc7384d982", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4e0e135a-de20-41a0-ab6e-c6dc7384d982@6c48a", + "displayName": "bs_0_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4e0e135a-de20-41a0-ab6e-c6dc7384d982", + "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": "4e0e135a-de20-41a0-ab6e-c6dc7384d982@f9941", + "displayName": "bs_0_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 214, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -107, + 0, + 87, + -107, + 0, + -87, + 107, + 0, + 87, + 107, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 214, + 174, + 214, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -107, + 0 + ], + "maxPos": [ + 87, + 107, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4e0e135a-de20-41a0-ab6e-c6dc7384d982@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4e0e135a-de20-41a0-ab6e-c6dc7384d982@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv1.png b/assets/Game/阿拉丁神灯-资源/symbol/lv1.png new file mode 100755 index 0000000..39bef6c Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv1.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv1.png.meta new file mode 100644 index 0000000..4f5a42c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "747964ea-ea17-4327-8452-a0409a291c0c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "747964ea-ea17-4327-8452-a0409a291c0c@6c48a", + "displayName": "lv1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "747964ea-ea17-4327-8452-a0409a291c0c", + "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": "747964ea-ea17-4327-8452-a0409a291c0c@f9941", + "displayName": "lv1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 160, + "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, + -80, + 0, + 87, + -80, + 0, + -87, + 80, + 0, + 87, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 174, + 160, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -80, + 0 + ], + "maxPos": [ + 87, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "747964ea-ea17-4327-8452-a0409a291c0c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "747964ea-ea17-4327-8452-a0409a291c0c@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv1_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/lv1_mh.png new file mode 100755 index 0000000..7fb8b80 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv1_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv1_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv1_mh.png.meta new file mode 100644 index 0000000..3daffec --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv1_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "78f944ec-f2e0-4f56-8eff-9a623ce26df3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "78f944ec-f2e0-4f56-8eff-9a623ce26df3@6c48a", + "displayName": "lv1_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "78f944ec-f2e0-4f56-8eff-9a623ce26df3", + "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": "78f944ec-f2e0-4f56-8eff-9a623ce26df3@f9941", + "displayName": "lv1_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 17, + "width": 174, + "height": 180, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -90, + 0, + 87, + -90, + 0, + -87, + 90, + 0, + 87, + 90, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 197, + 174, + 197, + 0, + 17, + 174, + 17 + ], + "nuv": [ + 0, + 0.0794392523364486, + 1, + 0.0794392523364486, + 0, + 0.9205607476635514, + 1, + 0.9205607476635514 + ], + "minPos": [ + -87, + -90, + 0 + ], + "maxPos": [ + 87, + 90, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "78f944ec-f2e0-4f56-8eff-9a623ce26df3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "78f944ec-f2e0-4f56-8eff-9a623ce26df3@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv2.png b/assets/Game/阿拉丁神灯-资源/symbol/lv2.png new file mode 100755 index 0000000..852e737 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv2.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv2.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv2.png.meta new file mode 100644 index 0000000..32223f5 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5f660918-50a7-4fb5-8702-ccf40c4dd250", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5f660918-50a7-4fb5-8702-ccf40c4dd250@6c48a", + "displayName": "lv2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5f660918-50a7-4fb5-8702-ccf40c4dd250", + "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": "5f660918-50a7-4fb5-8702-ccf40c4dd250@f9941", + "displayName": "lv2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 160, + "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, + -80, + 0, + 87, + -80, + 0, + -87, + 80, + 0, + 87, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 174, + 160, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -80, + 0 + ], + "maxPos": [ + 87, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5f660918-50a7-4fb5-8702-ccf40c4dd250@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5f660918-50a7-4fb5-8702-ccf40c4dd250@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv2_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/lv2_mh.png new file mode 100755 index 0000000..34b31dd Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv2_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv2_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv2_mh.png.meta new file mode 100644 index 0000000..dcbcab9 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv2_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1ed9ba49-82e5-4a42-95c5-58bd506abab0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1ed9ba49-82e5-4a42-95c5-58bd506abab0@6c48a", + "displayName": "lv2_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1ed9ba49-82e5-4a42-95c5-58bd506abab0", + "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": "1ed9ba49-82e5-4a42-95c5-58bd506abab0@f9941", + "displayName": "lv2_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 17, + "width": 174, + "height": 180, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -90, + 0, + 87, + -90, + 0, + -87, + 90, + 0, + 87, + 90, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 197, + 174, + 197, + 0, + 17, + 174, + 17 + ], + "nuv": [ + 0, + 0.0794392523364486, + 1, + 0.0794392523364486, + 0, + 0.9205607476635514, + 1, + 0.9205607476635514 + ], + "minPos": [ + -87, + -90, + 0 + ], + "maxPos": [ + 87, + 90, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1ed9ba49-82e5-4a42-95c5-58bd506abab0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1ed9ba49-82e5-4a42-95c5-58bd506abab0@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv3.png b/assets/Game/阿拉丁神灯-资源/symbol/lv3.png new file mode 100755 index 0000000..fa4dc86 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv3.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv3.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv3.png.meta new file mode 100644 index 0000000..1c44124 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "36e61961-bced-4336-b51d-9d673ff17e8e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "36e61961-bced-4336-b51d-9d673ff17e8e@6c48a", + "displayName": "lv3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "36e61961-bced-4336-b51d-9d673ff17e8e", + "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": "36e61961-bced-4336-b51d-9d673ff17e8e@f9941", + "displayName": "lv3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 160, + "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, + -80, + 0, + 87, + -80, + 0, + -87, + 80, + 0, + 87, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 174, + 160, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -80, + 0 + ], + "maxPos": [ + 87, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "36e61961-bced-4336-b51d-9d673ff17e8e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "36e61961-bced-4336-b51d-9d673ff17e8e@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv3_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/lv3_mh.png new file mode 100755 index 0000000..c59a4fe Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv3_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv3_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv3_mh.png.meta new file mode 100644 index 0000000..92dcf0c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv3_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8e9ecf99-fe8f-43fc-90ef-f2cf1375f81e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8e9ecf99-fe8f-43fc-90ef-f2cf1375f81e@6c48a", + "displayName": "lv3_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8e9ecf99-fe8f-43fc-90ef-f2cf1375f81e", + "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": "8e9ecf99-fe8f-43fc-90ef-f2cf1375f81e@f9941", + "displayName": "lv3_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 17, + "width": 174, + "height": 180, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -90, + 0, + 87, + -90, + 0, + -87, + 90, + 0, + 87, + 90, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 197, + 174, + 197, + 0, + 17, + 174, + 17 + ], + "nuv": [ + 0, + 0.0794392523364486, + 1, + 0.0794392523364486, + 0, + 0.9205607476635514, + 1, + 0.9205607476635514 + ], + "minPos": [ + -87, + -90, + 0 + ], + "maxPos": [ + 87, + 90, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8e9ecf99-fe8f-43fc-90ef-f2cf1375f81e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8e9ecf99-fe8f-43fc-90ef-f2cf1375f81e@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv4.png b/assets/Game/阿拉丁神灯-资源/symbol/lv4.png new file mode 100755 index 0000000..2bbfc48 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv4.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv4.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv4.png.meta new file mode 100644 index 0000000..d0d21ff --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3488a20a-9102-4f25-8b6b-f887a032456f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3488a20a-9102-4f25-8b6b-f887a032456f@6c48a", + "displayName": "lv4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3488a20a-9102-4f25-8b6b-f887a032456f", + "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": "3488a20a-9102-4f25-8b6b-f887a032456f@f9941", + "displayName": "lv4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 160, + "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, + -80, + 0, + 87, + -80, + 0, + -87, + 80, + 0, + 87, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 174, + 160, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -80, + 0 + ], + "maxPos": [ + 87, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3488a20a-9102-4f25-8b6b-f887a032456f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3488a20a-9102-4f25-8b6b-f887a032456f@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv4_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/lv4_mh.png new file mode 100755 index 0000000..d7ffae4 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv4_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv4_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv4_mh.png.meta new file mode 100644 index 0000000..657fe12 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv4_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "67e8a615-9b02-44a2-bcbb-ff97329b9922", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "67e8a615-9b02-44a2-bcbb-ff97329b9922@6c48a", + "displayName": "lv4_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "67e8a615-9b02-44a2-bcbb-ff97329b9922", + "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": "67e8a615-9b02-44a2-bcbb-ff97329b9922@f9941", + "displayName": "lv4_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 17, + "width": 174, + "height": 180, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -90, + 0, + 87, + -90, + 0, + -87, + 90, + 0, + 87, + 90, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 197, + 174, + 197, + 0, + 17, + 174, + 17 + ], + "nuv": [ + 0, + 0.0794392523364486, + 1, + 0.0794392523364486, + 0, + 0.9205607476635514, + 1, + 0.9205607476635514 + ], + "minPos": [ + -87, + -90, + 0 + ], + "maxPos": [ + 87, + 90, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "67e8a615-9b02-44a2-bcbb-ff97329b9922@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "67e8a615-9b02-44a2-bcbb-ff97329b9922@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv5.png b/assets/Game/阿拉丁神灯-资源/symbol/lv5.png new file mode 100755 index 0000000..308ecd9 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv5.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv5.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv5.png.meta new file mode 100644 index 0000000..32ec01f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f18f8f31-7d1a-4f47-a177-cbf2a8820a29", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f18f8f31-7d1a-4f47-a177-cbf2a8820a29@6c48a", + "displayName": "lv5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f18f8f31-7d1a-4f47-a177-cbf2a8820a29", + "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": "f18f8f31-7d1a-4f47-a177-cbf2a8820a29@f9941", + "displayName": "lv5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 160, + "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, + -80, + 0, + 87, + -80, + 0, + -87, + 80, + 0, + 87, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 174, + 160, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -80, + 0 + ], + "maxPos": [ + 87, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f18f8f31-7d1a-4f47-a177-cbf2a8820a29@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f18f8f31-7d1a-4f47-a177-cbf2a8820a29@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv5_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/lv5_mh.png new file mode 100755 index 0000000..9b82f4f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv5_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv5_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv5_mh.png.meta new file mode 100644 index 0000000..382b931 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv5_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "69b5e1cf-9d5d-464e-beb8-7e2d0e384b51", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "69b5e1cf-9d5d-464e-beb8-7e2d0e384b51@6c48a", + "displayName": "lv5_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "69b5e1cf-9d5d-464e-beb8-7e2d0e384b51", + "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": "69b5e1cf-9d5d-464e-beb8-7e2d0e384b51@f9941", + "displayName": "lv5_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 17, + "width": 174, + "height": 180, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -90, + 0, + 87, + -90, + 0, + -87, + 90, + 0, + 87, + 90, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 197, + 174, + 197, + 0, + 17, + 174, + 17 + ], + "nuv": [ + 0, + 0.0794392523364486, + 1, + 0.0794392523364486, + 0, + 0.9205607476635514, + 1, + 0.9205607476635514 + ], + "minPos": [ + -87, + -90, + 0 + ], + "maxPos": [ + 87, + 90, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "69b5e1cf-9d5d-464e-beb8-7e2d0e384b51@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "69b5e1cf-9d5d-464e-beb8-7e2d0e384b51@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv6.png b/assets/Game/阿拉丁神灯-资源/symbol/lv6.png new file mode 100755 index 0000000..72da70e Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv6.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv6.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv6.png.meta new file mode 100644 index 0000000..2beb552 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a927789e-07b4-4faf-99c4-8e700e989cdc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a927789e-07b4-4faf-99c4-8e700e989cdc@6c48a", + "displayName": "lv6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a927789e-07b4-4faf-99c4-8e700e989cdc", + "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": "a927789e-07b4-4faf-99c4-8e700e989cdc@f9941", + "displayName": "lv6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 160, + "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, + -80, + 0, + 87, + -80, + 0, + -87, + 80, + 0, + 87, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 174, + 160, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -80, + 0 + ], + "maxPos": [ + 87, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a927789e-07b4-4faf-99c4-8e700e989cdc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a927789e-07b4-4faf-99c4-8e700e989cdc@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv6_mh.png b/assets/Game/阿拉丁神灯-资源/symbol/lv6_mh.png new file mode 100755 index 0000000..c730327 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/symbol/lv6_mh.png differ diff --git a/assets/Game/阿拉丁神灯-资源/symbol/lv6_mh.png.meta b/assets/Game/阿拉丁神灯-资源/symbol/lv6_mh.png.meta new file mode 100644 index 0000000..c1765ab --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/symbol/lv6_mh.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "57829fd2-91a7-4186-825e-36553da1a623", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "57829fd2-91a7-4186-825e-36553da1a623@6c48a", + "displayName": "lv6_mh", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "57829fd2-91a7-4186-825e-36553da1a623", + "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": "57829fd2-91a7-4186-825e-36553da1a623@f9941", + "displayName": "lv6_mh", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 17, + "width": 174, + "height": 180, + "rawWidth": 174, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -90, + 0, + 87, + -90, + 0, + -87, + 90, + 0, + 87, + 90, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 197, + 174, + 197, + 0, + 17, + 174, + 17 + ], + "nuv": [ + 0, + 0.0794392523364486, + 1, + 0.0794392523364486, + 0, + 0.9205607476635514, + 1, + 0.9205607476635514 + ], + "minPos": [ + -87, + -90, + 0 + ], + "maxPos": [ + 87, + 90, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "57829fd2-91a7-4186-825e-36553da1a623@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "57829fd2-91a7-4186-825e-36553da1a623@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/免费结算.meta b/assets/Game/阿拉丁神灯-资源/免费结算.meta new file mode 100644 index 0000000..ada755a --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/免费结算.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "9879bc70-d35f-412a-b775-be50bca91db4", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/免费结算/Tolal Win_bg.png b/assets/Game/阿拉丁神灯-资源/免费结算/Tolal Win_bg.png new file mode 100755 index 0000000..009c598 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/免费结算/Tolal Win_bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/免费结算/Tolal Win_bg.png.meta b/assets/Game/阿拉丁神灯-资源/免费结算/Tolal Win_bg.png.meta new file mode 100644 index 0000000..803085d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/免费结算/Tolal Win_bg.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "715c4f80-c8b2-40d4-98c1-925ad4e036c9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "715c4f80-c8b2-40d4-98c1-925ad4e036c9@6c48a", + "displayName": "Tolal Win_bg", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "715c4f80-c8b2-40d4-98c1-925ad4e036c9", + "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": "715c4f80-c8b2-40d4-98c1-925ad4e036c9@f9941", + "displayName": "Tolal Win_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": "715c4f80-c8b2-40d4-98c1-925ad4e036c9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "715c4f80-c8b2-40d4-98c1-925ad4e036c9@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/免费结算/btn_0.png b/assets/Game/阿拉丁神灯-资源/免费结算/btn_0.png new file mode 100755 index 0000000..26fece2 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/免费结算/btn_0.png differ diff --git a/assets/Game/阿拉丁神灯-资源/免费结算/btn_0.png.meta b/assets/Game/阿拉丁神灯-资源/免费结算/btn_0.png.meta new file mode 100644 index 0000000..b1cfd37 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/免费结算/btn_0.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0b862584-aa6e-4790-95f4-396082e4488f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0b862584-aa6e-4790-95f4-396082e4488f@6c48a", + "displayName": "btn_0", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0b862584-aa6e-4790-95f4-396082e4488f", + "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": "0b862584-aa6e-4790-95f4-396082e4488f@f9941", + "displayName": "btn_0", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 567, + "height": 227, + "rawWidth": 567, + "rawHeight": 227, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -283.5, + -113.5, + 0, + 283.5, + -113.5, + 0, + -283.5, + 113.5, + 0, + 283.5, + 113.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 227, + 567, + 227, + 0, + 0, + 567, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -283.5, + -113.5, + 0 + ], + "maxPos": [ + 283.5, + 113.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0b862584-aa6e-4790-95f4-396082e4488f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0b862584-aa6e-4790-95f4-396082e4488f@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源.meta b/assets/Game/阿拉丁神灯-资源/动画资源.meta new file mode 100644 index 0000000..c78440b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d1654c66-7bad-41ac-bb7c-fe18ef5d6683", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/Tolal Win.psd b/assets/Game/阿拉丁神灯-资源/动画资源/Tolal Win.psd new file mode 100755 index 0000000..7674da2 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/Tolal Win.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/Tolal Win.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/Tolal Win.psd.meta new file mode 100644 index 0000000..f3e5662 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/Tolal Win.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "378caf79-3a18-43d0-8e75-a9fda96a3ffa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "378caf79-3a18-43d0-8e75-a9fda96a3ffa@6c48a", + "displayName": "Tolal Win", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "378caf79-3a18-43d0-8e75-a9fda96a3ffa", + "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": "378caf79-3a18-43d0-8e75-a9fda96a3ffa@f9941", + "displayName": "Tolal Win", + "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": "378caf79-3a18-43d0-8e75-a9fda96a3ffa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "378caf79-3a18-43d0-8e75-a9fda96a3ffa@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/bet.psd b/assets/Game/阿拉丁神灯-资源/动画资源/bet.psd new file mode 100755 index 0000000..75255a1 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/bet.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/bet.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/bet.psd.meta new file mode 100644 index 0000000..72c07c4 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/bet.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b3b8e5b9-d16e-43ee-b3cc-df6e377c7a39", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b3b8e5b9-d16e-43ee-b3cc-df6e377c7a39@6c48a", + "displayName": "bet", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b3b8e5b9-d16e-43ee-b3cc-df6e377c7a39", + "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": "b3b8e5b9-d16e-43ee-b3cc-df6e377c7a39@f9941", + "displayName": "bet", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 176, + "height": 303, + "rawWidth": 176, + "rawHeight": 303, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -88, + -151.5, + 0, + 88, + -151.5, + 0, + -88, + 151.5, + 0, + 88, + 151.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 303, + 176, + 303, + 0, + 0, + 176, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -88, + -151.5, + 0 + ], + "maxPos": [ + 88, + 151.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3b8e5b9-d16e-43ee-b3cc-df6e377c7a39@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b3b8e5b9-d16e-43ee-b3cc-df6e377c7a39@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/freespins.psd b/assets/Game/阿拉丁神灯-资源/动画资源/freespins.psd new file mode 100755 index 0000000..5a54d93 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/freespins.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/freespins.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/freespins.psd.meta new file mode 100644 index 0000000..0609667 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/freespins.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aad616bc-d4cb-4258-8668-e29e93a3d6a4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aad616bc-d4cb-4258-8668-e29e93a3d6a4@6c48a", + "displayName": "freespins", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aad616bc-d4cb-4258-8668-e29e93a3d6a4", + "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": "aad616bc-d4cb-4258-8668-e29e93a3d6a4@f9941", + "displayName": "freespins", + "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": "aad616bc-d4cb-4258-8668-e29e93a3d6a4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aad616bc-d4cb-4258-8668-e29e93a3d6a4@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/qiu.psd b/assets/Game/阿拉丁神灯-资源/动画资源/qiu.psd new file mode 100755 index 0000000..6c5fff0 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/qiu.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/qiu.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/qiu.psd.meta new file mode 100644 index 0000000..04a940a --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/qiu.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "caaa0b4e-37da-4021-8da2-d31ffb7e4ee2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "caaa0b4e-37da-4021-8da2-d31ffb7e4ee2@6c48a", + "displayName": "qiu", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "caaa0b4e-37da-4021-8da2-d31ffb7e4ee2", + "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": "caaa0b4e-37da-4021-8da2-d31ffb7e4ee2@f9941", + "displayName": "qiu", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 382, + "height": 388, + "rawWidth": 382, + "rawHeight": 388, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -191, + -194, + 0, + 191, + -194, + 0, + -191, + 194, + 0, + 191, + 194, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 388, + 382, + 388, + 0, + 0, + 382, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -191, + -194, + 0 + ], + "maxPos": [ + 191, + 194, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "caaa0b4e-37da-4021-8da2-d31ffb7e4ee2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "caaa0b4e-37da-4021-8da2-d31ffb7e4ee2@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/ren.psd b/assets/Game/阿拉丁神灯-资源/动画资源/ren.psd new file mode 100755 index 0000000..1b2d62d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/ren.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/ren.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/ren.psd.meta new file mode 100644 index 0000000..1faa55e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/ren.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b08c79a8-a625-4f11-a692-8e3ac28150fa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b08c79a8-a625-4f11-a692-8e3ac28150fa@6c48a", + "displayName": "ren", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b08c79a8-a625-4f11-a692-8e3ac28150fa", + "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": "b08c79a8-a625-4f11-a692-8e3ac28150fa@f9941", + "displayName": "ren", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 833, + "height": 618, + "rawWidth": 833, + "rawHeight": 618, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -416.5, + -309, + 0, + 416.5, + -309, + 0, + -416.5, + 309, + 0, + 416.5, + 309, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 618, + 833, + 618, + 0, + 0, + 833, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -416.5, + -309, + 0 + ], + "maxPos": [ + 416.5, + 309, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b08c79a8-a625-4f11-a692-8e3ac28150fa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b08c79a8-a625-4f11-a692-8e3ac28150fa@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/sz.psd b/assets/Game/阿拉丁神灯-资源/动画资源/sz.psd new file mode 100755 index 0000000..1457e1f Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/sz.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/sz.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/sz.psd.meta new file mode 100644 index 0000000..25f270b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/sz.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "032b4b96-cab1-4856-aa5b-703fde125e96", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "032b4b96-cab1-4856-aa5b-703fde125e96@6c48a", + "displayName": "sz", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "032b4b96-cab1-4856-aa5b-703fde125e96", + "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": "032b4b96-cab1-4856-aa5b-703fde125e96@f9941", + "displayName": "sz", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 57, + "height": 74, + "rawWidth": 58, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28.5, + -37, + 0, + 28.5, + -37, + 0, + -28.5, + 37, + 0, + 28.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 74, + 57, + 74, + 0, + 0, + 57, + 0 + ], + "nuv": [ + 0, + 0, + 0.9827586206896551, + 0, + 0, + 1, + 0.9827586206896551, + 1 + ], + "minPos": [ + -28.5, + -37, + 0 + ], + "maxPos": [ + 28.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "032b4b96-cab1-4856-aa5b-703fde125e96@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "032b4b96-cab1-4856-aa5b-703fde125e96@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/win1.psd b/assets/Game/阿拉丁神灯-资源/动画资源/win1.psd new file mode 100755 index 0000000..296a016 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/win1.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/win1.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/win1.psd.meta new file mode 100644 index 0000000..e5f9834 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/win1.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9128ab2e-bfad-4213-944c-a0a5d86c11f3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9128ab2e-bfad-4213-944c-a0a5d86c11f3@6c48a", + "displayName": "win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9128ab2e-bfad-4213-944c-a0a5d86c11f3", + "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": "9128ab2e-bfad-4213-944c-a0a5d86c11f3@f9941", + "displayName": "win1", + "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": "9128ab2e-bfad-4213-944c-a0a5d86c11f3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9128ab2e-bfad-4213-944c-a0a5d86c11f3@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/win2.psd b/assets/Game/阿拉丁神灯-资源/动画资源/win2.psd new file mode 100755 index 0000000..fec7b7d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/win2.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/win2.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/win2.psd.meta new file mode 100644 index 0000000..847893e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/win2.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b1917d0b-2d1d-4941-83c6-9931bcd5fa05", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b1917d0b-2d1d-4941-83c6-9931bcd5fa05@6c48a", + "displayName": "win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b1917d0b-2d1d-4941-83c6-9931bcd5fa05", + "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": "b1917d0b-2d1d-4941-83c6-9931bcd5fa05@f9941", + "displayName": "win2", + "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": "b1917d0b-2d1d-4941-83c6-9931bcd5fa05@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b1917d0b-2d1d-4941-83c6-9931bcd5fa05@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/win3.psd b/assets/Game/阿拉丁神灯-资源/动画资源/win3.psd new file mode 100755 index 0000000..7ebcd68 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/win3.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/win3.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/win3.psd.meta new file mode 100644 index 0000000..31fa68e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/win3.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "50b06aea-b43c-48d0-9e4f-c6e4d8aa2bc4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "50b06aea-b43c-48d0-9e4f-c6e4d8aa2bc4@6c48a", + "displayName": "win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "50b06aea-b43c-48d0-9e4f-c6e4d8aa2bc4", + "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": "50b06aea-b43c-48d0-9e4f-c6e4d8aa2bc4@f9941", + "displayName": "win3", + "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": "50b06aea-b43c-48d0-9e4f-c6e4d8aa2bc4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "50b06aea-b43c-48d0-9e4f-c6e4d8aa2bc4@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/ys_k.psd b/assets/Game/阿拉丁神灯-资源/动画资源/ys_k.psd new file mode 100755 index 0000000..dca040d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/ys_k.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/ys_k.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/ys_k.psd.meta new file mode 100644 index 0000000..f221468 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/ys_k.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f22acc5c-3b51-41ba-ae45-d6f3706462a4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f22acc5c-3b51-41ba-ae45-d6f3706462a4@6c48a", + "displayName": "ys_k", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f22acc5c-3b51-41ba-ae45-d6f3706462a4", + "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": "f22acc5c-3b51-41ba-ae45-d6f3706462a4@f9941", + "displayName": "ys_k", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 10.5, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 962, + "rawWidth": 1080, + "rawHeight": 983, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -481, + 0, + 540, + -481, + 0, + -540, + 481, + 0, + 540, + 481, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 983, + 1080, + 983, + 0, + 21, + 1080, + 21 + ], + "nuv": [ + 0, + 0.021363173957273652, + 1, + 0.021363173957273652, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -481, + 0 + ], + "maxPos": [ + 540, + 481, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f22acc5c-3b51-41ba-ae45-d6f3706462a4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f22acc5c-3b51-41ba-ae45-d6f3706462a4@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/天空_鸟.psd b/assets/Game/阿拉丁神灯-资源/动画资源/天空_鸟.psd new file mode 100755 index 0000000..d4e05c1 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/天空_鸟.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/天空_鸟.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/天空_鸟.psd.meta new file mode 100644 index 0000000..8664f3d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/天空_鸟.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90fcdf53-4af6-4155-9419-11bb15a3cce6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90fcdf53-4af6-4155-9419-11bb15a3cce6@6c48a", + "displayName": "天空_鸟", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90fcdf53-4af6-4155-9419-11bb15a3cce6", + "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": "90fcdf53-4af6-4155-9419-11bb15a3cce6@f9941", + "displayName": "天空_鸟", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 737, + "rawWidth": 1080, + "rawHeight": 737, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -368.5, + 0, + 540, + -368.5, + 0, + -540, + 368.5, + 0, + 540, + 368.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 737, + 1080, + 737, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -368.5, + 0 + ], + "maxPos": [ + 540, + 368.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90fcdf53-4af6-4155-9419-11bb15a3cce6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90fcdf53-4af6-4155-9419-11bb15a3cce6@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/弹窗.psd b/assets/Game/阿拉丁神灯-资源/动画资源/弹窗.psd new file mode 100755 index 0000000..43171fa Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/弹窗.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/弹窗.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/弹窗.psd.meta new file mode 100644 index 0000000..32171c1 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/弹窗.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8e9ebc55-1b9c-4526-9bfa-1731c9d3f446", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8e9ebc55-1b9c-4526-9bfa-1731c9d3f446@6c48a", + "displayName": "弹窗", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8e9ebc55-1b9c-4526-9bfa-1731c9d3f446", + "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": "8e9ebc55-1b9c-4526-9bfa-1731c9d3f446@f9941", + "displayName": "弹窗", + "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": "8e9ebc55-1b9c-4526-9bfa-1731c9d3f446@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8e9ebc55-1b9c-4526-9bfa-1731c9d3f446@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/按钮.psd b/assets/Game/阿拉丁神灯-资源/动画资源/按钮.psd new file mode 100755 index 0000000..e9a4f6a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/按钮.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/按钮.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/按钮.psd.meta new file mode 100644 index 0000000..5518aa0 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/按钮.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c0299a80-65f1-491b-ad25-f419e155cd09", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c0299a80-65f1-491b-ad25-f419e155cd09@6c48a", + "displayName": "按钮", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c0299a80-65f1-491b-ad25-f419e155cd09", + "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": "c0299a80-65f1-491b-ad25-f419e155cd09@f9941", + "displayName": "按钮", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 1, + "trimY": 2, + "width": 289, + "height": 286, + "rawWidth": 290, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -144.5, + -143, + 0, + 144.5, + -143, + 0, + -144.5, + 143, + 0, + 144.5, + 143, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 288, + 290, + 288, + 1, + 2, + 290, + 2 + ], + "nuv": [ + 0.0034482758620689655, + 0.006896551724137931, + 1, + 0.006896551724137931, + 0.0034482758620689655, + 0.993103448275862, + 1, + 0.993103448275862 + ], + "minPos": [ + -144.5, + -143, + 0 + ], + "maxPos": [ + 144.5, + 143, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c0299a80-65f1-491b-ad25-f419e155cd09@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c0299a80-65f1-491b-ad25-f419e155cd09@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/沙漠沙漏.psd b/assets/Game/阿拉丁神灯-资源/动画资源/沙漠沙漏.psd new file mode 100755 index 0000000..3f12c81 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/沙漠沙漏.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/沙漠沙漏.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/沙漠沙漏.psd.meta new file mode 100644 index 0000000..c396e39 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/沙漠沙漏.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5952730c-c148-40f7-a70c-71856e85029d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5952730c-c148-40f7-a70c-71856e85029d@6c48a", + "displayName": "沙漠沙漏", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5952730c-c148-40f7-a70c-71856e85029d", + "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": "5952730c-c148-40f7-a70c-71856e85029d@f9941", + "displayName": "沙漠沙漏", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 900, + "rawWidth": 1080, + "rawHeight": 900, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -450, + 0, + 540, + -450, + 0, + -540, + 450, + 0, + 540, + 450, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 900, + 1080, + 900, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -450, + 0 + ], + "maxPos": [ + 540, + 450, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5952730c-c148-40f7-a70c-71856e85029d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5952730c-c148-40f7-a70c-71856e85029d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/火.psd b/assets/Game/阿拉丁神灯-资源/动画资源/火.psd new file mode 100755 index 0000000..c35b1d8 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/火.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/火.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/火.psd.meta new file mode 100644 index 0000000..fdffe26 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/火.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e8ff71bc-0a71-449d-90ba-01f20a3ab355", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e8ff71bc-0a71-449d-90ba-01f20a3ab355@6c48a", + "displayName": "火", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e8ff71bc-0a71-449d-90ba-01f20a3ab355", + "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": "e8ff71bc-0a71-449d-90ba-01f20a3ab355@f9941", + "displayName": "火", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1142, + "height": 467, + "rawWidth": 1142, + "rawHeight": 467, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -571, + -233.5, + 0, + 571, + -233.5, + 0, + -571, + 233.5, + 0, + 571, + 233.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 467, + 1142, + 467, + 0, + 0, + 1142, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -571, + -233.5, + 0 + ], + "maxPos": [ + 571, + 233.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e8ff71bc-0a71-449d-90ba-01f20a3ab355@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e8ff71bc-0a71-449d-90ba-01f20a3ab355@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/窗帘.psd b/assets/Game/阿拉丁神灯-资源/动画资源/窗帘.psd new file mode 100755 index 0000000..2e9c6f1 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/窗帘.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/窗帘.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/窗帘.psd.meta new file mode 100644 index 0000000..830afd6 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/窗帘.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dbeb1e4e-9b18-4022-a343-1cb1415ac512", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dbeb1e4e-9b18-4022-a343-1cb1415ac512@6c48a", + "displayName": "窗帘", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dbeb1e4e-9b18-4022-a343-1cb1415ac512", + "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": "dbeb1e4e-9b18-4022-a343-1cb1415ac512@f9941", + "displayName": "窗帘", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1155, + "height": 703, + "rawWidth": 1155, + "rawHeight": 703, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -577.5, + -351.5, + 0, + 577.5, + -351.5, + 0, + -577.5, + 351.5, + 0, + 577.5, + 351.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 703, + 1155, + 703, + 0, + 0, + 1155, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -577.5, + -351.5, + 0 + ], + "maxPos": [ + 577.5, + 351.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dbeb1e4e-9b18-4022-a343-1cb1415ac512@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dbeb1e4e-9b18-4022-a343-1cb1415ac512@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/购买.psd b/assets/Game/阿拉丁神灯-资源/动画资源/购买.psd new file mode 100755 index 0000000..2790389 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/购买.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/购买.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/购买.psd.meta new file mode 100644 index 0000000..b9bca81 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/购买.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "69409c93-16b2-4575-8b30-e0481505a6c3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "69409c93-16b2-4575-8b30-e0481505a6c3@6c48a", + "displayName": "购买", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "69409c93-16b2-4575-8b30-e0481505a6c3", + "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": "69409c93-16b2-4575-8b30-e0481505a6c3@f9941", + "displayName": "购买", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 350, + "height": 301, + "rawWidth": 350, + "rawHeight": 301, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -175, + -150.5, + 0, + 175, + -150.5, + 0, + -175, + 150.5, + 0, + 175, + 150.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 301, + 350, + 301, + 0, + 0, + 350, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -175, + -150.5, + 0 + ], + "maxPos": [ + 175, + 150.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "69409c93-16b2-4575-8b30-e0481505a6c3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "69409c93-16b2-4575-8b30-e0481505a6c3@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/跑马灯.psd b/assets/Game/阿拉丁神灯-资源/动画资源/跑马灯.psd new file mode 100755 index 0000000..3fb3edd Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/动画资源/跑马灯.psd differ diff --git a/assets/Game/阿拉丁神灯-资源/动画资源/跑马灯.psd.meta b/assets/Game/阿拉丁神灯-资源/动画资源/跑马灯.psd.meta new file mode 100644 index 0000000..ad58eec --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/动画资源/跑马灯.psd.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a43710e2-fca6-4484-8c1b-02c6b04038f2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a43710e2-fca6-4484-8c1b-02c6b04038f2@6c48a", + "displayName": "跑马灯", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a43710e2-fca6-4484-8c1b-02c6b04038f2", + "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": "a43710e2-fca6-4484-8c1b-02c6b04038f2@f9941", + "displayName": "跑马灯", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 817, + "height": 117, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -408.5, + -58.5, + 0, + 408.5, + -58.5, + 0, + -408.5, + 58.5, + 0, + 408.5, + 58.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 117, + 817, + 117, + 0, + 0, + 817, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -408.5, + -58.5, + 0 + ], + "maxPos": [ + 408.5, + 58.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a43710e2-fca6-4484-8c1b-02c6b04038f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a43710e2-fca6-4484-8c1b-02c6b04038f2@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅.meta b/assets/Game/阿拉丁神灯-资源/大厅.meta new file mode 100644 index 0000000..d3034af --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "0d17004a-e5e4-4d7e-b36f-37d82a48cd2f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_01.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_01.png new file mode 100755 index 0000000..257d9d2 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_01.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_01.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_01.png.meta new file mode 100644 index 0000000..35e5c40 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d906fce6-2d43-4a52-9076-7700505f040c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d906fce6-2d43-4a52-9076-7700505f040c@6c48a", + "displayName": "dt_bet_01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d906fce6-2d43-4a52-9076-7700505f040c", + "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": "d906fce6-2d43-4a52-9076-7700505f040c@f9941", + "displayName": "dt_bet_01", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 176, + "height": 303, + "rawWidth": 176, + "rawHeight": 303, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -88, + -151.5, + 0, + 88, + -151.5, + 0, + -88, + 151.5, + 0, + 88, + 151.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 303, + 176, + 303, + 0, + 0, + 176, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -88, + -151.5, + 0 + ], + "maxPos": [ + 88, + 151.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d906fce6-2d43-4a52-9076-7700505f040c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d906fce6-2d43-4a52-9076-7700505f040c@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_02.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_02.png new file mode 100755 index 0000000..6139696 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_02.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_02.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_02.png.meta new file mode 100644 index 0000000..4e01286 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_02.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4a415c4b-10bb-4709-8481-d6ca8799a474", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4a415c4b-10bb-4709-8481-d6ca8799a474@6c48a", + "displayName": "dt_bet_02", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4a415c4b-10bb-4709-8481-d6ca8799a474", + "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": "4a415c4b-10bb-4709-8481-d6ca8799a474@f9941", + "displayName": "dt_bet_02", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 176, + "height": 305, + "rawWidth": 176, + "rawHeight": 305, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -88, + -152.5, + 0, + 88, + -152.5, + 0, + -88, + 152.5, + 0, + 88, + 152.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 305, + 176, + 305, + 0, + 0, + 176, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -88, + -152.5, + 0 + ], + "maxPos": [ + 88, + 152.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4a415c4b-10bb-4709-8481-d6ca8799a474@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4a415c4b-10bb-4709-8481-d6ca8799a474@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg01.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg01.png new file mode 100755 index 0000000..b317a6a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg01.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg01.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg01.png.meta new file mode 100644 index 0000000..e73fd25 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869@6c48a", + "displayName": "dt_bet_bg01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869", + "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": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869@f9941", + "displayName": "dt_bet_bg01", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 767, + "height": 118, + "rawWidth": 767, + "rawHeight": 118, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -383.5, + -59, + 0, + 383.5, + -59, + 0, + -383.5, + 59, + 0, + 383.5, + 59, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 118, + 767, + 118, + 0, + 0, + 767, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -383.5, + -59, + 0 + ], + "maxPos": [ + 383.5, + 59, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "96fed3f6-d1ef-41e4-9e05-e5a0433a0869@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg02.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg02.png new file mode 100755 index 0000000..427de59 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg02.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg02.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg02.png.meta new file mode 100644 index 0000000..257e9cb --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_bg02.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "41d262ba-ebf6-43fc-a7c1-eec24567d41a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "41d262ba-ebf6-43fc-a7c1-eec24567d41a@6c48a", + "displayName": "dt_bet_bg02", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "41d262ba-ebf6-43fc-a7c1-eec24567d41a", + "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": "41d262ba-ebf6-43fc-a7c1-eec24567d41a@f9941", + "displayName": "dt_bet_bg02", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 48, + "rawWidth": 174, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87, + -24, + 0, + 87, + -24, + 0, + -87, + 24, + 0, + 87, + 24, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 48, + 174, + 48, + 0, + 0, + 174, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87, + -24, + 0 + ], + "maxPos": [ + 87, + 24, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "41d262ba-ebf6-43fc-a7c1-eec24567d41a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "41d262ba-ebf6-43fc-a7c1-eec24567d41a@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_off.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_off.png new file mode 100755 index 0000000..fb362cd Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_off.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_off.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_off.png.meta new file mode 100644 index 0000000..06eb845 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_off.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "26dde885-3e57-4a69-8a26-a2eb4c904b7e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@6c48a", + "displayName": "dt_bet_btn_off", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "26dde885-3e57-4a69-8a26-a2eb4c904b7e", + "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": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@f9941", + "displayName": "dt_bet_btn_off", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 123, + "height": 54, + "rawWidth": 123, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -61.5, + -27, + 0, + 61.5, + -27, + 0, + -61.5, + 27, + 0, + 61.5, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 54, + 123, + 54, + 0, + 0, + 123, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -61.5, + -27, + 0 + ], + "maxPos": [ + 61.5, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_on.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_on.png new file mode 100755 index 0000000..e739791 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_on.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_on.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_on.png.meta new file mode 100644 index 0000000..d30253a --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bet_btn_on.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bcdd2794-92bc-4204-ace8-3cb57366af3d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bcdd2794-92bc-4204-ace8-3cb57366af3d@6c48a", + "displayName": "dt_bet_btn_on", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bcdd2794-92bc-4204-ace8-3cb57366af3d", + "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": "bcdd2794-92bc-4204-ace8-3cb57366af3d@f9941", + "displayName": "dt_bet_btn_on", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 123, + "height": 54, + "rawWidth": 123, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -61.5, + -27, + 0, + 61.5, + -27, + 0, + -61.5, + 27, + 0, + 61.5, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 54, + 123, + 54, + 0, + 0, + 123, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -61.5, + -27, + 0 + ], + "maxPos": [ + 61.5, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bcdd2794-92bc-4204-ace8-3cb57366af3d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bcdd2794-92bc-4204-ace8-3cb57366af3d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bg01.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg01.png new file mode 100755 index 0000000..40bb3a6 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg01.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bg01.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg01.png.meta new file mode 100644 index 0000000..959bcc2 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "34843e38-4fa3-44d8-a2df-b251cbc0235b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "34843e38-4fa3-44d8-a2df-b251cbc0235b@6c48a", + "displayName": "dt_bg01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "34843e38-4fa3-44d8-a2df-b251cbc0235b", + "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": "34843e38-4fa3-44d8-a2df-b251cbc0235b@f9941", + "displayName": "dt_bg01", + "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": "34843e38-4fa3-44d8-a2df-b251cbc0235b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "34843e38-4fa3-44d8-a2df-b251cbc0235b@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bg02.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg02.png new file mode 100755 index 0000000..8808fa4 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg02.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bg02.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg02.png.meta new file mode 100644 index 0000000..5207e85 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg02.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8@6c48a", + "displayName": "dt_bg02", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8", + "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": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8@f9941", + "displayName": "dt_bg02", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1078, + "height": 208, + "rawWidth": 1078, + "rawHeight": 208, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -539, + -104, + 0, + 539, + -104, + 0, + -539, + 104, + 0, + 539, + 104, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 208, + 1078, + 208, + 0, + 0, + 1078, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -539, + -104, + 0 + ], + "maxPos": [ + 539, + 104, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "58ff112a-ad2a-4ea9-944b-ad4b55eddee8@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bg03.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg03.png new file mode 100755 index 0000000..65fe688 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg03.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_bg03.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg03.png.meta new file mode 100644 index 0000000..05ebd9c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_bg03.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4acb7eda-edc2-455c-b634-16bdb1cc6042", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4acb7eda-edc2-455c-b634-16bdb1cc6042@6c48a", + "displayName": "dt_bg03", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4acb7eda-edc2-455c-b634-16bdb1cc6042", + "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": "4acb7eda-edc2-455c-b634-16bdb1cc6042@f9941", + "displayName": "dt_bg03", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 429, + "rawWidth": 1080, + "rawHeight": 429, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -214.5, + 0, + 540, + -214.5, + 0, + -540, + 214.5, + 0, + 540, + 214.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 429, + 1080, + 429, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -214.5, + 0 + ], + "maxPos": [ + 540, + 214.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4acb7eda-edc2-455c-b634-16bdb1cc6042@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4acb7eda-edc2-455c-b634-16bdb1cc6042@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_btn_buy1.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_btn_buy1.png new file mode 100755 index 0000000..89268b8 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_btn_buy1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_btn_buy1.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_btn_buy1.png.meta new file mode 100644 index 0000000..f9686fb --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_btn_buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7f1e28da-f220-457c-a899-6770a1890792", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7f1e28da-f220-457c-a899-6770a1890792@6c48a", + "displayName": "dt_btn_buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7f1e28da-f220-457c-a899-6770a1890792", + "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": "7f1e28da-f220-457c-a899-6770a1890792@f9941", + "displayName": "dt_btn_buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 345, + "height": 301, + "rawWidth": 345, + "rawHeight": 301, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -172.5, + -150.5, + 0, + 172.5, + -150.5, + 0, + -172.5, + 150.5, + 0, + 172.5, + 150.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 301, + 345, + 301, + 0, + 0, + 345, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -172.5, + -150.5, + 0 + ], + "maxPos": [ + 172.5, + 150.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7f1e28da-f220-457c-a899-6770a1890792@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7f1e28da-f220-457c-a899-6770a1890792@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_y.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_y.png new file mode 100755 index 0000000..6222c82 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_y.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_y.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_y.png.meta new file mode 100644 index 0000000..610df9b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_y.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d196e332-7e03-49d0-ac07-a544df2a5863", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d196e332-7e03-49d0-ac07-a544df2a5863@6c48a", + "displayName": "dt_cl_y", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d196e332-7e03-49d0-ac07-a544df2a5863", + "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": "d196e332-7e03-49d0-ac07-a544df2a5863@f9941", + "displayName": "dt_cl_y", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 320, + "height": 741, + "rawWidth": 320, + "rawHeight": 741, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -160, + -370.5, + 0, + 160, + -370.5, + 0, + -160, + 370.5, + 0, + 160, + 370.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 741, + 320, + 741, + 0, + 0, + 320, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -160, + -370.5, + 0 + ], + "maxPos": [ + 160, + 370.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d196e332-7e03-49d0-ac07-a544df2a5863@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d196e332-7e03-49d0-ac07-a544df2a5863@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_z.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_z.png new file mode 100755 index 0000000..dd870fc Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_z.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_z.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_z.png.meta new file mode 100644 index 0000000..c02a969 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_cl_z.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bbe50864-560e-4aee-aed0-fc7a06d9d1bb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bbe50864-560e-4aee-aed0-fc7a06d9d1bb@6c48a", + "displayName": "dt_cl_z", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bbe50864-560e-4aee-aed0-fc7a06d9d1bb", + "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": "bbe50864-560e-4aee-aed0-fc7a06d9d1bb@f9941", + "displayName": "dt_cl_z", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 322, + "height": 741, + "rawWidth": 322, + "rawHeight": 741, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -161, + -370.5, + 0, + 161, + -370.5, + 0, + -161, + 370.5, + 0, + 161, + 370.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 741, + 322, + 741, + 0, + 0, + 322, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -161, + -370.5, + 0 + ], + "maxPos": [ + 161, + 370.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bbe50864-560e-4aee-aed0-fc7a06d9d1bb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bbe50864-560e-4aee-aed0-fc7a06d9d1bb@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_bg01.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_bg01.png new file mode 100755 index 0000000..e9dcc20 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_bg01.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_bg01.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_bg01.png.meta new file mode 100644 index 0000000..255ead8 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_bg01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "298d7e39-a6e9-4ca2-885f-80e865cc4575", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "298d7e39-a6e9-4ca2-885f-80e865cc4575@6c48a", + "displayName": "dt_mf_bg01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "298d7e39-a6e9-4ca2-885f-80e865cc4575", + "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": "298d7e39-a6e9-4ca2-885f-80e865cc4575@f9941", + "displayName": "dt_mf_bg01", + "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": "298d7e39-a6e9-4ca2-885f-80e865cc4575@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "298d7e39-a6e9-4ca2-885f-80e865cc4575@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_lianzi.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_lianzi.png new file mode 100755 index 0000000..b83ae42 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_lianzi.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_lianzi.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_lianzi.png.meta new file mode 100644 index 0000000..6259489 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_mf_lianzi.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a676fc8d-e6bd-4d79-844a-a7fd2d94b8fc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a676fc8d-e6bd-4d79-844a-a7fd2d94b8fc@6c48a", + "displayName": "dt_mf_lianzi", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a676fc8d-e6bd-4d79-844a-a7fd2d94b8fc", + "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": "a676fc8d-e6bd-4d79-844a-a7fd2d94b8fc@f9941", + "displayName": "dt_mf_lianzi", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 135, + "rawWidth": 1080, + "rawHeight": 135, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -67.5, + 0, + 540, + -67.5, + 0, + -540, + 67.5, + 0, + 540, + 67.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 135, + 1080, + 135, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -67.5, + 0 + ], + "maxPos": [ + 540, + 67.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a676fc8d-e6bd-4d79-844a-a7fd2d94b8fc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a676fc8d-e6bd-4d79-844a-a7fd2d94b8fc@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_sl.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_sl.png new file mode 100755 index 0000000..e903f62 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_sl.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_sl.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_sl.png.meta new file mode 100644 index 0000000..4f4d279 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_sl.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4@6c48a", + "displayName": "dt_sl", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4", + "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": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4@f9941", + "displayName": "dt_sl", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 96, + "height": 186, + "rawWidth": 96, + "rawHeight": 186, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48, + -93, + 0, + 48, + -93, + 0, + -48, + 93, + 0, + 48, + 93, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 186, + 96, + 186, + 0, + 0, + 96, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -48, + -93, + 0 + ], + "maxPos": [ + 48, + 93, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn.png new file mode 100755 index 0000000..fdd5cdd Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn.png.meta new file mode 100644 index 0000000..68418ef --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19d79212-3069-46d9-bded-d1fbccf8f461", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19d79212-3069-46d9-bded-d1fbccf8f461@6c48a", + "displayName": "dt_xz_btn", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19d79212-3069-46d9-bded-d1fbccf8f461", + "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": "19d79212-3069-46d9-bded-d1fbccf8f461@f9941", + "displayName": "dt_xz_btn", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 1, + "trimY": 2, + "width": 289, + "height": 286, + "rawWidth": 290, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -144.5, + -143, + 0, + 144.5, + -143, + 0, + -144.5, + 143, + 0, + 144.5, + 143, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 288, + 290, + 288, + 1, + 2, + 290, + 2 + ], + "nuv": [ + 0.0034482758620689655, + 0.006896551724137931, + 1, + 0.006896551724137931, + 0.0034482758620689655, + 0.993103448275862, + 1, + 0.993103448275862 + ], + "minPos": [ + -144.5, + -143, + 0 + ], + "maxPos": [ + 144.5, + 143, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19d79212-3069-46d9-bded-d1fbccf8f461@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19d79212-3069-46d9-bded-d1fbccf8f461@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt01.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt01.png new file mode 100755 index 0000000..8f5e1c7 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt01.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt01.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt01.png.meta new file mode 100644 index 0000000..fca9af3 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f31ad32a-a34b-4d6d-9f10-b6a0312e738f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f31ad32a-a34b-4d6d-9f10-b6a0312e738f@6c48a", + "displayName": "dt_xz_btn_jt01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f31ad32a-a34b-4d6d-9f10-b6a0312e738f", + "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": "f31ad32a-a34b-4d6d-9f10-b6a0312e738f@f9941", + "displayName": "dt_xz_btn_jt01", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 11, + "trimX": 69, + "trimY": 58, + "width": 152, + "height": 152, + "rawWidth": 290, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -76, + -76, + 0, + 76, + -76, + 0, + -76, + 76, + 0, + 76, + 76, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 69, + 232, + 221, + 232, + 69, + 80, + 221, + 80 + ], + "nuv": [ + 0.23793103448275862, + 0.27586206896551724, + 0.7620689655172413, + 0.27586206896551724, + 0.23793103448275862, + 0.8, + 0.7620689655172413, + 0.8 + ], + "minPos": [ + -76, + -76, + 0 + ], + "maxPos": [ + 76, + 76, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f31ad32a-a34b-4d6d-9f10-b6a0312e738f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f31ad32a-a34b-4d6d-9f10-b6a0312e738f@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt02.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt02.png new file mode 100755 index 0000000..d6e737e Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt02.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt02.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt02.png.meta new file mode 100644 index 0000000..02ee028 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt02.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ce2f392b-6d9d-45c3-aca0-4491157b7eff", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ce2f392b-6d9d-45c3-aca0-4491157b7eff@6c48a", + "displayName": "dt_xz_btn_jt02", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ce2f392b-6d9d-45c3-aca0-4491157b7eff", + "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": "ce2f392b-6d9d-45c3-aca0-4491157b7eff@f9941", + "displayName": "dt_xz_btn_jt02", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 11, + "trimX": 67, + "trimY": 58, + "width": 156, + "height": 152, + "rawWidth": 290, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -78, + -76, + 0, + 78, + -76, + 0, + -78, + 76, + 0, + 78, + 76, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 67, + 232, + 223, + 232, + 67, + 80, + 223, + 80 + ], + "nuv": [ + 0.23103448275862068, + 0.27586206896551724, + 0.7689655172413793, + 0.27586206896551724, + 0.23103448275862068, + 0.8, + 0.7689655172413793, + 0.8 + ], + "minPos": [ + -78, + -76, + 0 + ], + "maxPos": [ + 78, + 76, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ce2f392b-6d9d-45c3-aca0-4491157b7eff@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ce2f392b-6d9d-45c3-aca0-4491157b7eff@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt03.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt03.png new file mode 100755 index 0000000..170419a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt03.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt03.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt03.png.meta new file mode 100644 index 0000000..21c33d2 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_xz_btn_jt03.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ba3188d7-88f4-4065-97ed-fd0186779c7d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ba3188d7-88f4-4065-97ed-fd0186779c7d@6c48a", + "displayName": "dt_xz_btn_jt03", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ba3188d7-88f4-4065-97ed-fd0186779c7d", + "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": "ba3188d7-88f4-4065-97ed-fd0186779c7d@f9941", + "displayName": "dt_xz_btn_jt03", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 11, + "trimX": 69, + "trimY": 58, + "width": 152, + "height": 152, + "rawWidth": 290, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -76, + -76, + 0, + 76, + -76, + 0, + -76, + 76, + 0, + 76, + 76, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 69, + 232, + 221, + 232, + 69, + 80, + 221, + 80 + ], + "nuv": [ + 0.23793103448275862, + 0.27586206896551724, + 0.7620689655172413, + 0.27586206896551724, + 0.23793103448275862, + 0.8, + 0.7620689655172413, + 0.8 + ], + "minPos": [ + -76, + -76, + 0 + ], + "maxPos": [ + 76, + 76, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ba3188d7-88f4-4065-97ed-fd0186779c7d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ba3188d7-88f4-4065-97ed-fd0186779c7d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_bg.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_bg.png new file mode 100755 index 0000000..691803a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_bg.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_bg.png.meta new file mode 100644 index 0000000..138e8fd --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_bg.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c@6c48a", + "displayName": "dt_ys_bg", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c", + "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": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c@f9941", + "displayName": "dt_ys_bg", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -15.5, + "trimX": 18, + "trimY": 107, + "width": 1044, + "height": 800, + "rawWidth": 1080, + "rawHeight": 983, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -522, + -400, + 0, + 522, + -400, + 0, + -522, + 400, + 0, + 522, + 400, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 18, + 876, + 1062, + 876, + 18, + 76, + 1062, + 76 + ], + "nuv": [ + 0.016666666666666666, + 0.07731434384537131, + 0.9833333333333333, + 0.07731434384537131, + 0.016666666666666666, + 0.8911495422177009, + 0.9833333333333333, + 0.8911495422177009 + ], + "minPos": [ + -522, + -400, + 0 + ], + "maxPos": [ + 522, + 400, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "32be79a6-1e1a-47ec-9e07-e6232ce25c4c@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_k.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_k.png new file mode 100755 index 0000000..442b27a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_k.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_k.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_k.png.meta new file mode 100644 index 0000000..966f2b6 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_ys_k.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1080ff66-e360-472b-a4fa-fa318630a8fe", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1080ff66-e360-472b-a4fa-fa318630a8fe@6c48a", + "displayName": "dt_ys_k", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1080ff66-e360-472b-a4fa-fa318630a8fe", + "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": "1080ff66-e360-472b-a4fa-fa318630a8fe@f9941", + "displayName": "dt_ys_k", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 10.5, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 962, + "rawWidth": 1080, + "rawHeight": 983, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -481, + 0, + 540, + -481, + 0, + -540, + 481, + 0, + 540, + 481, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 983, + 1080, + 983, + 0, + 21, + 1080, + 21 + ], + "nuv": [ + 0, + 0.021363173957273652, + 1, + 0.021363173957273652, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -481, + 0 + ], + "maxPos": [ + 540, + 481, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1080ff66-e360-472b-a4fa-fa318630a8fe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1080ff66-e360-472b-a4fa-fa318630a8fe@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_zd_btn.png b/assets/Game/阿拉丁神灯-资源/大厅/dt_zd_btn.png new file mode 100755 index 0000000..d1b55ee Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/dt_zd_btn.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/dt_zd_btn.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/dt_zd_btn.png.meta new file mode 100644 index 0000000..4d5921b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/dt_zd_btn.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd@6c48a", + "displayName": "dt_zd_btn", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd", + "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": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd@f9941", + "displayName": "dt_zd_btn", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -5, + "trimX": 15, + "trimY": 22, + "width": 262, + "height": 256, + "rawWidth": 290, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -131, + -128, + 0, + 131, + -128, + 0, + -131, + 128, + 0, + 131, + 128, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 15, + 268, + 277, + 268, + 15, + 12, + 277, + 12 + ], + "nuv": [ + 0.05172413793103448, + 0.041379310344827586, + 0.9551724137931035, + 0.041379310344827586, + 0.05172413793103448, + 0.9241379310344827, + 0.9551724137931035, + 0.9241379310344827 + ], + "minPos": [ + -131, + -128, + 0 + ], + "maxPos": [ + 131, + 128, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c33e8ff3-2d83-492b-b5a4-e5417b1a17fd@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/langan.png b/assets/Game/阿拉丁神灯-资源/大厅/langan.png new file mode 100755 index 0000000..ce68d04 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/langan.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/langan.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/langan.png.meta new file mode 100644 index 0000000..21e0dea --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/langan.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "10db240e-abd8-4a35-868b-76963db6dac3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "10db240e-abd8-4a35-868b-76963db6dac3@6c48a", + "displayName": "langan", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "10db240e-abd8-4a35-868b-76963db6dac3", + "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": "10db240e-abd8-4a35-868b-76963db6dac3@f9941", + "displayName": "langan", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 467, + "rawWidth": 1080, + "rawHeight": 467, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -233.5, + 0, + 540, + -233.5, + 0, + -540, + 233.5, + 0, + 540, + 233.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 467, + 1080, + 467, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -233.5, + 0 + ], + "maxPos": [ + 540, + 233.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "10db240e-abd8-4a35-868b-76963db6dac3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "10db240e-abd8-4a35-868b-76963db6dac3@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd1_bg.png b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_bg.png new file mode 100755 index 0000000..593074c Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd1_bg.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_bg.png.meta new file mode 100644 index 0000000..b0e3c88 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_bg.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "52629b52-adbd-486e-ac5b-8568d7414ed5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "52629b52-adbd-486e-ac5b-8568d7414ed5@6c48a", + "displayName": "pmd1_bg", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "52629b52-adbd-486e-ac5b-8568d7414ed5", + "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": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", + "displayName": "pmd1_bg", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 12, + "trimY": 0, + "width": 794, + "height": 117, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -397, + -58.5, + 0, + 397, + -58.5, + 0, + -397, + 58.5, + 0, + 397, + 58.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 12, + 117, + 806, + 117, + 12, + 0, + 806, + 0 + ], + "nuv": [ + 0.014687882496940025, + 0, + 0.9865361077111383, + 0, + 0.014687882496940025, + 1, + 0.9865361077111383, + 1 + ], + "minPos": [ + -397, + -58.5, + 0 + ], + "maxPos": [ + 397, + 58.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "52629b52-adbd-486e-ac5b-8568d7414ed5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "52629b52-adbd-486e-ac5b-8568d7414ed5@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd1_zz.png b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_zz.png new file mode 100755 index 0000000..e576f71 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_zz.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd1_zz.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_zz.png.meta new file mode 100644 index 0000000..33c52d0 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/pmd1_zz.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@6c48a", + "displayName": "pmd1_zz", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c", + "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": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@f9941", + "displayName": "pmd1_zz", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 3.5, + "trimX": 28, + "trimY": 12, + "width": 760, + "height": 86, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -380, + -43, + 0, + 380, + -43, + 0, + -380, + 43, + 0, + 380, + 43, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 28, + 105, + 788, + 105, + 28, + 19, + 788, + 19 + ], + "nuv": [ + 0.03427172582619339, + 0.1623931623931624, + 0.9645042839657283, + 0.1623931623931624, + 0.03427172582619339, + 0.8974358974358975, + 0.9645042839657283, + 0.8974358974358975 + ], + "minPos": [ + -380, + -43, + 0 + ], + "maxPos": [ + 380, + 43, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd2_bg.png b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_bg.png new file mode 100755 index 0000000..bc07e00 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd2_bg.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_bg.png.meta new file mode 100644 index 0000000..cb57c2c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_bg.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fc9fad23-4ca6-4689-9f38-b09f337acecf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fc9fad23-4ca6-4689-9f38-b09f337acecf@6c48a", + "displayName": "pmd2_bg", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fc9fad23-4ca6-4689-9f38-b09f337acecf", + "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": "fc9fad23-4ca6-4689-9f38-b09f337acecf@f9941", + "displayName": "pmd2_bg", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 12, + "trimY": 0, + "width": 794, + "height": 117, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -397, + -58.5, + 0, + 397, + -58.5, + 0, + -397, + 58.5, + 0, + 397, + 58.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 12, + 117, + 806, + 117, + 12, + 0, + 806, + 0 + ], + "nuv": [ + 0.014687882496940025, + 0, + 0.9865361077111383, + 0, + 0.014687882496940025, + 1, + 0.9865361077111383, + 1 + ], + "minPos": [ + -397, + -58.5, + 0 + ], + "maxPos": [ + 397, + 58.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fc9fad23-4ca6-4689-9f38-b09f337acecf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fc9fad23-4ca6-4689-9f38-b09f337acecf@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd2_zz.png b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_zz.png new file mode 100755 index 0000000..2aeaffa Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_zz.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd2_zz.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_zz.png.meta new file mode 100644 index 0000000..1c2b08a --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/pmd2_zz.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d40e81b9-aba7-42d0-86e2-1efa9f42a294", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@6c48a", + "displayName": "pmd2_zz", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d40e81b9-aba7-42d0-86e2-1efa9f42a294", + "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": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@f9941", + "displayName": "pmd2_zz", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3.5, + "trimX": 1, + "trimY": 0, + "width": 815, + "height": 110, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -407.5, + -55, + 0, + 407.5, + -55, + 0, + -407.5, + 55, + 0, + 407.5, + 55, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 117, + 816, + 117, + 1, + 7, + 816, + 7 + ], + "nuv": [ + 0.0012239902080783353, + 0.05982905982905983, + 0.9987760097919217, + 0.05982905982905983, + 0.0012239902080783353, + 1, + 0.9987760097919217, + 1 + ], + "minPos": [ + -407.5, + -55, + 0 + ], + "maxPos": [ + 407.5, + 55, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd3_bg.png b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_bg.png new file mode 100755 index 0000000..cdb8338 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_bg.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd3_bg.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_bg.png.meta new file mode 100644 index 0000000..70aa799 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_bg.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2cfbbf71-4ea5-4648-8d1f-558bdd756492", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@6c48a", + "displayName": "pmd3_bg", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2cfbbf71-4ea5-4648-8d1f-558bdd756492", + "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": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@f9941", + "displayName": "pmd3_bg", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 12, + "trimY": 0, + "width": 794, + "height": 117, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -397, + -58.5, + 0, + 397, + -58.5, + 0, + -397, + 58.5, + 0, + 397, + 58.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 12, + 117, + 806, + 117, + 12, + 0, + 806, + 0 + ], + "nuv": [ + 0.014687882496940025, + 0, + 0.9865361077111383, + 0, + 0.014687882496940025, + 1, + 0.9865361077111383, + 1 + ], + "minPos": [ + -397, + -58.5, + 0 + ], + "maxPos": [ + 397, + 58.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd3_zz.png b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_zz.png new file mode 100755 index 0000000..1fc80bb Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_zz.png differ diff --git a/assets/Game/阿拉丁神灯-资源/大厅/pmd3_zz.png.meta b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_zz.png.meta new file mode 100644 index 0000000..a1cb743 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/大厅/pmd3_zz.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "79d66cae-992f-42db-93cc-6436356e6b1d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "79d66cae-992f-42db-93cc-6436356e6b1d@6c48a", + "displayName": "pmd3_zz", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "79d66cae-992f-42db-93cc-6436356e6b1d", + "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": "79d66cae-992f-42db-93cc-6436356e6b1d@f9941", + "displayName": "pmd3_zz", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1.5, + "trimX": 0, + "trimY": 1, + "width": 817, + "height": 112, + "rawWidth": 817, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -408.5, + -56, + 0, + 408.5, + -56, + 0, + -408.5, + 56, + 0, + 408.5, + 56, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 116, + 817, + 116, + 0, + 4, + 817, + 4 + ], + "nuv": [ + 0, + 0.03418803418803419, + 1, + 0.03418803418803419, + 0, + 0.9914529914529915, + 1, + 0.9914529914529915 + ], + "minPos": [ + -408.5, + -56, + 0 + ], + "maxPos": [ + 408.5, + 56, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "79d66cae-992f-42db-93cc-6436356e6b1d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "79d66cae-992f-42db-93cc-6436356e6b1d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/弹窗.meta b/assets/Game/阿拉丁神灯-资源/弹窗.meta new file mode 100644 index 0000000..9f4545d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/弹窗.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "bc1ec3ff-029f-4c0a-92b7-6092296c73b7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/弹窗/btn_1.png b/assets/Game/阿拉丁神灯-资源/弹窗/btn_1.png new file mode 100755 index 0000000..aa8fa84 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/弹窗/btn_1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/弹窗/btn_1.png.meta b/assets/Game/阿拉丁神灯-资源/弹窗/btn_1.png.meta new file mode 100644 index 0000000..da5acf9 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/弹窗/btn_1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6b37f8fc-b394-41a1-aafb-30bb8997481b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6b37f8fc-b394-41a1-aafb-30bb8997481b@6c48a", + "displayName": "btn_1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6b37f8fc-b394-41a1-aafb-30bb8997481b", + "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": "6b37f8fc-b394-41a1-aafb-30bb8997481b@f9941", + "displayName": "btn_1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 389, + "height": 144, + "rawWidth": 389, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -194.5, + -72, + 0, + 194.5, + -72, + 0, + -194.5, + 72, + 0, + 194.5, + 72, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 144, + 389, + 144, + 0, + 0, + 389, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -194.5, + -72, + 0 + ], + "maxPos": [ + 194.5, + 72, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6b37f8fc-b394-41a1-aafb-30bb8997481b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6b37f8fc-b394-41a1-aafb-30bb8997481b@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/弹窗/btn_2.png b/assets/Game/阿拉丁神灯-资源/弹窗/btn_2.png new file mode 100755 index 0000000..9728895 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/弹窗/btn_2.png differ diff --git a/assets/Game/阿拉丁神灯-资源/弹窗/btn_2.png.meta b/assets/Game/阿拉丁神灯-资源/弹窗/btn_2.png.meta new file mode 100644 index 0000000..ddee5aa --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/弹窗/btn_2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "17487c1c-77f7-4366-b95b-1e7ecb817381", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "17487c1c-77f7-4366-b95b-1e7ecb817381@6c48a", + "displayName": "btn_2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "17487c1c-77f7-4366-b95b-1e7ecb817381", + "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": "17487c1c-77f7-4366-b95b-1e7ecb817381@f9941", + "displayName": "btn_2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 389, + "height": 142, + "rawWidth": 389, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -194.5, + -71, + 0, + 194.5, + -71, + 0, + -194.5, + 71, + 0, + 194.5, + 71, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 142, + 389, + 142, + 0, + 0, + 389, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -194.5, + -71, + 0 + ], + "maxPos": [ + 194.5, + 71, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "17487c1c-77f7-4366-b95b-1e7ecb817381@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "17487c1c-77f7-4366-b95b-1e7ecb817381@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/弹窗/db_k.png b/assets/Game/阿拉丁神灯-资源/弹窗/db_k.png new file mode 100755 index 0000000..c565861 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/弹窗/db_k.png differ diff --git a/assets/Game/阿拉丁神灯-资源/弹窗/db_k.png.meta b/assets/Game/阿拉丁神灯-资源/弹窗/db_k.png.meta new file mode 100644 index 0000000..097bd79 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/弹窗/db_k.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7f948407-e872-454d-bfa1-42136a3db345", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7f948407-e872-454d-bfa1-42136a3db345@6c48a", + "displayName": "db_k", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7f948407-e872-454d-bfa1-42136a3db345", + "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": "7f948407-e872-454d-bfa1-42136a3db345@f9941", + "displayName": "db_k", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 772, + "rawWidth": 1080, + "rawHeight": 772, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -386, + 0, + 540, + -386, + 0, + -540, + 386, + 0, + 540, + 386, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 772, + 1080, + 772, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -386, + 0 + ], + "maxPos": [ + 540, + 386, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7f948407-e872-454d-bfa1-42136a3db345@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7f948407-e872-454d-bfa1-42136a3db345@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表.meta b/assets/Game/阿拉丁神灯-资源/赔付表.meta new file mode 100644 index 0000000..a9fd657 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "65a1f16b-693a-4c93-b063-08604bf6d80d", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds.meta new file mode 100644 index 0000000..9292ccd --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "272e8496-aa6e-43e7-ae6f-ec05292b4a1f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/1.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/1.png new file mode 100755 index 0000000..b580534 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/1.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/1.png.meta new file mode 100644 index 0000000..8cac795 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0c15e822-2796-410d-a7f5-bd6ddb227588", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0c15e822-2796-410d-a7f5-bd6ddb227588@6c48a", + "displayName": "1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0c15e822-2796-410d-a7f5-bd6ddb227588", + "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": "0c15e822-2796-410d-a7f5-bd6ddb227588@f9941", + "displayName": "1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 45, + "trimY": 39, + "width": 170, + "height": 183, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -85, + -91.5, + 0, + 85, + -91.5, + 0, + -85, + 91.5, + 0, + 85, + 91.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 45, + 221, + 215, + 221, + 45, + 38, + 215, + 38 + ], + "nuv": [ + 0.17307692307692307, + 0.14615384615384616, + 0.8269230769230769, + 0.14615384615384616, + 0.17307692307692307, + 0.85, + 0.8269230769230769, + 0.85 + ], + "minPos": [ + -85, + -91.5, + 0 + ], + "maxPos": [ + 85, + 91.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0c15e822-2796-410d-a7f5-bd6ddb227588@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0c15e822-2796-410d-a7f5-bd6ddb227588@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/10.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/10.png new file mode 100755 index 0000000..a31c7c2 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/10.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/10.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/10.png.meta new file mode 100644 index 0000000..73a5b17 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "99fbdd2a-606a-4254-85bd-0f163b0039ab", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "99fbdd2a-606a-4254-85bd-0f163b0039ab@6c48a", + "displayName": "10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "99fbdd2a-606a-4254-85bd-0f163b0039ab", + "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": "99fbdd2a-606a-4254-85bd-0f163b0039ab@f9941", + "displayName": "10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -5.5, + "trimX": 70, + "trimY": 75, + "width": 122, + "height": 121, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -61, + -60.5, + 0, + 61, + -60.5, + 0, + -61, + 60.5, + 0, + 61, + 60.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 70, + 185, + 192, + 185, + 70, + 64, + 192, + 64 + ], + "nuv": [ + 0.2692307692307692, + 0.24615384615384617, + 0.7384615384615385, + 0.24615384615384617, + 0.2692307692307692, + 0.7115384615384616, + 0.7384615384615385, + 0.7115384615384616 + ], + "minPos": [ + -61, + -60.5, + 0 + ], + "maxPos": [ + 61, + 60.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "99fbdd2a-606a-4254-85bd-0f163b0039ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "99fbdd2a-606a-4254-85bd-0f163b0039ab@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/11.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/11.png new file mode 100755 index 0000000..fe07d3d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/11.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/11.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/11.png.meta new file mode 100644 index 0000000..97644b9 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6fc02754-3e7f-4fca-8160-d9ea9c956abc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6fc02754-3e7f-4fca-8160-d9ea9c956abc@6c48a", + "displayName": "11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6fc02754-3e7f-4fca-8160-d9ea9c956abc", + "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": "6fc02754-3e7f-4fca-8160-d9ea9c956abc@f9941", + "displayName": "11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 928, + "height": 173, + "rawWidth": 928, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -464, + -86.5, + 0, + 464, + -86.5, + 0, + -464, + 86.5, + 0, + 464, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 928, + 173, + 0, + 0, + 928, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -464, + -86.5, + 0 + ], + "maxPos": [ + 464, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6fc02754-3e7f-4fca-8160-d9ea9c956abc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6fc02754-3e7f-4fca-8160-d9ea9c956abc@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/12.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/12.png new file mode 100755 index 0000000..7a01e27 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/12.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/12.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/12.png.meta new file mode 100644 index 0000000..a9e5fd2 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/12.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c650da88-b2d3-4580-8223-60521adeeec1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c650da88-b2d3-4580-8223-60521adeeec1@6c48a", + "displayName": "12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c650da88-b2d3-4580-8223-60521adeeec1", + "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": "c650da88-b2d3-4580-8223-60521adeeec1@f9941", + "displayName": "12", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 914, + "height": 183, + "rawWidth": 914, + "rawHeight": 183, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -457, + -91.5, + 0, + 457, + -91.5, + 0, + -457, + 91.5, + 0, + 457, + 91.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 183, + 914, + 183, + 0, + 0, + 914, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -457, + -91.5, + 0 + ], + "maxPos": [ + 457, + 91.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c650da88-b2d3-4580-8223-60521adeeec1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c650da88-b2d3-4580-8223-60521adeeec1@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/13.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/13.png new file mode 100755 index 0000000..cc855ee Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/13.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/13.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/13.png.meta new file mode 100644 index 0000000..f0fb608 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/13.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dce7b7be-d0f1-4aa4-a1d3-4b09be2c8405", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dce7b7be-d0f1-4aa4-a1d3-4b09be2c8405@6c48a", + "displayName": "13", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dce7b7be-d0f1-4aa4-a1d3-4b09be2c8405", + "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": "dce7b7be-d0f1-4aa4-a1d3-4b09be2c8405@f9941", + "displayName": "13", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 179, + "height": 303, + "rawWidth": 179, + "rawHeight": 303, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -89.5, + -151.5, + 0, + 89.5, + -151.5, + 0, + -89.5, + 151.5, + 0, + 89.5, + 151.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 303, + 179, + 303, + 0, + 0, + 179, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -89.5, + -151.5, + 0 + ], + "maxPos": [ + 89.5, + 151.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dce7b7be-d0f1-4aa4-a1d3-4b09be2c8405@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dce7b7be-d0f1-4aa4-a1d3-4b09be2c8405@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/14.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/14.png new file mode 100755 index 0000000..c07ba96 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/14.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/14.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/14.png.meta new file mode 100644 index 0000000..e8016f0 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/14.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e0f623d6-0f9f-4b0f-b0c9-012a02eeb34f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e0f623d6-0f9f-4b0f-b0c9-012a02eeb34f@6c48a", + "displayName": "14", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e0f623d6-0f9f-4b0f-b0c9-012a02eeb34f", + "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": "e0f623d6-0f9f-4b0f-b0c9-012a02eeb34f@f9941", + "displayName": "14", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 349, + "height": 292, + "rawWidth": 349, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -174.5, + -146, + 0, + 174.5, + -146, + 0, + -174.5, + 146, + 0, + 174.5, + 146, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 292, + 349, + 292, + 0, + 0, + 349, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -174.5, + -146, + 0 + ], + "maxPos": [ + 174.5, + 146, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e0f623d6-0f9f-4b0f-b0c9-012a02eeb34f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e0f623d6-0f9f-4b0f-b0c9-012a02eeb34f@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/2.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/2.png new file mode 100755 index 0000000..f1a436a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/2.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/2.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/2.png.meta new file mode 100644 index 0000000..d4a3342 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f8a072ae-3627-47c8-a67e-55e75c64fd5d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f8a072ae-3627-47c8-a67e-55e75c64fd5d@6c48a", + "displayName": "2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f8a072ae-3627-47c8-a67e-55e75c64fd5d", + "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": "f8a072ae-3627-47c8-a67e-55e75c64fd5d@f9941", + "displayName": "2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -3, + "trimX": 52, + "trimY": 64, + "width": 157, + "height": 138, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -78.5, + -69, + 0, + 78.5, + -69, + 0, + -78.5, + 69, + 0, + 78.5, + 69, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 52, + 196, + 209, + 196, + 52, + 58, + 209, + 58 + ], + "nuv": [ + 0.2, + 0.2230769230769231, + 0.8038461538461539, + 0.2230769230769231, + 0.2, + 0.7538461538461538, + 0.8038461538461539, + 0.7538461538461538 + ], + "minPos": [ + -78.5, + -69, + 0 + ], + "maxPos": [ + 78.5, + 69, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f8a072ae-3627-47c8-a67e-55e75c64fd5d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f8a072ae-3627-47c8-a67e-55e75c64fd5d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/3.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/3.png new file mode 100755 index 0000000..058eb45 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/3.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/3.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/3.png.meta new file mode 100644 index 0000000..5fb03cd --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "542acbb5-c6fe-4de1-84f5-00e33528e0a6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "542acbb5-c6fe-4de1-84f5-00e33528e0a6@6c48a", + "displayName": "3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "542acbb5-c6fe-4de1-84f5-00e33528e0a6", + "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": "542acbb5-c6fe-4de1-84f5-00e33528e0a6@f9941", + "displayName": "3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -3.5, + "trimX": 54, + "trimY": 65, + "width": 154, + "height": 137, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -77, + -68.5, + 0, + 77, + -68.5, + 0, + -77, + 68.5, + 0, + 77, + 68.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 54, + 195, + 208, + 195, + 54, + 58, + 208, + 58 + ], + "nuv": [ + 0.2076923076923077, + 0.2230769230769231, + 0.8, + 0.2230769230769231, + 0.2076923076923077, + 0.75, + 0.8, + 0.75 + ], + "minPos": [ + -77, + -68.5, + 0 + ], + "maxPos": [ + 77, + 68.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "542acbb5-c6fe-4de1-84f5-00e33528e0a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "542acbb5-c6fe-4de1-84f5-00e33528e0a6@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/4.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/4.png new file mode 100755 index 0000000..d209d59 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/4.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/4.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/4.png.meta new file mode 100644 index 0000000..6749a7f --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4825aa57-392e-4960-a635-98ca4a8acf68", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4825aa57-392e-4960-a635-98ca4a8acf68@6c48a", + "displayName": "4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4825aa57-392e-4960-a635-98ca4a8acf68", + "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": "4825aa57-392e-4960-a635-98ca4a8acf68@f9941", + "displayName": "4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -5.5, + "trimX": 55, + "trimY": 72, + "width": 152, + "height": 127, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -76, + -63.5, + 0, + 76, + -63.5, + 0, + -76, + 63.5, + 0, + 76, + 63.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 55, + 188, + 207, + 188, + 55, + 61, + 207, + 61 + ], + "nuv": [ + 0.21153846153846154, + 0.23461538461538461, + 0.7961538461538461, + 0.23461538461538461, + 0.21153846153846154, + 0.7230769230769231, + 0.7961538461538461, + 0.7230769230769231 + ], + "minPos": [ + -76, + -63.5, + 0 + ], + "maxPos": [ + 76, + 63.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4825aa57-392e-4960-a635-98ca4a8acf68@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4825aa57-392e-4960-a635-98ca4a8acf68@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/5.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/5.png new file mode 100755 index 0000000..3238f3d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/5.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/5.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/5.png.meta new file mode 100644 index 0000000..002eb5b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9fc4c0c3-2e86-46fe-9e2d-0044af39cbb9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9fc4c0c3-2e86-46fe-9e2d-0044af39cbb9@6c48a", + "displayName": "5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9fc4c0c3-2e86-46fe-9e2d-0044af39cbb9", + "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": "9fc4c0c3-2e86-46fe-9e2d-0044af39cbb9@f9941", + "displayName": "5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -3, + "trimX": 83, + "trimY": 80, + "width": 96, + "height": 106, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48, + -53, + 0, + 48, + -53, + 0, + -48, + 53, + 0, + 48, + 53, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 83, + 180, + 179, + 180, + 83, + 74, + 179, + 74 + ], + "nuv": [ + 0.3192307692307692, + 0.2846153846153846, + 0.6884615384615385, + 0.2846153846153846, + 0.3192307692307692, + 0.6923076923076923, + 0.6884615384615385, + 0.6923076923076923 + ], + "minPos": [ + -48, + -53, + 0 + ], + "maxPos": [ + 48, + 53, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9fc4c0c3-2e86-46fe-9e2d-0044af39cbb9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9fc4c0c3-2e86-46fe-9e2d-0044af39cbb9@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/6.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/6.png new file mode 100755 index 0000000..d70df83 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/6.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/6.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/6.png.meta new file mode 100644 index 0000000..32d4955 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "efe78a19-882d-4f8e-8a59-e6eeaeca3c0b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "efe78a19-882d-4f8e-8a59-e6eeaeca3c0b@6c48a", + "displayName": "6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "efe78a19-882d-4f8e-8a59-e6eeaeca3c0b", + "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": "efe78a19-882d-4f8e-8a59-e6eeaeca3c0b@f9941", + "displayName": "6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -5.5, + "trimX": 74, + "trimY": 80, + "width": 113, + "height": 111, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56.5, + -55.5, + 0, + 56.5, + -55.5, + 0, + -56.5, + 55.5, + 0, + 56.5, + 55.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 74, + 180, + 187, + 180, + 74, + 69, + 187, + 69 + ], + "nuv": [ + 0.2846153846153846, + 0.2653846153846154, + 0.7192307692307692, + 0.2653846153846154, + 0.2846153846153846, + 0.6923076923076923, + 0.7192307692307692, + 0.6923076923076923 + ], + "minPos": [ + -56.5, + -55.5, + 0 + ], + "maxPos": [ + 56.5, + 55.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "efe78a19-882d-4f8e-8a59-e6eeaeca3c0b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "efe78a19-882d-4f8e-8a59-e6eeaeca3c0b@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/7.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/7.png new file mode 100755 index 0000000..fd0034a Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/7.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/7.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/7.png.meta new file mode 100644 index 0000000..8901f56 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ddbee3f7-475b-4666-adca-48a0f13e0d93", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ddbee3f7-475b-4666-adca-48a0f13e0d93@6c48a", + "displayName": "7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ddbee3f7-475b-4666-adca-48a0f13e0d93", + "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": "ddbee3f7-475b-4666-adca-48a0f13e0d93@f9941", + "displayName": "7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": -4.5, + "trimX": 80, + "trimY": 75, + "width": 102, + "height": 119, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -51, + -59.5, + 0, + 51, + -59.5, + 0, + -51, + 59.5, + 0, + 51, + 59.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 80, + 185, + 182, + 185, + 80, + 66, + 182, + 66 + ], + "nuv": [ + 0.3076923076923077, + 0.25384615384615383, + 0.7, + 0.25384615384615383, + 0.3076923076923077, + 0.7115384615384616, + 0.7, + 0.7115384615384616 + ], + "minPos": [ + -51, + -59.5, + 0 + ], + "maxPos": [ + 51, + 59.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ddbee3f7-475b-4666-adca-48a0f13e0d93@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ddbee3f7-475b-4666-adca-48a0f13e0d93@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/8.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/8.png new file mode 100755 index 0000000..8981c4d Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/8.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/8.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/8.png.meta new file mode 100644 index 0000000..aba3ad4 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d6f95bc5-c465-4383-83a5-399ede5eff3d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d6f95bc5-c465-4383-83a5-399ede5eff3d@6c48a", + "displayName": "8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d6f95bc5-c465-4383-83a5-399ede5eff3d", + "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": "d6f95bc5-c465-4383-83a5-399ede5eff3d@f9941", + "displayName": "8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": -6, + "trimX": 69, + "trimY": 76, + "width": 125, + "height": 120, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -62.5, + -60, + 0, + 62.5, + -60, + 0, + -62.5, + 60, + 0, + 62.5, + 60, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 69, + 184, + 194, + 184, + 69, + 64, + 194, + 64 + ], + "nuv": [ + 0.2653846153846154, + 0.24615384615384617, + 0.7461538461538462, + 0.24615384615384617, + 0.2653846153846154, + 0.7076923076923077, + 0.7461538461538462, + 0.7076923076923077 + ], + "minPos": [ + -62.5, + -60, + 0 + ], + "maxPos": [ + 62.5, + 60, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d6f95bc5-c465-4383-83a5-399ede5eff3d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d6f95bc5-c465-4383-83a5-399ede5eff3d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/9.png b/assets/Game/阿拉丁神灯-资源/赔付表/odds/9.png new file mode 100755 index 0000000..a3e8ae5 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/9.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/9.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/9.png.meta new file mode 100644 index 0000000..10f8e04 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "336c6d01-60f0-4198-9736-3f99ee00c31a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "336c6d01-60f0-4198-9736-3f99ee00c31a@6c48a", + "displayName": "9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "336c6d01-60f0-4198-9736-3f99ee00c31a", + "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": "336c6d01-60f0-4198-9736-3f99ee00c31a@f9941", + "displayName": "9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": -5, + "trimX": 69, + "trimY": 75, + "width": 125, + "height": 120, + "rawWidth": 260, + "rawHeight": 260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -62.5, + -60, + 0, + 62.5, + -60, + 0, + -62.5, + 60, + 0, + 62.5, + 60, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 69, + 185, + 194, + 185, + 69, + 65, + 194, + 65 + ], + "nuv": [ + 0.2653846153846154, + 0.25, + 0.7461538461538462, + 0.25, + 0.2653846153846154, + 0.7115384615384616, + 0.7461538461538462, + 0.7115384615384616 + ], + "minPos": [ + -62.5, + -60, + 0 + ], + "maxPos": [ + 62.5, + 60, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "336c6d01-60f0-4198-9736-3f99ee00c31a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "336c6d01-60f0-4198-9736-3f99ee00c31a@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/赔付表.jpg b/assets/Game/阿拉丁神灯-资源/赔付表/odds/赔付表.jpg new file mode 100755 index 0000000..0c3d999 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/odds/赔付表.jpg differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/odds/赔付表.jpg.meta b/assets/Game/阿拉丁神灯-资源/赔付表/odds/赔付表.jpg.meta new file mode 100644 index 0000000..ca5e9de --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/odds/赔付表.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e04cfcb3-a74a-48bd-bab2-5774f18c5cef", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e04cfcb3-a74a-48bd-bab2-5774f18c5cef@6c48a", + "displayName": "赔付表", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e04cfcb3-a74a-48bd-bab2-5774f18c5cef", + "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": "e04cfcb3-a74a-48bd-bab2-5774f18c5cef@f9941", + "displayName": "赔付表", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 5501, + "rawWidth": 1080, + "rawHeight": 5501, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -2750.5, + 0, + 540, + -2750.5, + 0, + -540, + 2750.5, + 0, + 540, + 2750.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 5501, + 1080, + 5501, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -2750.5, + 0 + ], + "maxPos": [ + 540, + 2750.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e04cfcb3-a74a-48bd-bab2-5774f18c5cef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e04cfcb3-a74a-48bd-bab2-5774f18c5cef@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support.meta new file mode 100644 index 0000000..a5aa378 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "f2943e57-cd23-4d40-881d-95c26e7ac18e", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/1.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/1.png new file mode 100755 index 0000000..047cfd7 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/1.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/1.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/1.png.meta new file mode 100644 index 0000000..256c539 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ba19f30b-e49a-450a-a3a8-279c63160f24", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ba19f30b-e49a-450a-a3a8-279c63160f24@6c48a", + "displayName": "1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ba19f30b-e49a-450a-a3a8-279c63160f24", + "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": "ba19f30b-e49a-450a-a3a8-279c63160f24@f9941", + "displayName": "1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1, + "width": 100, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50, + -49, + 0, + 50, + -49, + 0, + -50, + 49, + 0, + 50, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 99, + 100, + 99, + 0, + 1, + 100, + 1 + ], + "nuv": [ + 0, + 0.01, + 1, + 0.01, + 0, + 0.99, + 1, + 0.99 + ], + "minPos": [ + -50, + -49, + 0 + ], + "maxPos": [ + 50, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ba19f30b-e49a-450a-a3a8-279c63160f24@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ba19f30b-e49a-450a-a3a8-279c63160f24@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/10.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/10.png new file mode 100755 index 0000000..8f39837 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/10.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/10.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/10.png.meta new file mode 100644 index 0000000..187cb80 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bf0cc02d-b57f-4ffb-9e4f-7169ef2a408d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bf0cc02d-b57f-4ffb-9e4f-7169ef2a408d@6c48a", + "displayName": "10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bf0cc02d-b57f-4ffb-9e4f-7169ef2a408d", + "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": "bf0cc02d-b57f-4ffb-9e4f-7169ef2a408d@f9941", + "displayName": "10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 9, + "trimY": 14, + "width": 78, + "height": 69, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -39, + -34.5, + 0, + 39, + -34.5, + 0, + -39, + 34.5, + 0, + 39, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 9, + 82, + 87, + 82, + 9, + 13, + 87, + 13 + ], + "nuv": [ + 0.09375, + 0.13541666666666666, + 0.90625, + 0.13541666666666666, + 0.09375, + 0.8541666666666666, + 0.90625, + 0.8541666666666666 + ], + "minPos": [ + -39, + -34.5, + 0 + ], + "maxPos": [ + 39, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bf0cc02d-b57f-4ffb-9e4f-7169ef2a408d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bf0cc02d-b57f-4ffb-9e4f-7169ef2a408d@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/11.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/11.png new file mode 100755 index 0000000..11eb2de Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/11.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/11.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/11.png.meta new file mode 100644 index 0000000..0a0bff3 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "62e82c9e-65a7-4450-9ac1-1d74b37e494a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "62e82c9e-65a7-4450-9ac1-1d74b37e494a@6c48a", + "displayName": "11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "62e82c9e-65a7-4450-9ac1-1d74b37e494a", + "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": "62e82c9e-65a7-4450-9ac1-1d74b37e494a@f9941", + "displayName": "11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 7, + "trimY": 9, + "width": 83, + "height": 78, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -41.5, + -39, + 0, + 41.5, + -39, + 0, + -41.5, + 39, + 0, + 41.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 7, + 87, + 90, + 87, + 7, + 9, + 90, + 9 + ], + "nuv": [ + 0.07291666666666667, + 0.09375, + 0.9375, + 0.09375, + 0.07291666666666667, + 0.90625, + 0.9375, + 0.90625 + ], + "minPos": [ + -41.5, + -39, + 0 + ], + "maxPos": [ + 41.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "62e82c9e-65a7-4450-9ac1-1d74b37e494a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "62e82c9e-65a7-4450-9ac1-1d74b37e494a@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/12.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/12.png new file mode 100755 index 0000000..75c61d7 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/12.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/12.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/12.png.meta new file mode 100644 index 0000000..0084a4e --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/12.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ba90a7a7-f5a6-4ad1-ae0f-a43b432a492a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ba90a7a7-f5a6-4ad1-ae0f-a43b432a492a@6c48a", + "displayName": "12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ba90a7a7-f5a6-4ad1-ae0f-a43b432a492a", + "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": "ba90a7a7-f5a6-4ad1-ae0f-a43b432a492a@f9941", + "displayName": "12", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 7, + "trimY": 7, + "width": 82, + "height": 82, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -41, + -41, + 0, + 41, + -41, + 0, + -41, + 41, + 0, + 41, + 41, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 7, + 89, + 89, + 89, + 7, + 7, + 89, + 7 + ], + "nuv": [ + 0.07291666666666667, + 0.07291666666666667, + 0.9270833333333334, + 0.07291666666666667, + 0.07291666666666667, + 0.9270833333333334, + 0.9270833333333334, + 0.9270833333333334 + ], + "minPos": [ + -41, + -41, + 0 + ], + "maxPos": [ + 41, + 41, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ba90a7a7-f5a6-4ad1-ae0f-a43b432a492a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ba90a7a7-f5a6-4ad1-ae0f-a43b432a492a@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/13.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/13.png new file mode 100755 index 0000000..149fcf8 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/13.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/13.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/13.png.meta new file mode 100644 index 0000000..cbf2396 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/13.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6fae03ec-2912-47dc-9f50-aa6d19f8dbdc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6fae03ec-2912-47dc-9f50-aa6d19f8dbdc@6c48a", + "displayName": "13", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6fae03ec-2912-47dc-9f50-aa6d19f8dbdc", + "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": "6fae03ec-2912-47dc-9f50-aa6d19f8dbdc@f9941", + "displayName": "13", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 4, + "trimY": 13, + "width": 88, + "height": 71, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -44, + -35.5, + 0, + 44, + -35.5, + 0, + -44, + 35.5, + 0, + 44, + 35.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 4, + 83, + 92, + 83, + 4, + 12, + 92, + 12 + ], + "nuv": [ + 0.041666666666666664, + 0.125, + 0.9583333333333334, + 0.125, + 0.041666666666666664, + 0.8645833333333334, + 0.9583333333333334, + 0.8645833333333334 + ], + "minPos": [ + -44, + -35.5, + 0 + ], + "maxPos": [ + 44, + 35.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6fae03ec-2912-47dc-9f50-aa6d19f8dbdc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6fae03ec-2912-47dc-9f50-aa6d19f8dbdc@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/14.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/14.png new file mode 100755 index 0000000..68d24ff Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/14.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/14.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/14.png.meta new file mode 100644 index 0000000..a75140b --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/14.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a756cd4a-74f9-4a4c-8a45-73037a44d815", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a756cd4a-74f9-4a4c-8a45-73037a44d815@6c48a", + "displayName": "14", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a756cd4a-74f9-4a4c-8a45-73037a44d815", + "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": "a756cd4a-74f9-4a4c-8a45-73037a44d815@f9941", + "displayName": "14", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -0.5, + "trimX": 6, + "trimY": 6, + "width": 85, + "height": 85, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -42.5, + -42.5, + 0, + 42.5, + -42.5, + 0, + -42.5, + 42.5, + 0, + 42.5, + 42.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 6, + 90, + 91, + 90, + 6, + 5, + 91, + 5 + ], + "nuv": [ + 0.0625, + 0.052083333333333336, + 0.9479166666666666, + 0.052083333333333336, + 0.0625, + 0.9375, + 0.9479166666666666, + 0.9375 + ], + "minPos": [ + -42.5, + -42.5, + 0 + ], + "maxPos": [ + 42.5, + 42.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a756cd4a-74f9-4a4c-8a45-73037a44d815@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a756cd4a-74f9-4a4c-8a45-73037a44d815@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/15.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/15.png new file mode 100755 index 0000000..ae39189 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/15.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/15.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/15.png.meta new file mode 100644 index 0000000..dc5b258 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/15.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "515336f5-f463-4409-8f51-a68ffbd84b5b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "515336f5-f463-4409-8f51-a68ffbd84b5b@6c48a", + "displayName": "15", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "515336f5-f463-4409-8f51-a68ffbd84b5b", + "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": "515336f5-f463-4409-8f51-a68ffbd84b5b@f9941", + "displayName": "15", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": -0.5, + "trimX": 5, + "trimY": 6, + "width": 85, + "height": 85, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -42.5, + -42.5, + 0, + 42.5, + -42.5, + 0, + -42.5, + 42.5, + 0, + 42.5, + 42.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 5, + 90, + 90, + 90, + 5, + 5, + 90, + 5 + ], + "nuv": [ + 0.052083333333333336, + 0.052083333333333336, + 0.9375, + 0.052083333333333336, + 0.052083333333333336, + 0.9375, + 0.9375, + 0.9375 + ], + "minPos": [ + -42.5, + -42.5, + 0 + ], + "maxPos": [ + 42.5, + 42.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "515336f5-f463-4409-8f51-a68ffbd84b5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "515336f5-f463-4409-8f51-a68ffbd84b5b@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/16.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/16.png new file mode 100755 index 0000000..52e0f67 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/16.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/16.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/16.png.meta new file mode 100644 index 0000000..c0a5c17 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/16.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3708b28d-1492-4222-995b-d83354bd056b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3708b28d-1492-4222-995b-d83354bd056b@6c48a", + "displayName": "16", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3708b28d-1492-4222-995b-d83354bd056b", + "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": "3708b28d-1492-4222-995b-d83354bd056b@f9941", + "displayName": "16", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 94, + "height": 94, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -47, + -47, + 0, + 47, + -47, + 0, + -47, + 47, + 0, + 47, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 95, + 95, + 95, + 1, + 1, + 95, + 1 + ], + "nuv": [ + 0.010416666666666666, + 0.010416666666666666, + 0.9895833333333334, + 0.010416666666666666, + 0.010416666666666666, + 0.9895833333333334, + 0.9895833333333334, + 0.9895833333333334 + ], + "minPos": [ + -47, + -47, + 0 + ], + "maxPos": [ + 47, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3708b28d-1492-4222-995b-d83354bd056b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3708b28d-1492-4222-995b-d83354bd056b@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/2.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/2.png new file mode 100755 index 0000000..7415be5 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/2.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/2.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/2.png.meta new file mode 100644 index 0000000..e1d4418 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2a73dcf0-dc52-4ad8-b7d0-dfe763356015", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2a73dcf0-dc52-4ad8-b7d0-dfe763356015@6c48a", + "displayName": "2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2a73dcf0-dc52-4ad8-b7d0-dfe763356015", + "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": "2a73dcf0-dc52-4ad8-b7d0-dfe763356015@f9941", + "displayName": "2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1, + "width": 100, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50, + -49, + 0, + 50, + -49, + 0, + -50, + 49, + 0, + 50, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 99, + 100, + 99, + 0, + 1, + 100, + 1 + ], + "nuv": [ + 0, + 0.01, + 1, + 0.01, + 0, + 0.99, + 1, + 0.99 + ], + "minPos": [ + -50, + -49, + 0 + ], + "maxPos": [ + 50, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2a73dcf0-dc52-4ad8-b7d0-dfe763356015@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2a73dcf0-dc52-4ad8-b7d0-dfe763356015@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/3.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/3.png new file mode 100755 index 0000000..32069a5 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/3.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/3.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/3.png.meta new file mode 100644 index 0000000..d38bc7d --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7bc0c6fc-42d5-4d9b-93d4-c71f6677bcc2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7bc0c6fc-42d5-4d9b-93d4-c71f6677bcc2@6c48a", + "displayName": "3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7bc0c6fc-42d5-4d9b-93d4-c71f6677bcc2", + "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": "7bc0c6fc-42d5-4d9b-93d4-c71f6677bcc2@f9941", + "displayName": "3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 5, + "trimY": 6, + "width": 84, + "height": 84, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -42, + -42, + 0, + 42, + -42, + 0, + -42, + 42, + 0, + 42, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 5, + 90, + 89, + 90, + 5, + 6, + 89, + 6 + ], + "nuv": [ + 0.052083333333333336, + 0.0625, + 0.9270833333333334, + 0.0625, + 0.052083333333333336, + 0.9375, + 0.9270833333333334, + 0.9375 + ], + "minPos": [ + -42, + -42, + 0 + ], + "maxPos": [ + 42, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7bc0c6fc-42d5-4d9b-93d4-c71f6677bcc2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7bc0c6fc-42d5-4d9b-93d4-c71f6677bcc2@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/4.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/4.png new file mode 100755 index 0000000..2d8450b Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/4.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/4.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/4.png.meta new file mode 100644 index 0000000..8176aa3 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df98cbf3-da48-42cd-932c-d54bc80991c8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df98cbf3-da48-42cd-932c-d54bc80991c8@6c48a", + "displayName": "4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df98cbf3-da48-42cd-932c-d54bc80991c8", + "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": "df98cbf3-da48-42cd-932c-d54bc80991c8@f9941", + "displayName": "4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 6, + "trimY": 6, + "width": 84, + "height": 84, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -42, + -42, + 0, + 42, + -42, + 0, + -42, + 42, + 0, + 42, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 6, + 90, + 90, + 90, + 6, + 6, + 90, + 6 + ], + "nuv": [ + 0.0625, + 0.0625, + 0.9375, + 0.0625, + 0.0625, + 0.9375, + 0.9375, + 0.9375 + ], + "minPos": [ + -42, + -42, + 0 + ], + "maxPos": [ + 42, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df98cbf3-da48-42cd-932c-d54bc80991c8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df98cbf3-da48-42cd-932c-d54bc80991c8@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/5.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/5.png new file mode 100755 index 0000000..8a7bed9 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/5.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/5.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/5.png.meta new file mode 100644 index 0000000..00152f5 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d41cbb66-62a2-45c9-a333-8d2979155181", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d41cbb66-62a2-45c9-a333-8d2979155181@6c48a", + "displayName": "5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d41cbb66-62a2-45c9-a333-8d2979155181", + "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": "d41cbb66-62a2-45c9-a333-8d2979155181@f9941", + "displayName": "5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 1, + "trimX": 8, + "trimY": 5, + "width": 81, + "height": 84, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -40.5, + -42, + 0, + 40.5, + -42, + 0, + -40.5, + 42, + 0, + 40.5, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 8, + 91, + 89, + 91, + 8, + 7, + 89, + 7 + ], + "nuv": [ + 0.08333333333333333, + 0.07291666666666667, + 0.9270833333333334, + 0.07291666666666667, + 0.08333333333333333, + 0.9479166666666666, + 0.9270833333333334, + 0.9479166666666666 + ], + "minPos": [ + -40.5, + -42, + 0 + ], + "maxPos": [ + 40.5, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d41cbb66-62a2-45c9-a333-8d2979155181@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d41cbb66-62a2-45c9-a333-8d2979155181@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/6.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/6.png new file mode 100755 index 0000000..4002b58 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/6.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/6.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/6.png.meta new file mode 100644 index 0000000..c52adb3 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3a09d5ef-c805-40c8-ab49-b6cffe2e14c8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3a09d5ef-c805-40c8-ab49-b6cffe2e14c8@6c48a", + "displayName": "6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3a09d5ef-c805-40c8-ab49-b6cffe2e14c8", + "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": "3a09d5ef-c805-40c8-ab49-b6cffe2e14c8@f9941", + "displayName": "6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 9, + "trimY": 3, + "width": 78, + "height": 90, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -39, + -45, + 0, + 39, + -45, + 0, + -39, + 45, + 0, + 39, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 9, + 93, + 87, + 93, + 9, + 3, + 87, + 3 + ], + "nuv": [ + 0.09375, + 0.03125, + 0.90625, + 0.03125, + 0.09375, + 0.96875, + 0.90625, + 0.96875 + ], + "minPos": [ + -39, + -45, + 0 + ], + "maxPos": [ + 39, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3a09d5ef-c805-40c8-ab49-b6cffe2e14c8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3a09d5ef-c805-40c8-ab49-b6cffe2e14c8@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/7.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/7.png new file mode 100755 index 0000000..9e3d511 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/7.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/7.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/7.png.meta new file mode 100644 index 0000000..8288946 --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "49528165-d217-43a9-bd00-95e1c4edbbbf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "49528165-d217-43a9-bd00-95e1c4edbbbf@6c48a", + "displayName": "7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "49528165-d217-43a9-bd00-95e1c4edbbbf", + "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": "49528165-d217-43a9-bd00-95e1c4edbbbf@f9941", + "displayName": "7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -0.5, + "trimX": 2, + "trimY": 2, + "width": 93, + "height": 93, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -46.5, + -46.5, + 0, + 46.5, + -46.5, + 0, + -46.5, + 46.5, + 0, + 46.5, + 46.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 94, + 95, + 94, + 2, + 1, + 95, + 1 + ], + "nuv": [ + 0.020833333333333332, + 0.010416666666666666, + 0.9895833333333334, + 0.010416666666666666, + 0.020833333333333332, + 0.9791666666666666, + 0.9895833333333334, + 0.9791666666666666 + ], + "minPos": [ + -46.5, + -46.5, + 0 + ], + "maxPos": [ + 46.5, + 46.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "49528165-d217-43a9-bd00-95e1c4edbbbf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "49528165-d217-43a9-bd00-95e1c4edbbbf@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/8.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/8.png new file mode 100755 index 0000000..e75eab1 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/8.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/8.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/8.png.meta new file mode 100644 index 0000000..a73ea6c --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bacd7c11-9639-4760-8718-6c61a0c43602", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bacd7c11-9639-4760-8718-6c61a0c43602@6c48a", + "displayName": "8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bacd7c11-9639-4760-8718-6c61a0c43602", + "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": "bacd7c11-9639-4760-8718-6c61a0c43602@f9941", + "displayName": "8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 96, + "height": 96, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48, + -48, + 0, + 48, + -48, + 0, + -48, + 48, + 0, + 48, + 48, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 96, + 96, + 96, + 0, + 0, + 96, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -48, + -48, + 0 + ], + "maxPos": [ + 48, + 48, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bacd7c11-9639-4760-8718-6c61a0c43602@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bacd7c11-9639-4760-8718-6c61a0c43602@6c48a" + } +} diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/9.png b/assets/Game/阿拉丁神灯-资源/赔付表/support/9.png new file mode 100755 index 0000000..074b397 Binary files /dev/null and b/assets/Game/阿拉丁神灯-资源/赔付表/support/9.png differ diff --git a/assets/Game/阿拉丁神灯-资源/赔付表/support/9.png.meta b/assets/Game/阿拉丁神灯-资源/赔付表/support/9.png.meta new file mode 100644 index 0000000..657669a --- /dev/null +++ b/assets/Game/阿拉丁神灯-资源/赔付表/support/9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b8f24b1-cfde-4374-9768-0c8cb7e75363", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b8f24b1-cfde-4374-9768-0c8cb7e75363@6c48a", + "displayName": "9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b8f24b1-cfde-4374-9768-0c8cb7e75363", + "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": "2b8f24b1-cfde-4374-9768-0c8cb7e75363@f9941", + "displayName": "9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 90, + "height": 90, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -45, + 0, + 45, + -45, + 0, + -45, + 45, + 0, + 45, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 93, + 93, + 93, + 3, + 3, + 93, + 3 + ], + "nuv": [ + 0.03125, + 0.03125, + 0.96875, + 0.03125, + 0.03125, + 0.96875, + 0.96875, + 0.96875 + ], + "minPos": [ + -45, + -45, + 0 + ], + "maxPos": [ + 45, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b8f24b1-cfde-4374-9768-0c8cb7e75363@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b8f24b1-cfde-4374-9768-0c8cb7e75363@6c48a" + } +} diff --git a/assets/Main/Scripts/main/loading.ts b/assets/Main/Scripts/main/loading.ts index a648449..c67569a 100644 --- a/assets/Main/Scripts/main/loading.ts +++ b/assets/Main/Scripts/main/loading.ts @@ -108,7 +108,7 @@ export class Loading extends Component { private async initializeSystem() { this.rb7Logo.active = getIsRB7(); if (DEBUG) { - await getTestToken("yysky", "faketrans-VND"); + await getTestToken("xingxi", "faketrans"); } } diff --git a/assets/Main/Scripts/managers/I18nManager.ts b/assets/Main/Scripts/managers/I18nManager.ts index a6fdde5..d6a4e97 100644 --- a/assets/Main/Scripts/managers/I18nManager.ts +++ b/assets/Main/Scripts/managers/I18nManager.ts @@ -22,7 +22,7 @@ export class I18nManager { // yield/await 风格:谁都可以 await,且只加载一次 ensureI18nSprite(lang: string, name: string): Promise { const key = `${lang}_${name}`; - const path = `i18nSprite/${lang}/${name}/spriteFrame`; + const path = `i18nSprite2/${lang}/${name}/spriteFrame`; const cached = this.spriteFrameCache.get(key); if (cached) return Promise.resolve(cached); @@ -57,22 +57,38 @@ export class I18nManager { // 预加载资源(目前资源列表为空,可根据需要添加) let okSprite = await this.preloadAssets('spriteFrame', [ + 'Buy1', + 'Buy2', + 'Buy4', + 'Buy5', + 'Buy6', + 'Buy7', + 'Buy8', + 'Free', + 'Free1', + 'FREELoading', + 'FREELoading1', + 'FREELoading2', + 'FREESPIN2', + 'FREESPIN4', + 'FREESPIN5', + 'FSFS', 'logo1', - 'Normal', - 'zxksctte1', 'Normal1', + 'Normal2', 'Normal3', 'Normal4', + 'Normal5', 'Normal6', + 'Normal7', 'Normal8', 'Normal9', - 'Buy1', - 'zxksctter7', - 'zxksctter6', - 'Buy5', - 'Buy4', - 'Buy2', - 'FREELoading', + 'Normal10', + 'Normal11', + 'Win1', + 'Win2', + 'Win3', + 'zxksctter', ]); let okAtlas = await this.preloadAssets('atlas', []); let okSpine = await this.preloadAssets('spine', []); @@ -103,7 +119,7 @@ export class I18nManager { let cacheKey = `${this.currentLanguage}_${name}`; if (type === 'spriteFrame') { - let path = `i18nSprite/${this.currentLanguage}/${name}/spriteFrame`; + let path = `i18nSprite2/${this.currentLanguage}/${name}/spriteFrame`; resources.load(path, SpriteFrame, (err, asset) => { if (!err && asset) { this.spriteFrameCache.set(cacheKey, asset); @@ -114,7 +130,7 @@ export class I18nManager { } }); } else if (type === 'atlas') { - let path = `i18nSprite/${this.currentLanguage}/${name}`; + let path = `i18nSprite2/${this.currentLanguage}/${name}`; resources.load(path, SpriteAtlas, (err, atlas) => { if (!err && atlas) { atlas.getSpriteFrames().forEach(frame => { diff --git a/assets/Main/Scripts/managers/UIManager.ts b/assets/Main/Scripts/managers/UIManager.ts index fdd0b4f..869bb59 100644 --- a/assets/Main/Scripts/managers/UIManager.ts +++ b/assets/Main/Scripts/managers/UIManager.ts @@ -7,7 +7,7 @@ const { ccclass, property } = _decorator; @ccclass('UIManager') export class UIManager { private static _instance: UIManager = null; - + static get instance() { if (this._instance) { return this._instance; diff --git a/assets/Main/main.scene b/assets/Main/main.scene index 903cdf8..291186b 100644 --- a/assets/Main/main.scene +++ b/assets/Main/main.scene @@ -190,7 +190,7 @@ "_priority": 0, "_fov": 45, "_fovAxis": 0, - "_orthoHeight": 960, + "_orthoHeight": 623.7150127226464, "_near": 0, "_far": 2000, "_color": { @@ -313,7 +313,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "f7694d66-18c7-469f-bd32-9669d7bbf3b3@f9941", + "__uuid__": "f97832c7-59fd-4dd2-89d8-05f1b47ffa09@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -498,7 +498,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "310b7d07-fe26-4849-8e3e-82b6194f2b08@f9941", + "__uuid__": "6a2d1187-4a13-49e1-9061-44ee952f6aaf@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -710,7 +710,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 625, + "y": 125.09, "z": 0 }, "_lrot": { @@ -748,8 +748,8 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 764, - "height": 488 + "width": 979, + "height": 530 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -779,7 +779,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "380c9b35-d17a-4717-b3bb-24838bb77235@f9941", + "__uuid__": "457b0a55-2c25-4718-9788-4d34677679fb@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -819,7 +819,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 625, + "y": 125.09, "z": 0 }, "_lrot": { @@ -857,8 +857,8 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 800, - "height": 327 + "width": 995, + "height": 405 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -888,7 +888,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "436eef8a-0059-4f71-9e3f-06eced4b40be@f9941", + "__uuid__": "f8018439-cd40-433c-a1b4-b6219abdb230@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -2231,7 +2231,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -864, + "y": -264, "z": 0 }, "_lrot": { @@ -4844,8 +4844,8 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 1080, - "height": 1920 + "width": 1280, + "height": 720 }, "_anchorPoint": { "__type__": "cc.Vec2", diff --git a/assets/resources/i18nSprite2.meta b/assets/resources/i18nSprite2.meta new file mode 100644 index 0000000..78dc745 --- /dev/null +++ b/assets/resources/i18nSprite2.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e97cc90b-ac8b-4908-9d62-6dc0b05c9d24", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/da.meta b/assets/resources/i18nSprite2/da.meta new file mode 100644 index 0000000..3ca07c3 --- /dev/null +++ b/assets/resources/i18nSprite2/da.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "7c4076cc-7c54-4aa7-9b17-d9739cd07e31", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/da/Buy1.png b/assets/resources/i18nSprite2/da/Buy1.png new file mode 100755 index 0000000..d2df082 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Buy1.png differ diff --git a/assets/resources/i18nSprite2/da/Buy1.png.meta b/assets/resources/i18nSprite2/da/Buy1.png.meta new file mode 100644 index 0000000..2f6afb5 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a7a342d1-556c-40d9-969c-4d21f919c5b4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a7a342d1-556c-40d9-969c-4d21f919c5b4@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a7a342d1-556c-40d9-969c-4d21f919c5b4", + "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": "a7a342d1-556c-40d9-969c-4d21f919c5b4@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 883, + "height": 168, + "rawWidth": 883, + "rawHeight": 168, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -441.5, + -84, + 0, + 441.5, + -84, + 0, + -441.5, + 84, + 0, + 441.5, + 84, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 168, + 883, + 168, + 0, + 0, + 883, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -441.5, + -84, + 0 + ], + "maxPos": [ + 441.5, + 84, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a7a342d1-556c-40d9-969c-4d21f919c5b4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a7a342d1-556c-40d9-969c-4d21f919c5b4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Buy2.png b/assets/resources/i18nSprite2/da/Buy2.png new file mode 100755 index 0000000..1bf8875 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Buy2.png differ diff --git a/assets/resources/i18nSprite2/da/Buy2.png.meta b/assets/resources/i18nSprite2/da/Buy2.png.meta new file mode 100644 index 0000000..9ad65fa --- /dev/null +++ b/assets/resources/i18nSprite2/da/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e6df2182-3e88-4197-bcc0-0c4b0f51a01a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e6df2182-3e88-4197-bcc0-0c4b0f51a01a@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e6df2182-3e88-4197-bcc0-0c4b0f51a01a", + "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": "e6df2182-3e88-4197-bcc0-0c4b0f51a01a@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 181, + "height": 88, + "rawWidth": 181, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -90.5, + -44, + 0, + 90.5, + -44, + 0, + -90.5, + 44, + 0, + 90.5, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 181, + 88, + 0, + 0, + 181, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -90.5, + -44, + 0 + ], + "maxPos": [ + 90.5, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e6df2182-3e88-4197-bcc0-0c4b0f51a01a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e6df2182-3e88-4197-bcc0-0c4b0f51a01a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Buy4.png b/assets/resources/i18nSprite2/da/Buy4.png new file mode 100755 index 0000000..21e7546 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Buy4.png differ diff --git a/assets/resources/i18nSprite2/da/Buy4.png.meta b/assets/resources/i18nSprite2/da/Buy4.png.meta new file mode 100644 index 0000000..a31e3d9 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6ad873b4-4a1d-454b-b499-1dffc9d7ae03", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6ad873b4-4a1d-454b-b499-1dffc9d7ae03@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6ad873b4-4a1d-454b-b499-1dffc9d7ae03", + "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": "6ad873b4-4a1d-454b-b499-1dffc9d7ae03@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 230, + "height": 74, + "rawWidth": 230, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -115, + -37, + 0, + 115, + -37, + 0, + -115, + 37, + 0, + 115, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 74, + 230, + 74, + 0, + 0, + 230, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -115, + -37, + 0 + ], + "maxPos": [ + 115, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6ad873b4-4a1d-454b-b499-1dffc9d7ae03@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6ad873b4-4a1d-454b-b499-1dffc9d7ae03@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Buy5.png b/assets/resources/i18nSprite2/da/Buy5.png new file mode 100755 index 0000000..02b49c8 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Buy5.png differ diff --git a/assets/resources/i18nSprite2/da/Buy5.png.meta b/assets/resources/i18nSprite2/da/Buy5.png.meta new file mode 100644 index 0000000..e2d78e5 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "912e6597-066e-42c0-a51e-2039e6d5feba", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "912e6597-066e-42c0-a51e-2039e6d5feba@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "912e6597-066e-42c0-a51e-2039e6d5feba", + "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": "912e6597-066e-42c0-a51e-2039e6d5feba@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 148, + "height": 72, + "rawWidth": 152, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -74, + -36, + 0, + 74, + -36, + 0, + -74, + 36, + 0, + 74, + 36, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 74, + 150, + 74, + 2, + 2, + 150, + 2 + ], + "nuv": [ + 0.013157894736842105, + 0.02631578947368421, + 0.9868421052631579, + 0.02631578947368421, + 0.013157894736842105, + 0.9736842105263158, + 0.9868421052631579, + 0.9736842105263158 + ], + "minPos": [ + -74, + -36, + 0 + ], + "maxPos": [ + 74, + 36, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "912e6597-066e-42c0-a51e-2039e6d5feba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "912e6597-066e-42c0-a51e-2039e6d5feba@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Buy8.png b/assets/resources/i18nSprite2/da/Buy8.png new file mode 100755 index 0000000..536bed9 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Buy8.png differ diff --git a/assets/resources/i18nSprite2/da/Buy8.png.meta b/assets/resources/i18nSprite2/da/Buy8.png.meta new file mode 100644 index 0000000..f9cc69d --- /dev/null +++ b/assets/resources/i18nSprite2/da/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ba1fa146-74e5-4664-82ba-3c0e47493339", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ba1fa146-74e5-4664-82ba-3c0e47493339@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ba1fa146-74e5-4664-82ba-3c0e47493339", + "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": "ba1fa146-74e5-4664-82ba-3c0e47493339@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 295, + "height": 73, + "rawWidth": 295, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -147.5, + -36.5, + 0, + 147.5, + -36.5, + 0, + -147.5, + 36.5, + 0, + 147.5, + 36.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 73, + 295, + 73, + 0, + 0, + 295, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -147.5, + -36.5, + 0 + ], + "maxPos": [ + 147.5, + 36.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ba1fa146-74e5-4664-82ba-3c0e47493339@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ba1fa146-74e5-4664-82ba-3c0e47493339@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FREELoading.png b/assets/resources/i18nSprite2/da/FREELoading.png new file mode 100755 index 0000000..7b07fc8 Binary files /dev/null and b/assets/resources/i18nSprite2/da/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/da/FREELoading.png.meta b/assets/resources/i18nSprite2/da/FREELoading.png.meta new file mode 100644 index 0000000..8be609f --- /dev/null +++ b/assets/resources/i18nSprite2/da/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e0c5dda4-be9a-4bda-8a2d-bad592a6f40d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e0c5dda4-be9a-4bda-8a2d-bad592a6f40d@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e0c5dda4-be9a-4bda-8a2d-bad592a6f40d", + "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": "e0c5dda4-be9a-4bda-8a2d-bad592a6f40d@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 996, + "height": 245, + "rawWidth": 996, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -498, + -122.5, + 0, + 498, + -122.5, + 0, + -498, + 122.5, + 0, + 498, + 122.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 245, + 996, + 245, + 0, + 0, + 996, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -498, + -122.5, + 0 + ], + "maxPos": [ + 498, + 122.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e0c5dda4-be9a-4bda-8a2d-bad592a6f40d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e0c5dda4-be9a-4bda-8a2d-bad592a6f40d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FREELoading1.png b/assets/resources/i18nSprite2/da/FREELoading1.png new file mode 100755 index 0000000..737735f Binary files /dev/null and b/assets/resources/i18nSprite2/da/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/da/FREELoading1.png.meta b/assets/resources/i18nSprite2/da/FREELoading1.png.meta new file mode 100644 index 0000000..dbd0616 --- /dev/null +++ b/assets/resources/i18nSprite2/da/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "03ef8f88-6c8e-4c9f-a68b-844a3558f33f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "03ef8f88-6c8e-4c9f-a68b-844a3558f33f@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "03ef8f88-6c8e-4c9f-a68b-844a3558f33f", + "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": "03ef8f88-6c8e-4c9f-a68b-844a3558f33f@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 955, + "height": 119, + "rawWidth": 959, + "rawHeight": 123, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -477.5, + -59.5, + 0, + 477.5, + -59.5, + 0, + -477.5, + 59.5, + 0, + 477.5, + 59.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 121, + 957, + 121, + 2, + 2, + 957, + 2 + ], + "nuv": [ + 0.0020855057351407717, + 0.016260162601626018, + 0.9979144942648592, + 0.016260162601626018, + 0.0020855057351407717, + 0.983739837398374, + 0.9979144942648592, + 0.983739837398374 + ], + "minPos": [ + -477.5, + -59.5, + 0 + ], + "maxPos": [ + 477.5, + 59.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03ef8f88-6c8e-4c9f-a68b-844a3558f33f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "03ef8f88-6c8e-4c9f-a68b-844a3558f33f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FREELoading2.png b/assets/resources/i18nSprite2/da/FREELoading2.png new file mode 100755 index 0000000..e06f0d1 Binary files /dev/null and b/assets/resources/i18nSprite2/da/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/da/FREELoading2.png.meta b/assets/resources/i18nSprite2/da/FREELoading2.png.meta new file mode 100644 index 0000000..be13e7f --- /dev/null +++ b/assets/resources/i18nSprite2/da/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8b800e61-5d29-4e3a-94fb-60ba38cbefba", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8b800e61-5d29-4e3a-94fb-60ba38cbefba@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8b800e61-5d29-4e3a-94fb-60ba38cbefba", + "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": "8b800e61-5d29-4e3a-94fb-60ba38cbefba@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 260, + "height": 81, + "rawWidth": 260, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -130, + -40.5, + 0, + 130, + -40.5, + 0, + -130, + 40.5, + 0, + 130, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 260, + 81, + 0, + 0, + 260, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -130, + -40.5, + 0 + ], + "maxPos": [ + 130, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8b800e61-5d29-4e3a-94fb-60ba38cbefba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8b800e61-5d29-4e3a-94fb-60ba38cbefba@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FREESPIN2.png b/assets/resources/i18nSprite2/da/FREESPIN2.png new file mode 100755 index 0000000..bf10b63 Binary files /dev/null and b/assets/resources/i18nSprite2/da/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/da/FREESPIN2.png.meta b/assets/resources/i18nSprite2/da/FREESPIN2.png.meta new file mode 100644 index 0000000..841fca5 --- /dev/null +++ b/assets/resources/i18nSprite2/da/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "29ee8667-6e6d-423d-bca2-201868a18a02", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "29ee8667-6e6d-423d-bca2-201868a18a02@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "29ee8667-6e6d-423d-bca2-201868a18a02", + "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": "29ee8667-6e6d-423d-bca2-201868a18a02@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 660, + "height": 75, + "rawWidth": 660, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -330, + -37.5, + 0, + 330, + -37.5, + 0, + -330, + 37.5, + 0, + 330, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 660, + 75, + 0, + 0, + 660, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -330, + -37.5, + 0 + ], + "maxPos": [ + 330, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "29ee8667-6e6d-423d-bca2-201868a18a02@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "29ee8667-6e6d-423d-bca2-201868a18a02@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FREESPIN4.png b/assets/resources/i18nSprite2/da/FREESPIN4.png new file mode 100755 index 0000000..9ae3207 Binary files /dev/null and b/assets/resources/i18nSprite2/da/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/da/FREESPIN4.png.meta b/assets/resources/i18nSprite2/da/FREESPIN4.png.meta new file mode 100644 index 0000000..5e619c8 --- /dev/null +++ b/assets/resources/i18nSprite2/da/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "391d55cc-0351-4714-a2a8-3298d8261e08", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "391d55cc-0351-4714-a2a8-3298d8261e08@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "391d55cc-0351-4714-a2a8-3298d8261e08", + "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": "391d55cc-0351-4714-a2a8-3298d8261e08@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 222, + "height": 77, + "rawWidth": 222, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -111, + -38.5, + 0, + 111, + -38.5, + 0, + -111, + 38.5, + 0, + 111, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 222, + 77, + 0, + 0, + 222, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -111, + -38.5, + 0 + ], + "maxPos": [ + 111, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "391d55cc-0351-4714-a2a8-3298d8261e08@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "391d55cc-0351-4714-a2a8-3298d8261e08@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FREESPIN5.png b/assets/resources/i18nSprite2/da/FREESPIN5.png new file mode 100755 index 0000000..191fd4b Binary files /dev/null and b/assets/resources/i18nSprite2/da/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/da/FREESPIN5.png.meta b/assets/resources/i18nSprite2/da/FREESPIN5.png.meta new file mode 100644 index 0000000..7235046 --- /dev/null +++ b/assets/resources/i18nSprite2/da/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "10f60d6b-0a44-44ae-ac6c-51279b22d080", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "10f60d6b-0a44-44ae-ac6c-51279b22d080@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "10f60d6b-0a44-44ae-ac6c-51279b22d080", + "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": "10f60d6b-0a44-44ae-ac6c-51279b22d080@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1019, + "height": 222, + "rawWidth": 1019, + "rawHeight": 222, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509.5, + -111, + 0, + 509.5, + -111, + 0, + -509.5, + 111, + 0, + 509.5, + 111, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 222, + 1019, + 222, + 0, + 0, + 1019, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509.5, + -111, + 0 + ], + "maxPos": [ + 509.5, + 111, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "10f60d6b-0a44-44ae-ac6c-51279b22d080@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "10f60d6b-0a44-44ae-ac6c-51279b22d080@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/FSFS.png b/assets/resources/i18nSprite2/da/FSFS.png new file mode 100755 index 0000000..cbae124 Binary files /dev/null and b/assets/resources/i18nSprite2/da/FSFS.png differ diff --git a/assets/resources/i18nSprite2/da/FSFS.png.meta b/assets/resources/i18nSprite2/da/FSFS.png.meta new file mode 100644 index 0000000..bf1dd78 --- /dev/null +++ b/assets/resources/i18nSprite2/da/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aa21b8eb-792f-4a9c-816f-43db4de6b245", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aa21b8eb-792f-4a9c-816f-43db4de6b245@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aa21b8eb-792f-4a9c-816f-43db4de6b245", + "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": "aa21b8eb-792f-4a9c-816f-43db4de6b245@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 598, + "height": 147, + "rawWidth": 598, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -299, + -73.5, + 0, + 299, + -73.5, + 0, + -299, + 73.5, + 0, + 299, + 73.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 147, + 598, + 147, + 0, + 0, + 598, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -299, + -73.5, + 0 + ], + "maxPos": [ + 299, + 73.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa21b8eb-792f-4a9c-816f-43db4de6b245@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aa21b8eb-792f-4a9c-816f-43db4de6b245@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Free.png b/assets/resources/i18nSprite2/da/Free.png new file mode 100755 index 0000000..754a0bb Binary files /dev/null and b/assets/resources/i18nSprite2/da/Free.png differ diff --git a/assets/resources/i18nSprite2/da/Free.png.meta b/assets/resources/i18nSprite2/da/Free.png.meta new file mode 100644 index 0000000..657245a --- /dev/null +++ b/assets/resources/i18nSprite2/da/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "863b9c5a-2f54-4b8e-9bee-d56104ec69bb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "863b9c5a-2f54-4b8e-9bee-d56104ec69bb@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "863b9c5a-2f54-4b8e-9bee-d56104ec69bb", + "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": "863b9c5a-2f54-4b8e-9bee-d56104ec69bb@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 528, + "height": 166, + "rawWidth": 528, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -264, + -83, + 0, + 264, + -83, + 0, + -264, + 83, + 0, + 264, + 83, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 166, + 528, + 166, + 0, + 0, + 528, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -264, + -83, + 0 + ], + "maxPos": [ + 264, + 83, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "863b9c5a-2f54-4b8e-9bee-d56104ec69bb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "863b9c5a-2f54-4b8e-9bee-d56104ec69bb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Free1.png b/assets/resources/i18nSprite2/da/Free1.png new file mode 100755 index 0000000..d6ba96f Binary files /dev/null and b/assets/resources/i18nSprite2/da/Free1.png differ diff --git a/assets/resources/i18nSprite2/da/Free1.png.meta b/assets/resources/i18nSprite2/da/Free1.png.meta new file mode 100644 index 0000000..0c86652 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "653dce2e-b8af-432d-8f52-bd9f7a8374c0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "653dce2e-b8af-432d-8f52-bd9f7a8374c0@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "653dce2e-b8af-432d-8f52-bd9f7a8374c0", + "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": "653dce2e-b8af-432d-8f52-bd9f7a8374c0@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 515, + "height": 167, + "rawWidth": 515, + "rawHeight": 167, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -257.5, + -83.5, + 0, + 257.5, + -83.5, + 0, + -257.5, + 83.5, + 0, + 257.5, + 83.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 167, + 515, + 167, + 0, + 0, + 515, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -257.5, + -83.5, + 0 + ], + "maxPos": [ + 257.5, + 83.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "653dce2e-b8af-432d-8f52-bd9f7a8374c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "653dce2e-b8af-432d-8f52-bd9f7a8374c0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal1.png b/assets/resources/i18nSprite2/da/Normal1.png new file mode 100755 index 0000000..4fae99c Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal1.png differ diff --git a/assets/resources/i18nSprite2/da/Normal1.png.meta b/assets/resources/i18nSprite2/da/Normal1.png.meta new file mode 100644 index 0000000..125a998 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ce51f836-28de-4ec3-a954-4735d66dc9d3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ce51f836-28de-4ec3-a954-4735d66dc9d3@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ce51f836-28de-4ec3-a954-4735d66dc9d3", + "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": "ce51f836-28de-4ec3-a954-4735d66dc9d3@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 592, + "height": 43, + "rawWidth": 596, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -296, + -21.5, + 0, + 296, + -21.5, + 0, + -296, + 21.5, + 0, + 296, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 594, + 45, + 2, + 2, + 594, + 2 + ], + "nuv": [ + 0.003355704697986577, + 0.0425531914893617, + 0.9966442953020134, + 0.0425531914893617, + 0.003355704697986577, + 0.9574468085106383, + 0.9966442953020134, + 0.9574468085106383 + ], + "minPos": [ + -296, + -21.5, + 0 + ], + "maxPos": [ + 296, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ce51f836-28de-4ec3-a954-4735d66dc9d3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ce51f836-28de-4ec3-a954-4735d66dc9d3@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal10.png b/assets/resources/i18nSprite2/da/Normal10.png new file mode 100755 index 0000000..729e4cc Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal10.png differ diff --git a/assets/resources/i18nSprite2/da/Normal10.png.meta b/assets/resources/i18nSprite2/da/Normal10.png.meta new file mode 100644 index 0000000..9d52c9a --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bf4bcc20-153a-4aaf-a14d-72fad0a88dd0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bf4bcc20-153a-4aaf-a14d-72fad0a88dd0@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bf4bcc20-153a-4aaf-a14d-72fad0a88dd0", + "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": "bf4bcc20-153a-4aaf-a14d-72fad0a88dd0@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 602, + "height": 43, + "rawWidth": 606, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -301, + -21.5, + 0, + 301, + -21.5, + 0, + -301, + 21.5, + 0, + 301, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 604, + 45, + 2, + 2, + 604, + 2 + ], + "nuv": [ + 0.0033003300330033004, + 0.0425531914893617, + 0.9966996699669967, + 0.0425531914893617, + 0.0033003300330033004, + 0.9574468085106383, + 0.9966996699669967, + 0.9574468085106383 + ], + "minPos": [ + -301, + -21.5, + 0 + ], + "maxPos": [ + 301, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bf4bcc20-153a-4aaf-a14d-72fad0a88dd0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bf4bcc20-153a-4aaf-a14d-72fad0a88dd0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal11.png b/assets/resources/i18nSprite2/da/Normal11.png new file mode 100755 index 0000000..cba9829 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal11.png differ diff --git a/assets/resources/i18nSprite2/da/Normal11.png.meta b/assets/resources/i18nSprite2/da/Normal11.png.meta new file mode 100644 index 0000000..40f7f7d --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7bc6f77f-2d5c-4e2f-9975-373dea9b81e9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7bc6f77f-2d5c-4e2f-9975-373dea9b81e9@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7bc6f77f-2d5c-4e2f-9975-373dea9b81e9", + "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": "7bc6f77f-2d5c-4e2f-9975-373dea9b81e9@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 788, + "height": 78, + "rawWidth": 788, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -394, + -39, + 0, + 394, + -39, + 0, + -394, + 39, + 0, + 394, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 788, + 78, + 0, + 0, + 788, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -394, + -39, + 0 + ], + "maxPos": [ + 394, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7bc6f77f-2d5c-4e2f-9975-373dea9b81e9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7bc6f77f-2d5c-4e2f-9975-373dea9b81e9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal2.png b/assets/resources/i18nSprite2/da/Normal2.png new file mode 100755 index 0000000..1fcd000 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal2.png differ diff --git a/assets/resources/i18nSprite2/da/Normal2.png.meta b/assets/resources/i18nSprite2/da/Normal2.png.meta new file mode 100644 index 0000000..b74265d --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c68cb9c5-a155-4968-92fc-9eddd712ad68", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c68cb9c5-a155-4968-92fc-9eddd712ad68@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c68cb9c5-a155-4968-92fc-9eddd712ad68", + "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": "c68cb9c5-a155-4968-92fc-9eddd712ad68@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 330, + "height": 43, + "rawWidth": 334, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -165, + -21.5, + 0, + 165, + -21.5, + 0, + -165, + 21.5, + 0, + 165, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 332, + 45, + 2, + 2, + 332, + 2 + ], + "nuv": [ + 0.005988023952095809, + 0.0425531914893617, + 0.9940119760479041, + 0.0425531914893617, + 0.005988023952095809, + 0.9574468085106383, + 0.9940119760479041, + 0.9574468085106383 + ], + "minPos": [ + -165, + -21.5, + 0 + ], + "maxPos": [ + 165, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c68cb9c5-a155-4968-92fc-9eddd712ad68@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c68cb9c5-a155-4968-92fc-9eddd712ad68@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal3.png b/assets/resources/i18nSprite2/da/Normal3.png new file mode 100755 index 0000000..3bc3d31 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal3.png differ diff --git a/assets/resources/i18nSprite2/da/Normal3.png.meta b/assets/resources/i18nSprite2/da/Normal3.png.meta new file mode 100644 index 0000000..8a57d71 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8385dae3-a59f-4695-9b8c-eac56c44f03f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8385dae3-a59f-4695-9b8c-eac56c44f03f@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8385dae3-a59f-4695-9b8c-eac56c44f03f", + "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": "8385dae3-a59f-4695-9b8c-eac56c44f03f@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 465, + "height": 43, + "rawWidth": 469, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -232.5, + -21.5, + 0, + 232.5, + -21.5, + 0, + -232.5, + 21.5, + 0, + 232.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 467, + 45, + 2, + 2, + 467, + 2 + ], + "nuv": [ + 0.0042643923240938165, + 0.0425531914893617, + 0.9957356076759062, + 0.0425531914893617, + 0.0042643923240938165, + 0.9574468085106383, + 0.9957356076759062, + 0.9574468085106383 + ], + "minPos": [ + -232.5, + -21.5, + 0 + ], + "maxPos": [ + 232.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8385dae3-a59f-4695-9b8c-eac56c44f03f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8385dae3-a59f-4695-9b8c-eac56c44f03f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal4.png b/assets/resources/i18nSprite2/da/Normal4.png new file mode 100755 index 0000000..810b0b2 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal4.png differ diff --git a/assets/resources/i18nSprite2/da/Normal4.png.meta b/assets/resources/i18nSprite2/da/Normal4.png.meta new file mode 100644 index 0000000..231b7da --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9775f2e0-476d-412f-9084-10ea608bb41b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9775f2e0-476d-412f-9084-10ea608bb41b@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9775f2e0-476d-412f-9084-10ea608bb41b", + "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": "9775f2e0-476d-412f-9084-10ea608bb41b@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 377, + "height": 46, + "rawWidth": 381, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -188.5, + -23, + 0, + 188.5, + -23, + 0, + -188.5, + 23, + 0, + 188.5, + 23, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 48, + 379, + 48, + 2, + 2, + 379, + 2 + ], + "nuv": [ + 0.005249343832020997, + 0.04, + 0.994750656167979, + 0.04, + 0.005249343832020997, + 0.96, + 0.994750656167979, + 0.96 + ], + "minPos": [ + -188.5, + -23, + 0 + ], + "maxPos": [ + 188.5, + 23, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9775f2e0-476d-412f-9084-10ea608bb41b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9775f2e0-476d-412f-9084-10ea608bb41b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal5.png b/assets/resources/i18nSprite2/da/Normal5.png new file mode 100755 index 0000000..2d28469 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal5.png differ diff --git a/assets/resources/i18nSprite2/da/Normal5.png.meta b/assets/resources/i18nSprite2/da/Normal5.png.meta new file mode 100644 index 0000000..e242984 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "730f0844-64b3-4df8-9d68-325f261b9526", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "730f0844-64b3-4df8-9d68-325f261b9526@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "730f0844-64b3-4df8-9d68-325f261b9526", + "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": "730f0844-64b3-4df8-9d68-325f261b9526@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 106, + "height": 28, + "rawWidth": 110, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -53, + -14, + 0, + 53, + -14, + 0, + -53, + 14, + 0, + 53, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 108, + 30, + 2, + 2, + 108, + 2 + ], + "nuv": [ + 0.01818181818181818, + 0.0625, + 0.9818181818181818, + 0.0625, + 0.01818181818181818, + 0.9375, + 0.9818181818181818, + 0.9375 + ], + "minPos": [ + -53, + -14, + 0 + ], + "maxPos": [ + 53, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "730f0844-64b3-4df8-9d68-325f261b9526@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "730f0844-64b3-4df8-9d68-325f261b9526@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal6.png b/assets/resources/i18nSprite2/da/Normal6.png new file mode 100755 index 0000000..4c092ba Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal6.png differ diff --git a/assets/resources/i18nSprite2/da/Normal6.png.meta b/assets/resources/i18nSprite2/da/Normal6.png.meta new file mode 100644 index 0000000..b2f1acb --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "71a490f6-287f-4dcd-9c88-79c3443f4762", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "71a490f6-287f-4dcd-9c88-79c3443f4762@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "71a490f6-287f-4dcd-9c88-79c3443f4762", + "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": "71a490f6-287f-4dcd-9c88-79c3443f4762@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 175, + "height": 43, + "rawWidth": 179, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87.5, + -21.5, + 0, + 87.5, + -21.5, + 0, + -87.5, + 21.5, + 0, + 87.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 177, + 45, + 2, + 2, + 177, + 2 + ], + "nuv": [ + 0.0111731843575419, + 0.0425531914893617, + 0.9888268156424581, + 0.0425531914893617, + 0.0111731843575419, + 0.9574468085106383, + 0.9888268156424581, + 0.9574468085106383 + ], + "minPos": [ + -87.5, + -21.5, + 0 + ], + "maxPos": [ + 87.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "71a490f6-287f-4dcd-9c88-79c3443f4762@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "71a490f6-287f-4dcd-9c88-79c3443f4762@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal7.png b/assets/resources/i18nSprite2/da/Normal7.png new file mode 100755 index 0000000..64d8071 Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal7.png differ diff --git a/assets/resources/i18nSprite2/da/Normal7.png.meta b/assets/resources/i18nSprite2/da/Normal7.png.meta new file mode 100644 index 0000000..973b583 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "42137308-bc01-4617-a018-775eea57c647", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "42137308-bc01-4617-a018-775eea57c647@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "42137308-bc01-4617-a018-775eea57c647", + "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": "42137308-bc01-4617-a018-775eea57c647@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 315, + "height": 43, + "rawWidth": 319, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -157.5, + -21.5, + 0, + 157.5, + -21.5, + 0, + -157.5, + 21.5, + 0, + 157.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 317, + 45, + 2, + 2, + 317, + 2 + ], + "nuv": [ + 0.006269592476489028, + 0.0425531914893617, + 0.9937304075235109, + 0.0425531914893617, + 0.006269592476489028, + 0.9574468085106383, + 0.9937304075235109, + 0.9574468085106383 + ], + "minPos": [ + -157.5, + -21.5, + 0 + ], + "maxPos": [ + 157.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "42137308-bc01-4617-a018-775eea57c647@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "42137308-bc01-4617-a018-775eea57c647@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal8.png b/assets/resources/i18nSprite2/da/Normal8.png new file mode 100755 index 0000000..c5f5a0c Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal8.png differ diff --git a/assets/resources/i18nSprite2/da/Normal8.png.meta b/assets/resources/i18nSprite2/da/Normal8.png.meta new file mode 100644 index 0000000..9ba7807 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "50c3a3fa-ae90-46f6-bf92-669a25b72ff4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "50c3a3fa-ae90-46f6-bf92-669a25b72ff4@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "50c3a3fa-ae90-46f6-bf92-669a25b72ff4", + "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": "50c3a3fa-ae90-46f6-bf92-669a25b72ff4@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1018, + "height": 51, + "rawWidth": 1022, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509, + -25.5, + 0, + 509, + -25.5, + 0, + -509, + 25.5, + 0, + 509, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 1020, + 53, + 2, + 2, + 1020, + 2 + ], + "nuv": [ + 0.0019569471624266144, + 0.03636363636363636, + 0.9980430528375733, + 0.03636363636363636, + 0.0019569471624266144, + 0.9636363636363636, + 0.9980430528375733, + 0.9636363636363636 + ], + "minPos": [ + -509, + -25.5, + 0 + ], + "maxPos": [ + 509, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "50c3a3fa-ae90-46f6-bf92-669a25b72ff4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "50c3a3fa-ae90-46f6-bf92-669a25b72ff4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Normal9.png b/assets/resources/i18nSprite2/da/Normal9.png new file mode 100755 index 0000000..2e86afb Binary files /dev/null and b/assets/resources/i18nSprite2/da/Normal9.png differ diff --git a/assets/resources/i18nSprite2/da/Normal9.png.meta b/assets/resources/i18nSprite2/da/Normal9.png.meta new file mode 100644 index 0000000..f43c754 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90bf761b-5eaf-4f51-be97-8dd9a076413b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90bf761b-5eaf-4f51-be97-8dd9a076413b@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90bf761b-5eaf-4f51-be97-8dd9a076413b", + "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": "90bf761b-5eaf-4f51-be97-8dd9a076413b@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 663, + "height": 75, + "rawWidth": 663, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -331.5, + -37.5, + 0, + 331.5, + -37.5, + 0, + -331.5, + 37.5, + 0, + 331.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 663, + 75, + 0, + 0, + 663, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -331.5, + -37.5, + 0 + ], + "maxPos": [ + 331.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90bf761b-5eaf-4f51-be97-8dd9a076413b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90bf761b-5eaf-4f51-be97-8dd9a076413b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Win1.png b/assets/resources/i18nSprite2/da/Win1.png new file mode 100755 index 0000000..80790ab Binary files /dev/null and b/assets/resources/i18nSprite2/da/Win1.png differ diff --git a/assets/resources/i18nSprite2/da/Win1.png.meta b/assets/resources/i18nSprite2/da/Win1.png.meta new file mode 100644 index 0000000..b118e93 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d2783379-0872-4882-b76f-e0bf22663494", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d2783379-0872-4882-b76f-e0bf22663494@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d2783379-0872-4882-b76f-e0bf22663494", + "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": "d2783379-0872-4882-b76f-e0bf22663494@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1075, + "height": 311, + "rawWidth": 1075, + "rawHeight": 311, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -537.5, + -155.5, + 0, + 537.5, + -155.5, + 0, + -537.5, + 155.5, + 0, + 537.5, + 155.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 311, + 1075, + 311, + 0, + 0, + 1075, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -537.5, + -155.5, + 0 + ], + "maxPos": [ + 537.5, + 155.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d2783379-0872-4882-b76f-e0bf22663494@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d2783379-0872-4882-b76f-e0bf22663494@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Win2.png b/assets/resources/i18nSprite2/da/Win2.png new file mode 100755 index 0000000..27de9bb Binary files /dev/null and b/assets/resources/i18nSprite2/da/Win2.png differ diff --git a/assets/resources/i18nSprite2/da/Win2.png.meta b/assets/resources/i18nSprite2/da/Win2.png.meta new file mode 100644 index 0000000..2d3dba2 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d21c25a4-1c02-448b-8497-0ece95c21019", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d21c25a4-1c02-448b-8497-0ece95c21019@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d21c25a4-1c02-448b-8497-0ece95c21019", + "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": "d21c25a4-1c02-448b-8497-0ece95c21019@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1051, + "height": 284, + "rawWidth": 1051, + "rawHeight": 284, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -525.5, + -142, + 0, + 525.5, + -142, + 0, + -525.5, + 142, + 0, + 525.5, + 142, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 284, + 1051, + 284, + 0, + 0, + 1051, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -525.5, + -142, + 0 + ], + "maxPos": [ + 525.5, + 142, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d21c25a4-1c02-448b-8497-0ece95c21019@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d21c25a4-1c02-448b-8497-0ece95c21019@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/Win3.png b/assets/resources/i18nSprite2/da/Win3.png new file mode 100755 index 0000000..85e412d Binary files /dev/null and b/assets/resources/i18nSprite2/da/Win3.png differ diff --git a/assets/resources/i18nSprite2/da/Win3.png.meta b/assets/resources/i18nSprite2/da/Win3.png.meta new file mode 100644 index 0000000..9ffa0e9 --- /dev/null +++ b/assets/resources/i18nSprite2/da/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e1f8b13a-933d-4085-96b9-83f42f7e0b5b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e1f8b13a-933d-4085-96b9-83f42f7e0b5b@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e1f8b13a-933d-4085-96b9-83f42f7e0b5b", + "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": "e1f8b13a-933d-4085-96b9-83f42f7e0b5b@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 871, + "height": 462, + "rawWidth": 871, + "rawHeight": 462, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -435.5, + -231, + 0, + 435.5, + -231, + 0, + -435.5, + 231, + 0, + 435.5, + 231, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 462, + 871, + 462, + 0, + 0, + 871, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -435.5, + -231, + 0 + ], + "maxPos": [ + 435.5, + 231, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e1f8b13a-933d-4085-96b9-83f42f7e0b5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e1f8b13a-933d-4085-96b9-83f42f7e0b5b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/logo1.png b/assets/resources/i18nSprite2/da/logo1.png new file mode 100755 index 0000000..a83d483 Binary files /dev/null and b/assets/resources/i18nSprite2/da/logo1.png differ diff --git a/assets/resources/i18nSprite2/da/logo1.png.meta b/assets/resources/i18nSprite2/da/logo1.png.meta new file mode 100644 index 0000000..ce2fa5d --- /dev/null +++ b/assets/resources/i18nSprite2/da/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5183ec58-8a21-4585-a33d-a36a34b01364", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5183ec58-8a21-4585-a33d-a36a34b01364@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5183ec58-8a21-4585-a33d-a36a34b01364", + "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": "5183ec58-8a21-4585-a33d-a36a34b01364@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 930, + "height": 229, + "rawWidth": 930, + "rawHeight": 229, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -465, + -114.5, + 0, + 465, + -114.5, + 0, + -465, + 114.5, + 0, + 465, + 114.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 229, + 930, + 229, + 0, + 0, + 930, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -465, + -114.5, + 0 + ], + "maxPos": [ + 465, + 114.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5183ec58-8a21-4585-a33d-a36a34b01364@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5183ec58-8a21-4585-a33d-a36a34b01364@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/da/zxksctter.png b/assets/resources/i18nSprite2/da/zxksctter.png new file mode 100755 index 0000000..606eb14 Binary files /dev/null and b/assets/resources/i18nSprite2/da/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/da/zxksctter.png.meta b/assets/resources/i18nSprite2/da/zxksctter.png.meta new file mode 100644 index 0000000..275c037 --- /dev/null +++ b/assets/resources/i18nSprite2/da/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "94657375-936a-4445-b6f5-15fee5b11b26", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "94657375-936a-4445-b6f5-15fee5b11b26@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "94657375-936a-4445-b6f5-15fee5b11b26", + "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": "94657375-936a-4445-b6f5-15fee5b11b26@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 243, + "height": 123, + "rawWidth": 247, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -121.5, + -61.5, + 0, + 121.5, + -61.5, + 0, + -121.5, + 61.5, + 0, + 121.5, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 245, + 125, + 2, + 2, + 245, + 2 + ], + "nuv": [ + 0.008097165991902834, + 0.015748031496062992, + 0.9919028340080972, + 0.015748031496062992, + 0.008097165991902834, + 0.984251968503937, + 0.9919028340080972, + 0.984251968503937 + ], + "minPos": [ + -121.5, + -61.5, + 0 + ], + "maxPos": [ + 121.5, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "94657375-936a-4445-b6f5-15fee5b11b26@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "94657375-936a-4445-b6f5-15fee5b11b26@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de.meta b/assets/resources/i18nSprite2/de.meta new file mode 100644 index 0000000..99a0fb6 --- /dev/null +++ b/assets/resources/i18nSprite2/de.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "4c1c5dd2-ba41-444f-9935-072bfe33744c", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/de/Buy1.png b/assets/resources/i18nSprite2/de/Buy1.png new file mode 100755 index 0000000..c3adf4e Binary files /dev/null and b/assets/resources/i18nSprite2/de/Buy1.png differ diff --git a/assets/resources/i18nSprite2/de/Buy1.png.meta b/assets/resources/i18nSprite2/de/Buy1.png.meta new file mode 100644 index 0000000..3dad424 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b30221e7-5635-48c3-b12e-232f4b3d9a01", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b30221e7-5635-48c3-b12e-232f4b3d9a01@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b30221e7-5635-48c3-b12e-232f4b3d9a01", + "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": "b30221e7-5635-48c3-b12e-232f4b3d9a01@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 867, + "height": 101, + "rawWidth": 867, + "rawHeight": 101, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -433.5, + -50.5, + 0, + 433.5, + -50.5, + 0, + -433.5, + 50.5, + 0, + 433.5, + 50.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 101, + 867, + 101, + 0, + 0, + 867, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -433.5, + -50.5, + 0 + ], + "maxPos": [ + 433.5, + 50.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b30221e7-5635-48c3-b12e-232f4b3d9a01@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b30221e7-5635-48c3-b12e-232f4b3d9a01@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Buy2.png b/assets/resources/i18nSprite2/de/Buy2.png new file mode 100755 index 0000000..8608f48 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Buy2.png differ diff --git a/assets/resources/i18nSprite2/de/Buy2.png.meta b/assets/resources/i18nSprite2/de/Buy2.png.meta new file mode 100644 index 0000000..de21554 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dd426ca0-9e26-4605-987f-b89dd6a8712c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dd426ca0-9e26-4605-987f-b89dd6a8712c@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dd426ca0-9e26-4605-987f-b89dd6a8712c", + "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": "dd426ca0-9e26-4605-987f-b89dd6a8712c@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 181, + "height": 93, + "rawWidth": 181, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -90.5, + -46.5, + 0, + 90.5, + -46.5, + 0, + -90.5, + 46.5, + 0, + 90.5, + 46.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 93, + 181, + 93, + 0, + 0, + 181, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -90.5, + -46.5, + 0 + ], + "maxPos": [ + 90.5, + 46.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dd426ca0-9e26-4605-987f-b89dd6a8712c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dd426ca0-9e26-4605-987f-b89dd6a8712c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Buy4.png b/assets/resources/i18nSprite2/de/Buy4.png new file mode 100755 index 0000000..f5b8ce3 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Buy4.png differ diff --git a/assets/resources/i18nSprite2/de/Buy4.png.meta b/assets/resources/i18nSprite2/de/Buy4.png.meta new file mode 100644 index 0000000..375c533 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0bcce6f2-04e2-45ec-86cc-6e87ee92ff29", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0bcce6f2-04e2-45ec-86cc-6e87ee92ff29@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0bcce6f2-04e2-45ec-86cc-6e87ee92ff29", + "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": "0bcce6f2-04e2-45ec-86cc-6e87ee92ff29@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 205, + "height": 70, + "rawWidth": 205, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -102.5, + -35, + 0, + 102.5, + -35, + 0, + -102.5, + 35, + 0, + 102.5, + 35, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 70, + 205, + 70, + 0, + 0, + 205, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -102.5, + -35, + 0 + ], + "maxPos": [ + 102.5, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0bcce6f2-04e2-45ec-86cc-6e87ee92ff29@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0bcce6f2-04e2-45ec-86cc-6e87ee92ff29@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Buy5.png b/assets/resources/i18nSprite2/de/Buy5.png new file mode 100755 index 0000000..19a7b3a Binary files /dev/null and b/assets/resources/i18nSprite2/de/Buy5.png differ diff --git a/assets/resources/i18nSprite2/de/Buy5.png.meta b/assets/resources/i18nSprite2/de/Buy5.png.meta new file mode 100644 index 0000000..158bcd2 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8e037746-9385-46f2-aeb1-dbe50a319388", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8e037746-9385-46f2-aeb1-dbe50a319388@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8e037746-9385-46f2-aeb1-dbe50a319388", + "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": "8e037746-9385-46f2-aeb1-dbe50a319388@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 253, + "height": 72, + "rawWidth": 257, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -126.5, + -36, + 0, + 126.5, + -36, + 0, + -126.5, + 36, + 0, + 126.5, + 36, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 74, + 255, + 74, + 2, + 2, + 255, + 2 + ], + "nuv": [ + 0.007782101167315175, + 0.02631578947368421, + 0.9922178988326849, + 0.02631578947368421, + 0.007782101167315175, + 0.9736842105263158, + 0.9922178988326849, + 0.9736842105263158 + ], + "minPos": [ + -126.5, + -36, + 0 + ], + "maxPos": [ + 126.5, + 36, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8e037746-9385-46f2-aeb1-dbe50a319388@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8e037746-9385-46f2-aeb1-dbe50a319388@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Buy8.png b/assets/resources/i18nSprite2/de/Buy8.png new file mode 100755 index 0000000..33f3a1b Binary files /dev/null and b/assets/resources/i18nSprite2/de/Buy8.png differ diff --git a/assets/resources/i18nSprite2/de/Buy8.png.meta b/assets/resources/i18nSprite2/de/Buy8.png.meta new file mode 100644 index 0000000..0ac3216 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f76250cd-bbe0-44ef-aa92-46c544ed8617", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f76250cd-bbe0-44ef-aa92-46c544ed8617@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f76250cd-bbe0-44ef-aa92-46c544ed8617", + "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": "f76250cd-bbe0-44ef-aa92-46c544ed8617@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 337, + "height": 69, + "rawWidth": 337, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -168.5, + -34.5, + 0, + 168.5, + -34.5, + 0, + -168.5, + 34.5, + 0, + 168.5, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 69, + 337, + 69, + 0, + 0, + 337, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -168.5, + -34.5, + 0 + ], + "maxPos": [ + 168.5, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f76250cd-bbe0-44ef-aa92-46c544ed8617@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f76250cd-bbe0-44ef-aa92-46c544ed8617@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FREELoading.png b/assets/resources/i18nSprite2/de/FREELoading.png new file mode 100755 index 0000000..b06df82 Binary files /dev/null and b/assets/resources/i18nSprite2/de/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/de/FREELoading.png.meta b/assets/resources/i18nSprite2/de/FREELoading.png.meta new file mode 100644 index 0000000..b52a3cb --- /dev/null +++ b/assets/resources/i18nSprite2/de/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9fef9a16-9c3a-4d4c-aa70-2f456ce47fba", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9fef9a16-9c3a-4d4c-aa70-2f456ce47fba@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9fef9a16-9c3a-4d4c-aa70-2f456ce47fba", + "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": "9fef9a16-9c3a-4d4c-aa70-2f456ce47fba@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1012, + "height": 290, + "rawWidth": 1012, + "rawHeight": 290, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -506, + -145, + 0, + 506, + -145, + 0, + -506, + 145, + 0, + 506, + 145, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 290, + 1012, + 290, + 0, + 0, + 1012, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -506, + -145, + 0 + ], + "maxPos": [ + 506, + 145, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9fef9a16-9c3a-4d4c-aa70-2f456ce47fba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9fef9a16-9c3a-4d4c-aa70-2f456ce47fba@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FREELoading1.png b/assets/resources/i18nSprite2/de/FREELoading1.png new file mode 100755 index 0000000..e5ae53d Binary files /dev/null and b/assets/resources/i18nSprite2/de/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/de/FREELoading1.png.meta b/assets/resources/i18nSprite2/de/FREELoading1.png.meta new file mode 100644 index 0000000..611bc11 --- /dev/null +++ b/assets/resources/i18nSprite2/de/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a734bd3a-38e1-4ebf-945f-cf75c7924598", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a734bd3a-38e1-4ebf-945f-cf75c7924598@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a734bd3a-38e1-4ebf-945f-cf75c7924598", + "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": "a734bd3a-38e1-4ebf-945f-cf75c7924598@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 918, + "height": 129, + "rawWidth": 922, + "rawHeight": 133, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -459, + -64.5, + 0, + 459, + -64.5, + 0, + -459, + 64.5, + 0, + 459, + 64.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 131, + 920, + 131, + 2, + 2, + 920, + 2 + ], + "nuv": [ + 0.0021691973969631237, + 0.015037593984962405, + 0.9978308026030369, + 0.015037593984962405, + 0.0021691973969631237, + 0.9849624060150376, + 0.9978308026030369, + 0.9849624060150376 + ], + "minPos": [ + -459, + -64.5, + 0 + ], + "maxPos": [ + 459, + 64.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a734bd3a-38e1-4ebf-945f-cf75c7924598@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a734bd3a-38e1-4ebf-945f-cf75c7924598@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FREELoading2.png b/assets/resources/i18nSprite2/de/FREELoading2.png new file mode 100755 index 0000000..dcdf662 Binary files /dev/null and b/assets/resources/i18nSprite2/de/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/de/FREELoading2.png.meta b/assets/resources/i18nSprite2/de/FREELoading2.png.meta new file mode 100644 index 0000000..4848add --- /dev/null +++ b/assets/resources/i18nSprite2/de/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "18d30753-6a25-4ea9-a9b0-4c61bb298fe7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "18d30753-6a25-4ea9-a9b0-4c61bb298fe7@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "18d30753-6a25-4ea9-a9b0-4c61bb298fe7", + "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": "18d30753-6a25-4ea9-a9b0-4c61bb298fe7@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 238, + "height": 78, + "rawWidth": 238, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119, + -39, + 0, + 119, + -39, + 0, + -119, + 39, + 0, + 119, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 238, + 78, + 0, + 0, + 238, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -119, + -39, + 0 + ], + "maxPos": [ + 119, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "18d30753-6a25-4ea9-a9b0-4c61bb298fe7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "18d30753-6a25-4ea9-a9b0-4c61bb298fe7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FREESPIN2.png b/assets/resources/i18nSprite2/de/FREESPIN2.png new file mode 100755 index 0000000..81f3db8 Binary files /dev/null and b/assets/resources/i18nSprite2/de/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/de/FREESPIN2.png.meta b/assets/resources/i18nSprite2/de/FREESPIN2.png.meta new file mode 100644 index 0000000..40d3e76 --- /dev/null +++ b/assets/resources/i18nSprite2/de/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "82e85321-447a-40cb-84e7-ea7d80949afa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "82e85321-447a-40cb-84e7-ea7d80949afa@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "82e85321-447a-40cb-84e7-ea7d80949afa", + "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": "82e85321-447a-40cb-84e7-ea7d80949afa@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 797, + "height": 75, + "rawWidth": 797, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -398.5, + -37.5, + 0, + 398.5, + -37.5, + 0, + -398.5, + 37.5, + 0, + 398.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 797, + 75, + 0, + 0, + 797, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -398.5, + -37.5, + 0 + ], + "maxPos": [ + 398.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "82e85321-447a-40cb-84e7-ea7d80949afa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "82e85321-447a-40cb-84e7-ea7d80949afa@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FREESPIN4.png b/assets/resources/i18nSprite2/de/FREESPIN4.png new file mode 100755 index 0000000..9a00c0b Binary files /dev/null and b/assets/resources/i18nSprite2/de/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/de/FREESPIN4.png.meta b/assets/resources/i18nSprite2/de/FREESPIN4.png.meta new file mode 100644 index 0000000..ba6fecc --- /dev/null +++ b/assets/resources/i18nSprite2/de/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0698ec46-a32a-46b3-b34e-84a720eebd96", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0698ec46-a32a-46b3-b34e-84a720eebd96@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0698ec46-a32a-46b3-b34e-84a720eebd96", + "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": "0698ec46-a32a-46b3-b34e-84a720eebd96@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 334, + "height": 88, + "rawWidth": 334, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -167, + -44, + 0, + 167, + -44, + 0, + -167, + 44, + 0, + 167, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 334, + 88, + 0, + 0, + 334, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -167, + -44, + 0 + ], + "maxPos": [ + 167, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0698ec46-a32a-46b3-b34e-84a720eebd96@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0698ec46-a32a-46b3-b34e-84a720eebd96@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FREESPIN5.png b/assets/resources/i18nSprite2/de/FREESPIN5.png new file mode 100755 index 0000000..6006b16 Binary files /dev/null and b/assets/resources/i18nSprite2/de/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/de/FREESPIN5.png.meta b/assets/resources/i18nSprite2/de/FREESPIN5.png.meta new file mode 100644 index 0000000..37941af --- /dev/null +++ b/assets/resources/i18nSprite2/de/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9857ea09-ce6e-473e-a2c3-ba95e37d3974", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9857ea09-ce6e-473e-a2c3-ba95e37d3974@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9857ea09-ce6e-473e-a2c3-ba95e37d3974", + "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": "9857ea09-ce6e-473e-a2c3-ba95e37d3974@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 996, + "height": 200, + "rawWidth": 996, + "rawHeight": 200, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -498, + -100, + 0, + 498, + -100, + 0, + -498, + 100, + 0, + 498, + 100, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 200, + 996, + 200, + 0, + 0, + 996, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -498, + -100, + 0 + ], + "maxPos": [ + 498, + 100, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9857ea09-ce6e-473e-a2c3-ba95e37d3974@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9857ea09-ce6e-473e-a2c3-ba95e37d3974@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/FSFS.png b/assets/resources/i18nSprite2/de/FSFS.png new file mode 100755 index 0000000..c2151e9 Binary files /dev/null and b/assets/resources/i18nSprite2/de/FSFS.png differ diff --git a/assets/resources/i18nSprite2/de/FSFS.png.meta b/assets/resources/i18nSprite2/de/FSFS.png.meta new file mode 100644 index 0000000..8006160 --- /dev/null +++ b/assets/resources/i18nSprite2/de/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1fdee065-6086-4ac7-a726-e5e2a67a0307", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1fdee065-6086-4ac7-a726-e5e2a67a0307@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1fdee065-6086-4ac7-a726-e5e2a67a0307", + "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": "1fdee065-6086-4ac7-a726-e5e2a67a0307@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 607, + "height": 174, + "rawWidth": 607, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -303.5, + -87, + 0, + 303.5, + -87, + 0, + -303.5, + 87, + 0, + 303.5, + 87, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 174, + 607, + 174, + 0, + 0, + 607, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -303.5, + -87, + 0 + ], + "maxPos": [ + 303.5, + 87, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1fdee065-6086-4ac7-a726-e5e2a67a0307@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1fdee065-6086-4ac7-a726-e5e2a67a0307@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Free.png b/assets/resources/i18nSprite2/de/Free.png new file mode 100755 index 0000000..f56b9d7 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Free.png differ diff --git a/assets/resources/i18nSprite2/de/Free.png.meta b/assets/resources/i18nSprite2/de/Free.png.meta new file mode 100644 index 0000000..63cf255 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "92ea88c1-b068-4a46-b38f-de2381aec42d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "92ea88c1-b068-4a46-b38f-de2381aec42d@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "92ea88c1-b068-4a46-b38f-de2381aec42d", + "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": "92ea88c1-b068-4a46-b38f-de2381aec42d@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 571, + "height": 160, + "rawWidth": 571, + "rawHeight": 160, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -285.5, + -80, + 0, + 285.5, + -80, + 0, + -285.5, + 80, + 0, + 285.5, + 80, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 160, + 571, + 160, + 0, + 0, + 571, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -285.5, + -80, + 0 + ], + "maxPos": [ + 285.5, + 80, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "92ea88c1-b068-4a46-b38f-de2381aec42d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "92ea88c1-b068-4a46-b38f-de2381aec42d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Free1.png b/assets/resources/i18nSprite2/de/Free1.png new file mode 100755 index 0000000..312f0df Binary files /dev/null and b/assets/resources/i18nSprite2/de/Free1.png differ diff --git a/assets/resources/i18nSprite2/de/Free1.png.meta b/assets/resources/i18nSprite2/de/Free1.png.meta new file mode 100644 index 0000000..ed42ce6 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5958de4b-ca37-430a-a846-c11f0d58808b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5958de4b-ca37-430a-a846-c11f0d58808b@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5958de4b-ca37-430a-a846-c11f0d58808b", + "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": "5958de4b-ca37-430a-a846-c11f0d58808b@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 403, + "height": 166, + "rawWidth": 403, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -201.5, + -83, + 0, + 201.5, + -83, + 0, + -201.5, + 83, + 0, + 201.5, + 83, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 166, + 403, + 166, + 0, + 0, + 403, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -201.5, + -83, + 0 + ], + "maxPos": [ + 201.5, + 83, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5958de4b-ca37-430a-a846-c11f0d58808b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5958de4b-ca37-430a-a846-c11f0d58808b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal1.png b/assets/resources/i18nSprite2/de/Normal1.png new file mode 100755 index 0000000..6904890 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal1.png differ diff --git a/assets/resources/i18nSprite2/de/Normal1.png.meta b/assets/resources/i18nSprite2/de/Normal1.png.meta new file mode 100644 index 0000000..d6b5231 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ff7cbc4-d859-45cc-9e63-38ebfa941f07", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ff7cbc4-d859-45cc-9e63-38ebfa941f07@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ff7cbc4-d859-45cc-9e63-38ebfa941f07", + "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": "9ff7cbc4-d859-45cc-9e63-38ebfa941f07@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 815, + "height": 49, + "rawWidth": 819, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -407.5, + -24.5, + 0, + 407.5, + -24.5, + 0, + -407.5, + 24.5, + 0, + 407.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 817, + 51, + 2, + 2, + 817, + 2 + ], + "nuv": [ + 0.002442002442002442, + 0.03773584905660377, + 0.9975579975579976, + 0.03773584905660377, + 0.002442002442002442, + 0.9622641509433962, + 0.9975579975579976, + 0.9622641509433962 + ], + "minPos": [ + -407.5, + -24.5, + 0 + ], + "maxPos": [ + 407.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ff7cbc4-d859-45cc-9e63-38ebfa941f07@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ff7cbc4-d859-45cc-9e63-38ebfa941f07@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal10.png b/assets/resources/i18nSprite2/de/Normal10.png new file mode 100755 index 0000000..0dadddc Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal10.png differ diff --git a/assets/resources/i18nSprite2/de/Normal10.png.meta b/assets/resources/i18nSprite2/de/Normal10.png.meta new file mode 100644 index 0000000..0f94508 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90e91c99-c9fe-49a8-b684-3c5eb1054e74", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90e91c99-c9fe-49a8-b684-3c5eb1054e74@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90e91c99-c9fe-49a8-b684-3c5eb1054e74", + "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": "90e91c99-c9fe-49a8-b684-3c5eb1054e74@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1171, + "height": 43, + "rawWidth": 1175, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -585.5, + -21.5, + 0, + 585.5, + -21.5, + 0, + -585.5, + 21.5, + 0, + 585.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 1173, + 45, + 2, + 2, + 1173, + 2 + ], + "nuv": [ + 0.001702127659574468, + 0.0425531914893617, + 0.9982978723404256, + 0.0425531914893617, + 0.001702127659574468, + 0.9574468085106383, + 0.9982978723404256, + 0.9574468085106383 + ], + "minPos": [ + -585.5, + -21.5, + 0 + ], + "maxPos": [ + 585.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90e91c99-c9fe-49a8-b684-3c5eb1054e74@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90e91c99-c9fe-49a8-b684-3c5eb1054e74@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal11.png b/assets/resources/i18nSprite2/de/Normal11.png new file mode 100755 index 0000000..2ffbdf0 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal11.png differ diff --git a/assets/resources/i18nSprite2/de/Normal11.png.meta b/assets/resources/i18nSprite2/de/Normal11.png.meta new file mode 100644 index 0000000..3b8f2a4 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3e143126-085e-45be-a8b9-70d8b2d62839", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3e143126-085e-45be-a8b9-70d8b2d62839@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3e143126-085e-45be-a8b9-70d8b2d62839", + "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": "3e143126-085e-45be-a8b9-70d8b2d62839@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1302, + "height": 78, + "rawWidth": 1302, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -651, + -39, + 0, + 651, + -39, + 0, + -651, + 39, + 0, + 651, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 1302, + 78, + 0, + 0, + 1302, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -651, + -39, + 0 + ], + "maxPos": [ + 651, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3e143126-085e-45be-a8b9-70d8b2d62839@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3e143126-085e-45be-a8b9-70d8b2d62839@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal2.png b/assets/resources/i18nSprite2/de/Normal2.png new file mode 100755 index 0000000..d8bdd11 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal2.png differ diff --git a/assets/resources/i18nSprite2/de/Normal2.png.meta b/assets/resources/i18nSprite2/de/Normal2.png.meta new file mode 100644 index 0000000..7bace37 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c7948b2a-345e-4cdf-86ce-617cff88eefb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c7948b2a-345e-4cdf-86ce-617cff88eefb@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c7948b2a-345e-4cdf-86ce-617cff88eefb", + "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": "c7948b2a-345e-4cdf-86ce-617cff88eefb@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 253, + "height": 49, + "rawWidth": 257, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -126.5, + -24.5, + 0, + 126.5, + -24.5, + 0, + -126.5, + 24.5, + 0, + 126.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 255, + 51, + 2, + 2, + 255, + 2 + ], + "nuv": [ + 0.007782101167315175, + 0.03773584905660377, + 0.9922178988326849, + 0.03773584905660377, + 0.007782101167315175, + 0.9622641509433962, + 0.9922178988326849, + 0.9622641509433962 + ], + "minPos": [ + -126.5, + -24.5, + 0 + ], + "maxPos": [ + 126.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c7948b2a-345e-4cdf-86ce-617cff88eefb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c7948b2a-345e-4cdf-86ce-617cff88eefb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal3.png b/assets/resources/i18nSprite2/de/Normal3.png new file mode 100755 index 0000000..d4b37dd Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal3.png differ diff --git a/assets/resources/i18nSprite2/de/Normal3.png.meta b/assets/resources/i18nSprite2/de/Normal3.png.meta new file mode 100644 index 0000000..23b996d --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e380a6d7-605a-4676-9231-75eb59af1bf9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e380a6d7-605a-4676-9231-75eb59af1bf9@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e380a6d7-605a-4676-9231-75eb59af1bf9", + "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": "e380a6d7-605a-4676-9231-75eb59af1bf9@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 623, + "height": 43, + "rawWidth": 627, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -311.5, + -21.5, + 0, + 311.5, + -21.5, + 0, + -311.5, + 21.5, + 0, + 311.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 625, + 45, + 2, + 2, + 625, + 2 + ], + "nuv": [ + 0.003189792663476874, + 0.0425531914893617, + 0.9968102073365231, + 0.0425531914893617, + 0.003189792663476874, + 0.9574468085106383, + 0.9968102073365231, + 0.9574468085106383 + ], + "minPos": [ + -311.5, + -21.5, + 0 + ], + "maxPos": [ + 311.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e380a6d7-605a-4676-9231-75eb59af1bf9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e380a6d7-605a-4676-9231-75eb59af1bf9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal4.png b/assets/resources/i18nSprite2/de/Normal4.png new file mode 100755 index 0000000..59b30cf Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal4.png differ diff --git a/assets/resources/i18nSprite2/de/Normal4.png.meta b/assets/resources/i18nSprite2/de/Normal4.png.meta new file mode 100644 index 0000000..35537e0 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "26062250-ee8a-4d74-9905-f5e03e141d81", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "26062250-ee8a-4d74-9905-f5e03e141d81@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "26062250-ee8a-4d74-9905-f5e03e141d81", + "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": "26062250-ee8a-4d74-9905-f5e03e141d81@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 566, + "height": 43, + "rawWidth": 570, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -283, + -21.5, + 0, + 283, + -21.5, + 0, + -283, + 21.5, + 0, + 283, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 568, + 45, + 2, + 2, + 568, + 2 + ], + "nuv": [ + 0.0035087719298245615, + 0.0425531914893617, + 0.9964912280701754, + 0.0425531914893617, + 0.0035087719298245615, + 0.9574468085106383, + 0.9964912280701754, + 0.9574468085106383 + ], + "minPos": [ + -283, + -21.5, + 0 + ], + "maxPos": [ + 283, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "26062250-ee8a-4d74-9905-f5e03e141d81@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "26062250-ee8a-4d74-9905-f5e03e141d81@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal5.png b/assets/resources/i18nSprite2/de/Normal5.png new file mode 100755 index 0000000..f42efe4 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal5.png differ diff --git a/assets/resources/i18nSprite2/de/Normal5.png.meta b/assets/resources/i18nSprite2/de/Normal5.png.meta new file mode 100644 index 0000000..5eec724 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1c365c89-8575-40c5-9004-33466ec2853c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1c365c89-8575-40c5-9004-33466ec2853c@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1c365c89-8575-40c5-9004-33466ec2853c", + "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": "1c365c89-8575-40c5-9004-33466ec2853c@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 96, + "height": 28, + "rawWidth": 100, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48, + -14, + 0, + 48, + -14, + 0, + -48, + 14, + 0, + 48, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 98, + 30, + 2, + 2, + 98, + 2 + ], + "nuv": [ + 0.02, + 0.0625, + 0.98, + 0.0625, + 0.02, + 0.9375, + 0.98, + 0.9375 + ], + "minPos": [ + -48, + -14, + 0 + ], + "maxPos": [ + 48, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1c365c89-8575-40c5-9004-33466ec2853c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1c365c89-8575-40c5-9004-33466ec2853c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal6.png b/assets/resources/i18nSprite2/de/Normal6.png new file mode 100755 index 0000000..ba4dec4 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal6.png differ diff --git a/assets/resources/i18nSprite2/de/Normal6.png.meta b/assets/resources/i18nSprite2/de/Normal6.png.meta new file mode 100644 index 0000000..2799749 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a856341d-5cb1-4cf9-be67-529cffb897f9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a856341d-5cb1-4cf9-be67-529cffb897f9@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a856341d-5cb1-4cf9-be67-529cffb897f9", + "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": "a856341d-5cb1-4cf9-be67-529cffb897f9@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 167, + "height": 43, + "rawWidth": 171, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -83.5, + -21.5, + 0, + 83.5, + -21.5, + 0, + -83.5, + 21.5, + 0, + 83.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 169, + 45, + 2, + 2, + 169, + 2 + ], + "nuv": [ + 0.011695906432748537, + 0.0425531914893617, + 0.9883040935672515, + 0.0425531914893617, + 0.011695906432748537, + 0.9574468085106383, + 0.9883040935672515, + 0.9574468085106383 + ], + "minPos": [ + -83.5, + -21.5, + 0 + ], + "maxPos": [ + 83.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a856341d-5cb1-4cf9-be67-529cffb897f9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a856341d-5cb1-4cf9-be67-529cffb897f9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal7.png b/assets/resources/i18nSprite2/de/Normal7.png new file mode 100755 index 0000000..56f0f2d Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal7.png differ diff --git a/assets/resources/i18nSprite2/de/Normal7.png.meta b/assets/resources/i18nSprite2/de/Normal7.png.meta new file mode 100644 index 0000000..15c051d --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f52be614-0710-4317-b2f2-a2883f85160f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f52be614-0710-4317-b2f2-a2883f85160f@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f52be614-0710-4317-b2f2-a2883f85160f", + "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": "f52be614-0710-4317-b2f2-a2883f85160f@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 368, + "height": 43, + "rawWidth": 372, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -184, + -21.5, + 0, + 184, + -21.5, + 0, + -184, + 21.5, + 0, + 184, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 370, + 45, + 2, + 2, + 370, + 2 + ], + "nuv": [ + 0.005376344086021506, + 0.0425531914893617, + 0.9946236559139785, + 0.0425531914893617, + 0.005376344086021506, + 0.9574468085106383, + 0.9946236559139785, + 0.9574468085106383 + ], + "minPos": [ + -184, + -21.5, + 0 + ], + "maxPos": [ + 184, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f52be614-0710-4317-b2f2-a2883f85160f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f52be614-0710-4317-b2f2-a2883f85160f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal8.png b/assets/resources/i18nSprite2/de/Normal8.png new file mode 100755 index 0000000..1e1c3dc Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal8.png differ diff --git a/assets/resources/i18nSprite2/de/Normal8.png.meta b/assets/resources/i18nSprite2/de/Normal8.png.meta new file mode 100644 index 0000000..be0793a --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "91d453a4-2b2c-4285-85c0-6e816187ddd8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "91d453a4-2b2c-4285-85c0-6e816187ddd8@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "91d453a4-2b2c-4285-85c0-6e816187ddd8", + "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": "91d453a4-2b2c-4285-85c0-6e816187ddd8@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1024, + "height": 49, + "rawWidth": 1028, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -512, + -24.5, + 0, + 512, + -24.5, + 0, + -512, + 24.5, + 0, + 512, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 1026, + 51, + 2, + 2, + 1026, + 2 + ], + "nuv": [ + 0.0019455252918287938, + 0.03773584905660377, + 0.9980544747081712, + 0.03773584905660377, + 0.0019455252918287938, + 0.9622641509433962, + 0.9980544747081712, + 0.9622641509433962 + ], + "minPos": [ + -512, + -24.5, + 0 + ], + "maxPos": [ + 512, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "91d453a4-2b2c-4285-85c0-6e816187ddd8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "91d453a4-2b2c-4285-85c0-6e816187ddd8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Normal9.png b/assets/resources/i18nSprite2/de/Normal9.png new file mode 100755 index 0000000..c7db4e6 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Normal9.png differ diff --git a/assets/resources/i18nSprite2/de/Normal9.png.meta b/assets/resources/i18nSprite2/de/Normal9.png.meta new file mode 100644 index 0000000..d594577 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "22d2e5b6-cdd9-44bd-9014-e97bcf603163", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "22d2e5b6-cdd9-44bd-9014-e97bcf603163@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "22d2e5b6-cdd9-44bd-9014-e97bcf603163", + "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": "22d2e5b6-cdd9-44bd-9014-e97bcf603163@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 576, + "height": 75, + "rawWidth": 576, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -288, + -37.5, + 0, + 288, + -37.5, + 0, + -288, + 37.5, + 0, + 288, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 576, + 75, + 0, + 0, + 576, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -288, + -37.5, + 0 + ], + "maxPos": [ + 288, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "22d2e5b6-cdd9-44bd-9014-e97bcf603163@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "22d2e5b6-cdd9-44bd-9014-e97bcf603163@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Win1.png b/assets/resources/i18nSprite2/de/Win1.png new file mode 100755 index 0000000..e1c782b Binary files /dev/null and b/assets/resources/i18nSprite2/de/Win1.png differ diff --git a/assets/resources/i18nSprite2/de/Win1.png.meta b/assets/resources/i18nSprite2/de/Win1.png.meta new file mode 100644 index 0000000..26279b4 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4af9a5e7-ffc6-4f07-a6d5-5b0bc5b0d53c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4af9a5e7-ffc6-4f07-a6d5-5b0bc5b0d53c@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4af9a5e7-ffc6-4f07-a6d5-5b0bc5b0d53c", + "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": "4af9a5e7-ffc6-4f07-a6d5-5b0bc5b0d53c@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 996, + "height": 261, + "rawWidth": 996, + "rawHeight": 261, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -498, + -130.5, + 0, + 498, + -130.5, + 0, + -498, + 130.5, + 0, + 498, + 130.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 261, + 996, + 261, + 0, + 0, + 996, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -498, + -130.5, + 0 + ], + "maxPos": [ + 498, + 130.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4af9a5e7-ffc6-4f07-a6d5-5b0bc5b0d53c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4af9a5e7-ffc6-4f07-a6d5-5b0bc5b0d53c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Win2.png b/assets/resources/i18nSprite2/de/Win2.png new file mode 100755 index 0000000..dcb8011 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Win2.png differ diff --git a/assets/resources/i18nSprite2/de/Win2.png.meta b/assets/resources/i18nSprite2/de/Win2.png.meta new file mode 100644 index 0000000..b6fc3c6 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5891cd4e-df74-4bf0-a11b-261ece47e09b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5891cd4e-df74-4bf0-a11b-261ece47e09b@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5891cd4e-df74-4bf0-a11b-261ece47e09b", + "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": "5891cd4e-df74-4bf0-a11b-261ece47e09b@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1016, + "height": 281, + "rawWidth": 1016, + "rawHeight": 281, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508, + -140.5, + 0, + 508, + -140.5, + 0, + -508, + 140.5, + 0, + 508, + 140.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 281, + 1016, + 281, + 0, + 0, + 1016, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508, + -140.5, + 0 + ], + "maxPos": [ + 508, + 140.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5891cd4e-df74-4bf0-a11b-261ece47e09b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5891cd4e-df74-4bf0-a11b-261ece47e09b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/Win3.png b/assets/resources/i18nSprite2/de/Win3.png new file mode 100755 index 0000000..e0696a7 Binary files /dev/null and b/assets/resources/i18nSprite2/de/Win3.png differ diff --git a/assets/resources/i18nSprite2/de/Win3.png.meta b/assets/resources/i18nSprite2/de/Win3.png.meta new file mode 100644 index 0000000..2367b21 --- /dev/null +++ b/assets/resources/i18nSprite2/de/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "65587963-23a5-4d8a-97ec-bc726402181e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "65587963-23a5-4d8a-97ec-bc726402181e@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "65587963-23a5-4d8a-97ec-bc726402181e", + "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": "65587963-23a5-4d8a-97ec-bc726402181e@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 956, + "height": 520, + "rawWidth": 956, + "rawHeight": 520, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -478, + -260, + 0, + 478, + -260, + 0, + -478, + 260, + 0, + 478, + 260, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 520, + 956, + 520, + 0, + 0, + 956, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -478, + -260, + 0 + ], + "maxPos": [ + 478, + 260, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "65587963-23a5-4d8a-97ec-bc726402181e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "65587963-23a5-4d8a-97ec-bc726402181e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/logo1.png b/assets/resources/i18nSprite2/de/logo1.png new file mode 100755 index 0000000..c79d698 Binary files /dev/null and b/assets/resources/i18nSprite2/de/logo1.png differ diff --git a/assets/resources/i18nSprite2/de/logo1.png.meta b/assets/resources/i18nSprite2/de/logo1.png.meta new file mode 100644 index 0000000..ee210a3 --- /dev/null +++ b/assets/resources/i18nSprite2/de/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "707ccf08-bc83-4e58-a6e5-df08eed2d6bb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "707ccf08-bc83-4e58-a6e5-df08eed2d6bb@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "707ccf08-bc83-4e58-a6e5-df08eed2d6bb", + "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": "707ccf08-bc83-4e58-a6e5-df08eed2d6bb@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1001, + "height": 232, + "rawWidth": 1001, + "rawHeight": 232, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -500.5, + -116, + 0, + 500.5, + -116, + 0, + -500.5, + 116, + 0, + 500.5, + 116, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 232, + 1001, + 232, + 0, + 0, + 1001, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -500.5, + -116, + 0 + ], + "maxPos": [ + 500.5, + 116, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "707ccf08-bc83-4e58-a6e5-df08eed2d6bb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "707ccf08-bc83-4e58-a6e5-df08eed2d6bb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/de/zxksctter.png b/assets/resources/i18nSprite2/de/zxksctter.png new file mode 100755 index 0000000..c77f15e Binary files /dev/null and b/assets/resources/i18nSprite2/de/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/de/zxksctter.png.meta b/assets/resources/i18nSprite2/de/zxksctter.png.meta new file mode 100644 index 0000000..4eeaf6f --- /dev/null +++ b/assets/resources/i18nSprite2/de/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1cf5a4a8-b539-4a4b-a212-aa813b353ad1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1cf5a4a8-b539-4a4b-a212-aa813b353ad1@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1cf5a4a8-b539-4a4b-a212-aa813b353ad1", + "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": "1cf5a4a8-b539-4a4b-a212-aa813b353ad1@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 242, + "height": 123, + "rawWidth": 246, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -121, + -61.5, + 0, + 121, + -61.5, + 0, + -121, + 61.5, + 0, + 121, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 244, + 125, + 2, + 2, + 244, + 2 + ], + "nuv": [ + 0.008130081300813009, + 0.015748031496062992, + 0.991869918699187, + 0.015748031496062992, + 0.008130081300813009, + 0.984251968503937, + 0.991869918699187, + 0.984251968503937 + ], + "minPos": [ + -121, + -61.5, + 0 + ], + "maxPos": [ + 121, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1cf5a4a8-b539-4a4b-a212-aa813b353ad1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1cf5a4a8-b539-4a4b-a212-aa813b353ad1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en.meta b/assets/resources/i18nSprite2/en.meta new file mode 100644 index 0000000..bc19f1a --- /dev/null +++ b/assets/resources/i18nSprite2/en.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "09833d68-f9bb-40ff-9aed-074d05538dbd", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/en/Buy1.png b/assets/resources/i18nSprite2/en/Buy1.png new file mode 100755 index 0000000..7049cd6 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy1.png differ diff --git a/assets/resources/i18nSprite2/en/Buy1.png.meta b/assets/resources/i18nSprite2/en/Buy1.png.meta new file mode 100644 index 0000000..e80eb14 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6ba3c3a8-fd42-4079-9a20-9c5c8101f3da", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6ba3c3a8-fd42-4079-9a20-9c5c8101f3da@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6ba3c3a8-fd42-4079-9a20-9c5c8101f3da", + "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": "6ba3c3a8-fd42-4079-9a20-9c5c8101f3da@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 861, + "height": 169, + "rawWidth": 861, + "rawHeight": 169, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -430.5, + -84.5, + 0, + 430.5, + -84.5, + 0, + -430.5, + 84.5, + 0, + 430.5, + 84.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 169, + 861, + 169, + 0, + 0, + 861, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -430.5, + -84.5, + 0 + ], + "maxPos": [ + 430.5, + 84.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6ba3c3a8-fd42-4079-9a20-9c5c8101f3da@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6ba3c3a8-fd42-4079-9a20-9c5c8101f3da@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Buy2.png b/assets/resources/i18nSprite2/en/Buy2.png new file mode 100755 index 0000000..e186a79 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy2.png differ diff --git a/assets/resources/i18nSprite2/en/Buy2.png.meta b/assets/resources/i18nSprite2/en/Buy2.png.meta new file mode 100644 index 0000000..d104514 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "95b5bbad-ea24-440f-8665-284c1c3efc1b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "95b5bbad-ea24-440f-8665-284c1c3efc1b@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "95b5bbad-ea24-440f-8665-284c1c3efc1b", + "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": "95b5bbad-ea24-440f-8665-284c1c3efc1b@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 197, + "height": 87, + "rawWidth": 197, + "rawHeight": 87, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -98.5, + -43.5, + 0, + 98.5, + -43.5, + 0, + -98.5, + 43.5, + 0, + 98.5, + 43.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 87, + 197, + 87, + 0, + 0, + 197, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -98.5, + -43.5, + 0 + ], + "maxPos": [ + 98.5, + 43.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "95b5bbad-ea24-440f-8665-284c1c3efc1b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "95b5bbad-ea24-440f-8665-284c1c3efc1b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Buy4.png b/assets/resources/i18nSprite2/en/Buy4.png new file mode 100755 index 0000000..72dd709 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy4.png differ diff --git a/assets/resources/i18nSprite2/en/Buy4.png.meta b/assets/resources/i18nSprite2/en/Buy4.png.meta new file mode 100644 index 0000000..c8a082a --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c53032b2-211c-4211-bce8-a915d27bddc6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c53032b2-211c-4211-bce8-a915d27bddc6@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c53032b2-211c-4211-bce8-a915d27bddc6", + "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": "c53032b2-211c-4211-bce8-a915d27bddc6@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 214, + "height": 80, + "rawWidth": 214, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -107, + -40, + 0, + 107, + -40, + 0, + -107, + 40, + 0, + 107, + 40, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 80, + 214, + 80, + 0, + 0, + 214, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -107, + -40, + 0 + ], + "maxPos": [ + 107, + 40, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c53032b2-211c-4211-bce8-a915d27bddc6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c53032b2-211c-4211-bce8-a915d27bddc6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Buy5.png b/assets/resources/i18nSprite2/en/Buy5.png new file mode 100755 index 0000000..8a0eae5 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy5.png differ diff --git a/assets/resources/i18nSprite2/en/Buy5.png.meta b/assets/resources/i18nSprite2/en/Buy5.png.meta new file mode 100644 index 0000000..85fbd2a --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "63d9516f-0df2-49cb-a133-61f1db6098c8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "63d9516f-0df2-49cb-a133-61f1db6098c8@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "63d9516f-0df2-49cb-a133-61f1db6098c8", + "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": "63d9516f-0df2-49cb-a133-61f1db6098c8@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 158, + "height": 59, + "rawWidth": 162, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -79, + -29.5, + 0, + 79, + -29.5, + 0, + -79, + 29.5, + 0, + 79, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 160, + 61, + 2, + 2, + 160, + 2 + ], + "nuv": [ + 0.012345679012345678, + 0.031746031746031744, + 0.9876543209876543, + 0.031746031746031744, + 0.012345679012345678, + 0.9682539682539683, + 0.9876543209876543, + 0.9682539682539683 + ], + "minPos": [ + -79, + -29.5, + 0 + ], + "maxPos": [ + 79, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "63d9516f-0df2-49cb-a133-61f1db6098c8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "63d9516f-0df2-49cb-a133-61f1db6098c8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Buy6.png b/assets/resources/i18nSprite2/en/Buy6.png new file mode 100755 index 0000000..f0c38c8 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy6.png differ diff --git a/assets/resources/i18nSprite2/en/Buy6.png.meta b/assets/resources/i18nSprite2/en/Buy6.png.meta new file mode 100644 index 0000000..e338d24 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0@6c48a", + "displayName": "Buy6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0", + "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": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0@f9941", + "displayName": "Buy6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 54, + "height": 22, + "rawWidth": 54, + "rawHeight": 22, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -27, + -11, + 0, + 27, + -11, + 0, + -27, + 11, + 0, + 27, + 11, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 22, + 54, + 22, + 0, + 0, + 54, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -27, + -11, + 0 + ], + "maxPos": [ + 27, + 11, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b4fba346-5296-4865-ac2a-ca2d9a9a6ad0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Buy7.png b/assets/resources/i18nSprite2/en/Buy7.png new file mode 100755 index 0000000..117aa55 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy7.png differ diff --git a/assets/resources/i18nSprite2/en/Buy7.png.meta b/assets/resources/i18nSprite2/en/Buy7.png.meta new file mode 100644 index 0000000..3b8912b --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "54f8ca3f-1f35-4e87-88f2-6865bf919da9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "54f8ca3f-1f35-4e87-88f2-6865bf919da9@6c48a", + "displayName": "Buy7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "54f8ca3f-1f35-4e87-88f2-6865bf919da9", + "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": "54f8ca3f-1f35-4e87-88f2-6865bf919da9@f9941", + "displayName": "Buy7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 41, + "height": 23, + "rawWidth": 41, + "rawHeight": 23, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -20.5, + -11.5, + 0, + 20.5, + -11.5, + 0, + -20.5, + 11.5, + 0, + 20.5, + 11.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 23, + 41, + 23, + 0, + 0, + 41, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -20.5, + -11.5, + 0 + ], + "maxPos": [ + 20.5, + 11.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "54f8ca3f-1f35-4e87-88f2-6865bf919da9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "54f8ca3f-1f35-4e87-88f2-6865bf919da9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Buy8.png b/assets/resources/i18nSprite2/en/Buy8.png new file mode 100755 index 0000000..25c54c9 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Buy8.png differ diff --git a/assets/resources/i18nSprite2/en/Buy8.png.meta b/assets/resources/i18nSprite2/en/Buy8.png.meta new file mode 100644 index 0000000..a6e8f87 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6b7b2a06-d0c2-4afc-9741-ff6842c5f165", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6b7b2a06-d0c2-4afc-9741-ff6842c5f165@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6b7b2a06-d0c2-4afc-9741-ff6842c5f165", + "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": "6b7b2a06-d0c2-4afc-9741-ff6842c5f165@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 236, + "height": 76, + "rawWidth": 236, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -118, + -38, + 0, + 118, + -38, + 0, + -118, + 38, + 0, + 118, + 38, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 76, + 236, + 76, + 0, + 0, + 236, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -118, + -38, + 0 + ], + "maxPos": [ + 118, + 38, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6b7b2a06-d0c2-4afc-9741-ff6842c5f165@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6b7b2a06-d0c2-4afc-9741-ff6842c5f165@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FREELoading.png b/assets/resources/i18nSprite2/en/FREELoading.png new file mode 100755 index 0000000..bb4bf4c Binary files /dev/null and b/assets/resources/i18nSprite2/en/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/en/FREELoading.png.meta b/assets/resources/i18nSprite2/en/FREELoading.png.meta new file mode 100644 index 0000000..5113123 --- /dev/null +++ b/assets/resources/i18nSprite2/en/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fce6a081-2d88-44fc-8679-c7b10ec97e08", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fce6a081-2d88-44fc-8679-c7b10ec97e08@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fce6a081-2d88-44fc-8679-c7b10ec97e08", + "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": "fce6a081-2d88-44fc-8679-c7b10ec97e08@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 985, + "height": 322, + "rawWidth": 985, + "rawHeight": 322, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -492.5, + -161, + 0, + 492.5, + -161, + 0, + -492.5, + 161, + 0, + 492.5, + 161, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 322, + 985, + 322, + 0, + 0, + 985, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -492.5, + -161, + 0 + ], + "maxPos": [ + 492.5, + 161, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fce6a081-2d88-44fc-8679-c7b10ec97e08@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fce6a081-2d88-44fc-8679-c7b10ec97e08@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FREELoading1.png b/assets/resources/i18nSprite2/en/FREELoading1.png new file mode 100755 index 0000000..f5c3220 Binary files /dev/null and b/assets/resources/i18nSprite2/en/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/en/FREELoading1.png.meta b/assets/resources/i18nSprite2/en/FREELoading1.png.meta new file mode 100644 index 0000000..834f5c5 --- /dev/null +++ b/assets/resources/i18nSprite2/en/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fd18b420-d470-4bb3-b928-2bac9754c850", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fd18b420-d470-4bb3-b928-2bac9754c850@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fd18b420-d470-4bb3-b928-2bac9754c850", + "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": "fd18b420-d470-4bb3-b928-2bac9754c850@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 956, + "height": 130, + "rawWidth": 960, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -478, + -65, + 0, + 478, + -65, + 0, + -478, + 65, + 0, + 478, + 65, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 132, + 958, + 132, + 2, + 2, + 958, + 2 + ], + "nuv": [ + 0.0020833333333333333, + 0.014925373134328358, + 0.9979166666666667, + 0.014925373134328358, + 0.0020833333333333333, + 0.9850746268656716, + 0.9979166666666667, + 0.9850746268656716 + ], + "minPos": [ + -478, + -65, + 0 + ], + "maxPos": [ + 478, + 65, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fd18b420-d470-4bb3-b928-2bac9754c850@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fd18b420-d470-4bb3-b928-2bac9754c850@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FREELoading2.png b/assets/resources/i18nSprite2/en/FREELoading2.png new file mode 100755 index 0000000..72dd709 Binary files /dev/null and b/assets/resources/i18nSprite2/en/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/en/FREELoading2.png.meta b/assets/resources/i18nSprite2/en/FREELoading2.png.meta new file mode 100644 index 0000000..188e021 --- /dev/null +++ b/assets/resources/i18nSprite2/en/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3f3d067b-5808-44bb-bc3f-b914d1464692", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3f3d067b-5808-44bb-bc3f-b914d1464692@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3f3d067b-5808-44bb-bc3f-b914d1464692", + "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": "3f3d067b-5808-44bb-bc3f-b914d1464692@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 214, + "height": 80, + "rawWidth": 214, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -107, + -40, + 0, + 107, + -40, + 0, + -107, + 40, + 0, + 107, + 40, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 80, + 214, + 80, + 0, + 0, + 214, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -107, + -40, + 0 + ], + "maxPos": [ + 107, + 40, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3f3d067b-5808-44bb-bc3f-b914d1464692@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3f3d067b-5808-44bb-bc3f-b914d1464692@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FREESPIN2.png b/assets/resources/i18nSprite2/en/FREESPIN2.png new file mode 100755 index 0000000..105cd6b Binary files /dev/null and b/assets/resources/i18nSprite2/en/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/en/FREESPIN2.png.meta b/assets/resources/i18nSprite2/en/FREESPIN2.png.meta new file mode 100644 index 0000000..6bb6cbc --- /dev/null +++ b/assets/resources/i18nSprite2/en/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ffdeaccd-6e49-4eac-8998-4e19fd5c932f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ffdeaccd-6e49-4eac-8998-4e19fd5c932f@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ffdeaccd-6e49-4eac-8998-4e19fd5c932f", + "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": "ffdeaccd-6e49-4eac-8998-4e19fd5c932f@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 677, + "height": 75, + "rawWidth": 677, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -338.5, + -37.5, + 0, + 338.5, + -37.5, + 0, + -338.5, + 37.5, + 0, + 338.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 677, + 75, + 0, + 0, + 677, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -338.5, + -37.5, + 0 + ], + "maxPos": [ + 338.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ffdeaccd-6e49-4eac-8998-4e19fd5c932f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ffdeaccd-6e49-4eac-8998-4e19fd5c932f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FREESPIN4.png b/assets/resources/i18nSprite2/en/FREESPIN4.png new file mode 100755 index 0000000..4256671 Binary files /dev/null and b/assets/resources/i18nSprite2/en/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/en/FREESPIN4.png.meta b/assets/resources/i18nSprite2/en/FREESPIN4.png.meta new file mode 100644 index 0000000..c1df1c7 --- /dev/null +++ b/assets/resources/i18nSprite2/en/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b23049d7-23dd-4365-bf40-075c1c68d22d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b23049d7-23dd-4365-bf40-075c1c68d22d@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b23049d7-23dd-4365-bf40-075c1c68d22d", + "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": "b23049d7-23dd-4365-bf40-075c1c68d22d@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 291, + "height": 68, + "rawWidth": 291, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -145.5, + -34, + 0, + 145.5, + -34, + 0, + -145.5, + 34, + 0, + 145.5, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 68, + 291, + 68, + 0, + 0, + 291, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -145.5, + -34, + 0 + ], + "maxPos": [ + 145.5, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b23049d7-23dd-4365-bf40-075c1c68d22d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b23049d7-23dd-4365-bf40-075c1c68d22d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FREESPIN5.png b/assets/resources/i18nSprite2/en/FREESPIN5.png new file mode 100755 index 0000000..f17f395 Binary files /dev/null and b/assets/resources/i18nSprite2/en/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/en/FREESPIN5.png.meta b/assets/resources/i18nSprite2/en/FREESPIN5.png.meta new file mode 100644 index 0000000..8589e10 --- /dev/null +++ b/assets/resources/i18nSprite2/en/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f2ec709f-ee98-4a1c-a2e0-3499d55ba09d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f2ec709f-ee98-4a1c-a2e0-3499d55ba09d@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f2ec709f-ee98-4a1c-a2e0-3499d55ba09d", + "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": "f2ec709f-ee98-4a1c-a2e0-3499d55ba09d@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1019, + "height": 318, + "rawWidth": 1019, + "rawHeight": 318, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509.5, + -159, + 0, + 509.5, + -159, + 0, + -509.5, + 159, + 0, + 509.5, + 159, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 318, + 1019, + 318, + 0, + 0, + 1019, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509.5, + -159, + 0 + ], + "maxPos": [ + 509.5, + 159, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f2ec709f-ee98-4a1c-a2e0-3499d55ba09d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f2ec709f-ee98-4a1c-a2e0-3499d55ba09d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/FSFS.png b/assets/resources/i18nSprite2/en/FSFS.png new file mode 100755 index 0000000..1934266 Binary files /dev/null and b/assets/resources/i18nSprite2/en/FSFS.png differ diff --git a/assets/resources/i18nSprite2/en/FSFS.png.meta b/assets/resources/i18nSprite2/en/FSFS.png.meta new file mode 100644 index 0000000..9d526f8 --- /dev/null +++ b/assets/resources/i18nSprite2/en/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2765ba70-54ed-4a78-81fe-79589ce4d63b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2765ba70-54ed-4a78-81fe-79589ce4d63b@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2765ba70-54ed-4a78-81fe-79589ce4d63b", + "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": "2765ba70-54ed-4a78-81fe-79589ce4d63b@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 591, + "height": 193, + "rawWidth": 591, + "rawHeight": 193, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -295.5, + -96.5, + 0, + 295.5, + -96.5, + 0, + -295.5, + 96.5, + 0, + 295.5, + 96.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 193, + 591, + 193, + 0, + 0, + 591, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -295.5, + -96.5, + 0 + ], + "maxPos": [ + 295.5, + 96.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2765ba70-54ed-4a78-81fe-79589ce4d63b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2765ba70-54ed-4a78-81fe-79589ce4d63b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Free.png b/assets/resources/i18nSprite2/en/Free.png new file mode 100755 index 0000000..244bfcc Binary files /dev/null and b/assets/resources/i18nSprite2/en/Free.png differ diff --git a/assets/resources/i18nSprite2/en/Free.png.meta b/assets/resources/i18nSprite2/en/Free.png.meta new file mode 100644 index 0000000..a91d4f3 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ab650bae-3192-4c80-b797-c1c6bb5e423a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ab650bae-3192-4c80-b797-c1c6bb5e423a@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ab650bae-3192-4c80-b797-c1c6bb5e423a", + "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": "ab650bae-3192-4c80-b797-c1c6bb5e423a@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 454, + "height": 172, + "rawWidth": 454, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -227, + -86, + 0, + 227, + -86, + 0, + -227, + 86, + 0, + 227, + 86, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 172, + 454, + 172, + 0, + 0, + 454, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -227, + -86, + 0 + ], + "maxPos": [ + 227, + 86, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ab650bae-3192-4c80-b797-c1c6bb5e423a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ab650bae-3192-4c80-b797-c1c6bb5e423a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Free1.png b/assets/resources/i18nSprite2/en/Free1.png new file mode 100755 index 0000000..ea8cc1e Binary files /dev/null and b/assets/resources/i18nSprite2/en/Free1.png differ diff --git a/assets/resources/i18nSprite2/en/Free1.png.meta b/assets/resources/i18nSprite2/en/Free1.png.meta new file mode 100644 index 0000000..014260b --- /dev/null +++ b/assets/resources/i18nSprite2/en/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "08f55722-759e-4dfc-9f16-0d0ca75b8dca", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "08f55722-759e-4dfc-9f16-0d0ca75b8dca@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "08f55722-759e-4dfc-9f16-0d0ca75b8dca", + "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": "08f55722-759e-4dfc-9f16-0d0ca75b8dca@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 420, + "height": 172, + "rawWidth": 420, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -210, + -86, + 0, + 210, + -86, + 0, + -210, + 86, + 0, + 210, + 86, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 172, + 420, + 172, + 0, + 0, + 420, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -210, + -86, + 0 + ], + "maxPos": [ + 210, + 86, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "08f55722-759e-4dfc-9f16-0d0ca75b8dca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "08f55722-759e-4dfc-9f16-0d0ca75b8dca@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal1.png b/assets/resources/i18nSprite2/en/Normal1.png new file mode 100755 index 0000000..96abd90 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal1.png differ diff --git a/assets/resources/i18nSprite2/en/Normal1.png.meta b/assets/resources/i18nSprite2/en/Normal1.png.meta new file mode 100644 index 0000000..f311230 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5743dce5-b17e-49d6-b90f-3e2fbe3e93b7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5743dce5-b17e-49d6-b90f-3e2fbe3e93b7@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5743dce5-b17e-49d6-b90f-3e2fbe3e93b7", + "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": "5743dce5-b17e-49d6-b90f-3e2fbe3e93b7@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 598, + "height": 43, + "rawWidth": 602, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -299, + -21.5, + 0, + 299, + -21.5, + 0, + -299, + 21.5, + 0, + 299, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 600, + 45, + 2, + 2, + 600, + 2 + ], + "nuv": [ + 0.0033222591362126247, + 0.0425531914893617, + 0.9966777408637874, + 0.0425531914893617, + 0.0033222591362126247, + 0.9574468085106383, + 0.9966777408637874, + 0.9574468085106383 + ], + "minPos": [ + -299, + -21.5, + 0 + ], + "maxPos": [ + 299, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5743dce5-b17e-49d6-b90f-3e2fbe3e93b7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5743dce5-b17e-49d6-b90f-3e2fbe3e93b7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal10.png b/assets/resources/i18nSprite2/en/Normal10.png new file mode 100755 index 0000000..8068b27 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal10.png differ diff --git a/assets/resources/i18nSprite2/en/Normal10.png.meta b/assets/resources/i18nSprite2/en/Normal10.png.meta new file mode 100644 index 0000000..a11d752 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b9365dce-dd86-4689-b522-25f475971e9c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b9365dce-dd86-4689-b522-25f475971e9c@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b9365dce-dd86-4689-b522-25f475971e9c", + "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": "b9365dce-dd86-4689-b522-25f475971e9c@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 481, + "height": 43, + "rawWidth": 485, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -240.5, + -21.5, + 0, + 240.5, + -21.5, + 0, + -240.5, + 21.5, + 0, + 240.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 483, + 45, + 2, + 2, + 483, + 2 + ], + "nuv": [ + 0.004123711340206186, + 0.0425531914893617, + 0.9958762886597938, + 0.0425531914893617, + 0.004123711340206186, + 0.9574468085106383, + 0.9958762886597938, + 0.9574468085106383 + ], + "minPos": [ + -240.5, + -21.5, + 0 + ], + "maxPos": [ + 240.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b9365dce-dd86-4689-b522-25f475971e9c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b9365dce-dd86-4689-b522-25f475971e9c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal11.png b/assets/resources/i18nSprite2/en/Normal11.png new file mode 100755 index 0000000..9384937 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal11.png differ diff --git a/assets/resources/i18nSprite2/en/Normal11.png.meta b/assets/resources/i18nSprite2/en/Normal11.png.meta new file mode 100644 index 0000000..d9155ab --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "36f2cae6-8c2c-4627-a4fc-68e77babd93c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "36f2cae6-8c2c-4627-a4fc-68e77babd93c@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "36f2cae6-8c2c-4627-a4fc-68e77babd93c", + "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": "36f2cae6-8c2c-4627-a4fc-68e77babd93c@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 686, + "height": 78, + "rawWidth": 686, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -343, + -39, + 0, + 343, + -39, + 0, + -343, + 39, + 0, + 343, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 686, + 78, + 0, + 0, + 686, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -343, + -39, + 0 + ], + "maxPos": [ + 343, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "36f2cae6-8c2c-4627-a4fc-68e77babd93c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "36f2cae6-8c2c-4627-a4fc-68e77babd93c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal2.png b/assets/resources/i18nSprite2/en/Normal2.png new file mode 100755 index 0000000..f83a0e4 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal2.png differ diff --git a/assets/resources/i18nSprite2/en/Normal2.png.meta b/assets/resources/i18nSprite2/en/Normal2.png.meta new file mode 100644 index 0000000..32b639e --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e03c6321-0dd3-47c8-959e-ca826420e5c1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e03c6321-0dd3-47c8-959e-ca826420e5c1@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e03c6321-0dd3-47c8-959e-ca826420e5c1", + "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": "e03c6321-0dd3-47c8-959e-ca826420e5c1@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 245, + "height": 43, + "rawWidth": 249, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -122.5, + -21.5, + 0, + 122.5, + -21.5, + 0, + -122.5, + 21.5, + 0, + 122.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 247, + 45, + 2, + 2, + 247, + 2 + ], + "nuv": [ + 0.008032128514056224, + 0.0425531914893617, + 0.9919678714859438, + 0.0425531914893617, + 0.008032128514056224, + 0.9574468085106383, + 0.9919678714859438, + 0.9574468085106383 + ], + "minPos": [ + -122.5, + -21.5, + 0 + ], + "maxPos": [ + 122.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e03c6321-0dd3-47c8-959e-ca826420e5c1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e03c6321-0dd3-47c8-959e-ca826420e5c1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal3.png b/assets/resources/i18nSprite2/en/Normal3.png new file mode 100755 index 0000000..156734b Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal3.png differ diff --git a/assets/resources/i18nSprite2/en/Normal3.png.meta b/assets/resources/i18nSprite2/en/Normal3.png.meta new file mode 100644 index 0000000..007c1f4 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "83665de9-4efb-484d-903c-00f8693ff1bc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "83665de9-4efb-484d-903c-00f8693ff1bc@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "83665de9-4efb-484d-903c-00f8693ff1bc", + "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": "83665de9-4efb-484d-903c-00f8693ff1bc@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 383, + "height": 43, + "rawWidth": 387, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -191.5, + -21.5, + 0, + 191.5, + -21.5, + 0, + -191.5, + 21.5, + 0, + 191.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 385, + 45, + 2, + 2, + 385, + 2 + ], + "nuv": [ + 0.00516795865633075, + 0.0425531914893617, + 0.9948320413436692, + 0.0425531914893617, + 0.00516795865633075, + 0.9574468085106383, + 0.9948320413436692, + 0.9574468085106383 + ], + "minPos": [ + -191.5, + -21.5, + 0 + ], + "maxPos": [ + 191.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "83665de9-4efb-484d-903c-00f8693ff1bc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "83665de9-4efb-484d-903c-00f8693ff1bc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal4.png b/assets/resources/i18nSprite2/en/Normal4.png new file mode 100755 index 0000000..3d47ea7 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal4.png differ diff --git a/assets/resources/i18nSprite2/en/Normal4.png.meta b/assets/resources/i18nSprite2/en/Normal4.png.meta new file mode 100644 index 0000000..b06e46d --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3593d467-6513-4e7c-aab7-abbbc90433f0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3593d467-6513-4e7c-aab7-abbbc90433f0@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3593d467-6513-4e7c-aab7-abbbc90433f0", + "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": "3593d467-6513-4e7c-aab7-abbbc90433f0@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 330, + "height": 43, + "rawWidth": 334, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -165, + -21.5, + 0, + 165, + -21.5, + 0, + -165, + 21.5, + 0, + 165, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 332, + 45, + 2, + 2, + 332, + 2 + ], + "nuv": [ + 0.005988023952095809, + 0.0425531914893617, + 0.9940119760479041, + 0.0425531914893617, + 0.005988023952095809, + 0.9574468085106383, + 0.9940119760479041, + 0.9574468085106383 + ], + "minPos": [ + -165, + -21.5, + 0 + ], + "maxPos": [ + 165, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3593d467-6513-4e7c-aab7-abbbc90433f0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3593d467-6513-4e7c-aab7-abbbc90433f0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal5.png b/assets/resources/i18nSprite2/en/Normal5.png new file mode 100755 index 0000000..53b3681 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal5.png differ diff --git a/assets/resources/i18nSprite2/en/Normal5.png.meta b/assets/resources/i18nSprite2/en/Normal5.png.meta new file mode 100644 index 0000000..f28a81d --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1bd3da38-fa51-43b4-b3cf-32416322aea1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1bd3da38-fa51-43b4-b3cf-32416322aea1@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1bd3da38-fa51-43b4-b3cf-32416322aea1", + "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": "1bd3da38-fa51-43b4-b3cf-32416322aea1@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 54, + "height": 28, + "rawWidth": 58, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -27, + -14, + 0, + 27, + -14, + 0, + -27, + 14, + 0, + 27, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 56, + 30, + 2, + 2, + 56, + 2 + ], + "nuv": [ + 0.034482758620689655, + 0.0625, + 0.9655172413793104, + 0.0625, + 0.034482758620689655, + 0.9375, + 0.9655172413793104, + 0.9375 + ], + "minPos": [ + -27, + -14, + 0 + ], + "maxPos": [ + 27, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1bd3da38-fa51-43b4-b3cf-32416322aea1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1bd3da38-fa51-43b4-b3cf-32416322aea1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal6.png b/assets/resources/i18nSprite2/en/Normal6.png new file mode 100755 index 0000000..3433139 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal6.png differ diff --git a/assets/resources/i18nSprite2/en/Normal6.png.meta b/assets/resources/i18nSprite2/en/Normal6.png.meta new file mode 100644 index 0000000..4cf40f8 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24", + "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": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 94, + "height": 44, + "rawWidth": 98, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -47, + -22, + 0, + 47, + -22, + 0, + -47, + 22, + 0, + 47, + 22, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 46, + 96, + 46, + 2, + 2, + 96, + 2 + ], + "nuv": [ + 0.02040816326530612, + 0.041666666666666664, + 0.9795918367346939, + 0.041666666666666664, + 0.02040816326530612, + 0.9583333333333334, + 0.9795918367346939, + 0.9583333333333334 + ], + "minPos": [ + -47, + -22, + 0 + ], + "maxPos": [ + 47, + 22, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal7.png b/assets/resources/i18nSprite2/en/Normal7.png new file mode 100755 index 0000000..5f0b7cc Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal7.png differ diff --git a/assets/resources/i18nSprite2/en/Normal7.png.meta b/assets/resources/i18nSprite2/en/Normal7.png.meta new file mode 100644 index 0000000..5d94fa5 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ae4603c5-4824-4cd2-9978-cd767e21c269", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ae4603c5-4824-4cd2-9978-cd767e21c269@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ae4603c5-4824-4cd2-9978-cd767e21c269", + "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": "ae4603c5-4824-4cd2-9978-cd767e21c269@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 226, + "height": 43, + "rawWidth": 230, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -113, + -21.5, + 0, + 113, + -21.5, + 0, + -113, + 21.5, + 0, + 113, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 228, + 45, + 2, + 2, + 228, + 2 + ], + "nuv": [ + 0.008695652173913044, + 0.0425531914893617, + 0.991304347826087, + 0.0425531914893617, + 0.008695652173913044, + 0.9574468085106383, + 0.991304347826087, + 0.9574468085106383 + ], + "minPos": [ + -113, + -21.5, + 0 + ], + "maxPos": [ + 113, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ae4603c5-4824-4cd2-9978-cd767e21c269@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ae4603c5-4824-4cd2-9978-cd767e21c269@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal8.png b/assets/resources/i18nSprite2/en/Normal8.png new file mode 100755 index 0000000..1ef3dba Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal8.png differ diff --git a/assets/resources/i18nSprite2/en/Normal8.png.meta b/assets/resources/i18nSprite2/en/Normal8.png.meta new file mode 100644 index 0000000..752e772 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c1cadcca-651c-4fc4-84b7-7d24d71f8be7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c1cadcca-651c-4fc4-84b7-7d24d71f8be7@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c1cadcca-651c-4fc4-84b7-7d24d71f8be7", + "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": "c1cadcca-651c-4fc4-84b7-7d24d71f8be7@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 864, + "height": 43, + "rawWidth": 868, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -432, + -21.5, + 0, + 432, + -21.5, + 0, + -432, + 21.5, + 0, + 432, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 866, + 45, + 2, + 2, + 866, + 2 + ], + "nuv": [ + 0.002304147465437788, + 0.0425531914893617, + 0.9976958525345622, + 0.0425531914893617, + 0.002304147465437788, + 0.9574468085106383, + 0.9976958525345622, + 0.9574468085106383 + ], + "minPos": [ + -432, + -21.5, + 0 + ], + "maxPos": [ + 432, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c1cadcca-651c-4fc4-84b7-7d24d71f8be7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c1cadcca-651c-4fc4-84b7-7d24d71f8be7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Normal9.png b/assets/resources/i18nSprite2/en/Normal9.png new file mode 100755 index 0000000..17ccdce Binary files /dev/null and b/assets/resources/i18nSprite2/en/Normal9.png differ diff --git a/assets/resources/i18nSprite2/en/Normal9.png.meta b/assets/resources/i18nSprite2/en/Normal9.png.meta new file mode 100644 index 0000000..baaf1f2 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c4b48ccc-6c05-469a-93b3-fc640cfff011", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4b48ccc-6c05-469a-93b3-fc640cfff011@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4b48ccc-6c05-469a-93b3-fc640cfff011", + "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": "c4b48ccc-6c05-469a-93b3-fc640cfff011@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 503, + "height": 75, + "rawWidth": 503, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -251.5, + -37.5, + 0, + 251.5, + -37.5, + 0, + -251.5, + 37.5, + 0, + 251.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 503, + 75, + 0, + 0, + 503, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -251.5, + -37.5, + 0 + ], + "maxPos": [ + 251.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4b48ccc-6c05-469a-93b3-fc640cfff011@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4b48ccc-6c05-469a-93b3-fc640cfff011@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Win1.png b/assets/resources/i18nSprite2/en/Win1.png new file mode 100755 index 0000000..34924b6 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Win1.png differ diff --git a/assets/resources/i18nSprite2/en/Win1.png.meta b/assets/resources/i18nSprite2/en/Win1.png.meta new file mode 100644 index 0000000..22cd4b9 --- /dev/null +++ b/assets/resources/i18nSprite2/en/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4833c004-dbe4-49ba-a05b-031b2e02cc1b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4833c004-dbe4-49ba-a05b-031b2e02cc1b@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4833c004-dbe4-49ba-a05b-031b2e02cc1b", + "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": "4833c004-dbe4-49ba-a05b-031b2e02cc1b@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 726, + "height": 333, + "rawWidth": 726, + "rawHeight": 333, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -363, + -166.5, + 0, + 363, + -166.5, + 0, + -363, + 166.5, + 0, + 363, + 166.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 333, + 726, + 333, + 0, + 0, + 726, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -363, + -166.5, + 0 + ], + "maxPos": [ + 363, + 166.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4833c004-dbe4-49ba-a05b-031b2e02cc1b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4833c004-dbe4-49ba-a05b-031b2e02cc1b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Win2.png b/assets/resources/i18nSprite2/en/Win2.png new file mode 100755 index 0000000..7b4d9e2 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Win2.png differ diff --git a/assets/resources/i18nSprite2/en/Win2.png.meta b/assets/resources/i18nSprite2/en/Win2.png.meta new file mode 100644 index 0000000..40e464c --- /dev/null +++ b/assets/resources/i18nSprite2/en/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a1dd9a9c-4708-4587-9a86-bc97954ccd56", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a1dd9a9c-4708-4587-9a86-bc97954ccd56@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a1dd9a9c-4708-4587-9a86-bc97954ccd56", + "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": "a1dd9a9c-4708-4587-9a86-bc97954ccd56@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 923, + "height": 333, + "rawWidth": 923, + "rawHeight": 333, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -461.5, + -166.5, + 0, + 461.5, + -166.5, + 0, + -461.5, + 166.5, + 0, + 461.5, + 166.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 333, + 923, + 333, + 0, + 0, + 923, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -461.5, + -166.5, + 0 + ], + "maxPos": [ + 461.5, + 166.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a1dd9a9c-4708-4587-9a86-bc97954ccd56@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a1dd9a9c-4708-4587-9a86-bc97954ccd56@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/Win3.png b/assets/resources/i18nSprite2/en/Win3.png new file mode 100755 index 0000000..ecb7966 Binary files /dev/null and b/assets/resources/i18nSprite2/en/Win3.png differ diff --git a/assets/resources/i18nSprite2/en/Win3.png.meta b/assets/resources/i18nSprite2/en/Win3.png.meta new file mode 100644 index 0000000..b26192f --- /dev/null +++ b/assets/resources/i18nSprite2/en/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1beb18b1-ddba-4c4e-9eba-60e89dbc057b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1beb18b1-ddba-4c4e-9eba-60e89dbc057b@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1beb18b1-ddba-4c4e-9eba-60e89dbc057b", + "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": "1beb18b1-ddba-4c4e-9eba-60e89dbc057b@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 811, + "height": 521, + "rawWidth": 811, + "rawHeight": 521, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -405.5, + -260.5, + 0, + 405.5, + -260.5, + 0, + -405.5, + 260.5, + 0, + 405.5, + 260.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 521, + 811, + 521, + 0, + 0, + 811, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -405.5, + -260.5, + 0 + ], + "maxPos": [ + 405.5, + 260.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1beb18b1-ddba-4c4e-9eba-60e89dbc057b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1beb18b1-ddba-4c4e-9eba-60e89dbc057b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/logo1.png b/assets/resources/i18nSprite2/en/logo1.png new file mode 100755 index 0000000..44c27fb Binary files /dev/null and b/assets/resources/i18nSprite2/en/logo1.png differ diff --git a/assets/resources/i18nSprite2/en/logo1.png.meta b/assets/resources/i18nSprite2/en/logo1.png.meta new file mode 100644 index 0000000..0fbf716 --- /dev/null +++ b/assets/resources/i18nSprite2/en/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee9f6c92-901e-46c7-98de-e2776a5f5bcc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee9f6c92-901e-46c7-98de-e2776a5f5bcc@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee9f6c92-901e-46c7-98de-e2776a5f5bcc", + "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": "ee9f6c92-901e-46c7-98de-e2776a5f5bcc@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 917, + "height": 243, + "rawWidth": 917, + "rawHeight": 243, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -458.5, + -121.5, + 0, + 458.5, + -121.5, + 0, + -458.5, + 121.5, + 0, + 458.5, + 121.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 243, + 917, + 243, + 0, + 0, + 917, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -458.5, + -121.5, + 0 + ], + "maxPos": [ + 458.5, + 121.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee9f6c92-901e-46c7-98de-e2776a5f5bcc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee9f6c92-901e-46c7-98de-e2776a5f5bcc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/en/zxksctter.png b/assets/resources/i18nSprite2/en/zxksctter.png new file mode 100755 index 0000000..4b0c91d Binary files /dev/null and b/assets/resources/i18nSprite2/en/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/en/zxksctter.png.meta b/assets/resources/i18nSprite2/en/zxksctter.png.meta new file mode 100644 index 0000000..419f7cd --- /dev/null +++ b/assets/resources/i18nSprite2/en/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8bb453f6-c0f7-46d6-934f-212b7742560c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8bb453f6-c0f7-46d6-934f-212b7742560c@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8bb453f6-c0f7-46d6-934f-212b7742560c", + "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": "8bb453f6-c0f7-46d6-934f-212b7742560c@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 251, + "height": 92, + "rawWidth": 255, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -125.5, + -46, + 0, + 125.5, + -46, + 0, + -125.5, + 46, + 0, + 125.5, + 46, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 94, + 253, + 94, + 2, + 2, + 253, + 2 + ], + "nuv": [ + 0.00784313725490196, + 0.020833333333333332, + 0.9921568627450981, + 0.020833333333333332, + 0.00784313725490196, + 0.9791666666666666, + 0.9921568627450981, + 0.9791666666666666 + ], + "minPos": [ + -125.5, + -46, + 0 + ], + "maxPos": [ + 125.5, + 46, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8bb453f6-c0f7-46d6-934f-212b7742560c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8bb453f6-c0f7-46d6-934f-212b7742560c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es.meta b/assets/resources/i18nSprite2/es.meta new file mode 100644 index 0000000..affaf01 --- /dev/null +++ b/assets/resources/i18nSprite2/es.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "4e91c087-81f2-4444-bb0e-4d892086d4c4", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/es/Buy1.png b/assets/resources/i18nSprite2/es/Buy1.png new file mode 100755 index 0000000..53bba01 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Buy1.png differ diff --git a/assets/resources/i18nSprite2/es/Buy1.png.meta b/assets/resources/i18nSprite2/es/Buy1.png.meta new file mode 100644 index 0000000..c3345f0 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e398511-8046-4cfe-b1e7-2c1850395a80", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e398511-8046-4cfe-b1e7-2c1850395a80@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e398511-8046-4cfe-b1e7-2c1850395a80", + "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": "6e398511-8046-4cfe-b1e7-2c1850395a80@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 872, + "height": 166, + "rawWidth": 872, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -436, + -83, + 0, + 436, + -83, + 0, + -436, + 83, + 0, + 436, + 83, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 166, + 872, + 166, + 0, + 0, + 872, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -436, + -83, + 0 + ], + "maxPos": [ + 436, + 83, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e398511-8046-4cfe-b1e7-2c1850395a80@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e398511-8046-4cfe-b1e7-2c1850395a80@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Buy2.png b/assets/resources/i18nSprite2/es/Buy2.png new file mode 100755 index 0000000..004325b Binary files /dev/null and b/assets/resources/i18nSprite2/es/Buy2.png differ diff --git a/assets/resources/i18nSprite2/es/Buy2.png.meta b/assets/resources/i18nSprite2/es/Buy2.png.meta new file mode 100644 index 0000000..19e9d07 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2154b32b-ab2e-4dea-967a-f8bb2689cae4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2154b32b-ab2e-4dea-967a-f8bb2689cae4@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2154b32b-ab2e-4dea-967a-f8bb2689cae4", + "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": "2154b32b-ab2e-4dea-967a-f8bb2689cae4@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 93, + "rawWidth": 182, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -91, + -46.5, + 0, + 91, + -46.5, + 0, + -91, + 46.5, + 0, + 91, + 46.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 93, + 182, + 93, + 0, + 0, + 182, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -91, + -46.5, + 0 + ], + "maxPos": [ + 91, + 46.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2154b32b-ab2e-4dea-967a-f8bb2689cae4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2154b32b-ab2e-4dea-967a-f8bb2689cae4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Buy4.png b/assets/resources/i18nSprite2/es/Buy4.png new file mode 100755 index 0000000..a96a65f Binary files /dev/null and b/assets/resources/i18nSprite2/es/Buy4.png differ diff --git a/assets/resources/i18nSprite2/es/Buy4.png.meta b/assets/resources/i18nSprite2/es/Buy4.png.meta new file mode 100644 index 0000000..cb072ab --- /dev/null +++ b/assets/resources/i18nSprite2/es/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "de77d6f9-95c8-4172-9372-f1764e9cb222", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "de77d6f9-95c8-4172-9372-f1764e9cb222@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "de77d6f9-95c8-4172-9372-f1764e9cb222", + "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": "de77d6f9-95c8-4172-9372-f1764e9cb222@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 213, + "height": 74, + "rawWidth": 213, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -106.5, + -37, + 0, + 106.5, + -37, + 0, + -106.5, + 37, + 0, + 106.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 74, + 213, + 74, + 0, + 0, + 213, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -106.5, + -37, + 0 + ], + "maxPos": [ + 106.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "de77d6f9-95c8-4172-9372-f1764e9cb222@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "de77d6f9-95c8-4172-9372-f1764e9cb222@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Buy5.png b/assets/resources/i18nSprite2/es/Buy5.png new file mode 100755 index 0000000..5364e62 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Buy5.png differ diff --git a/assets/resources/i18nSprite2/es/Buy5.png.meta b/assets/resources/i18nSprite2/es/Buy5.png.meta new file mode 100644 index 0000000..4ca4d8c --- /dev/null +++ b/assets/resources/i18nSprite2/es/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b89fe057-63d8-43d8-af55-f708dd83d89f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b89fe057-63d8-43d8-af55-f708dd83d89f@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b89fe057-63d8-43d8-af55-f708dd83d89f", + "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": "b89fe057-63d8-43d8-af55-f708dd83d89f@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 191, + "height": 59, + "rawWidth": 195, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -95.5, + -29.5, + 0, + 95.5, + -29.5, + 0, + -95.5, + 29.5, + 0, + 95.5, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 193, + 61, + 2, + 2, + 193, + 2 + ], + "nuv": [ + 0.010256410256410256, + 0.031746031746031744, + 0.9897435897435898, + 0.031746031746031744, + 0.010256410256410256, + 0.9682539682539683, + 0.9897435897435898, + 0.9682539682539683 + ], + "minPos": [ + -95.5, + -29.5, + 0 + ], + "maxPos": [ + 95.5, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b89fe057-63d8-43d8-af55-f708dd83d89f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b89fe057-63d8-43d8-af55-f708dd83d89f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Buy8.png b/assets/resources/i18nSprite2/es/Buy8.png new file mode 100755 index 0000000..ef9bc48 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Buy8.png differ diff --git a/assets/resources/i18nSprite2/es/Buy8.png.meta b/assets/resources/i18nSprite2/es/Buy8.png.meta new file mode 100644 index 0000000..68a4173 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df244a77-c1f9-4dda-aa4e-3d3a772e32e5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df244a77-c1f9-4dda-aa4e-3d3a772e32e5@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df244a77-c1f9-4dda-aa4e-3d3a772e32e5", + "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": "df244a77-c1f9-4dda-aa4e-3d3a772e32e5@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 281, + "height": 73, + "rawWidth": 281, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -140.5, + -36.5, + 0, + 140.5, + -36.5, + 0, + -140.5, + 36.5, + 0, + 140.5, + 36.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 73, + 281, + 73, + 0, + 0, + 281, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -140.5, + -36.5, + 0 + ], + "maxPos": [ + 140.5, + 36.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df244a77-c1f9-4dda-aa4e-3d3a772e32e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df244a77-c1f9-4dda-aa4e-3d3a772e32e5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FREELoading.png b/assets/resources/i18nSprite2/es/FREELoading.png new file mode 100755 index 0000000..015fc33 Binary files /dev/null and b/assets/resources/i18nSprite2/es/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/es/FREELoading.png.meta b/assets/resources/i18nSprite2/es/FREELoading.png.meta new file mode 100644 index 0000000..1944001 --- /dev/null +++ b/assets/resources/i18nSprite2/es/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c1dd22f9-de4c-4aad-b423-76304f1f69a6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c1dd22f9-de4c-4aad-b423-76304f1f69a6@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c1dd22f9-de4c-4aad-b423-76304f1f69a6", + "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": "c1dd22f9-de4c-4aad-b423-76304f1f69a6@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1035, + "height": 252, + "rawWidth": 1035, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -517.5, + -126, + 0, + 517.5, + -126, + 0, + -517.5, + 126, + 0, + 517.5, + 126, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 252, + 1035, + 252, + 0, + 0, + 1035, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -517.5, + -126, + 0 + ], + "maxPos": [ + 517.5, + 126, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c1dd22f9-de4c-4aad-b423-76304f1f69a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c1dd22f9-de4c-4aad-b423-76304f1f69a6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FREELoading1.png b/assets/resources/i18nSprite2/es/FREELoading1.png new file mode 100755 index 0000000..db88089 Binary files /dev/null and b/assets/resources/i18nSprite2/es/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/es/FREELoading1.png.meta b/assets/resources/i18nSprite2/es/FREELoading1.png.meta new file mode 100644 index 0000000..ff16491 --- /dev/null +++ b/assets/resources/i18nSprite2/es/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ecf1b746-86d2-446e-8838-88b85bde1074", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ecf1b746-86d2-446e-8838-88b85bde1074@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ecf1b746-86d2-446e-8838-88b85bde1074", + "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": "ecf1b746-86d2-446e-8838-88b85bde1074@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 881, + "height": 119, + "rawWidth": 885, + "rawHeight": 123, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -440.5, + -59.5, + 0, + 440.5, + -59.5, + 0, + -440.5, + 59.5, + 0, + 440.5, + 59.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 121, + 883, + 121, + 2, + 2, + 883, + 2 + ], + "nuv": [ + 0.0022598870056497176, + 0.016260162601626018, + 0.9977401129943503, + 0.016260162601626018, + 0.0022598870056497176, + 0.983739837398374, + 0.9977401129943503, + 0.983739837398374 + ], + "minPos": [ + -440.5, + -59.5, + 0 + ], + "maxPos": [ + 440.5, + 59.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ecf1b746-86d2-446e-8838-88b85bde1074@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ecf1b746-86d2-446e-8838-88b85bde1074@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FREELoading2.png b/assets/resources/i18nSprite2/es/FREELoading2.png new file mode 100755 index 0000000..e607b4f Binary files /dev/null and b/assets/resources/i18nSprite2/es/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/es/FREELoading2.png.meta b/assets/resources/i18nSprite2/es/FREELoading2.png.meta new file mode 100644 index 0000000..7e845c3 --- /dev/null +++ b/assets/resources/i18nSprite2/es/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a6f6249b-20f9-4990-b503-6174f6f8daa4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a6f6249b-20f9-4990-b503-6174f6f8daa4@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a6f6249b-20f9-4990-b503-6174f6f8daa4", + "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": "a6f6249b-20f9-4990-b503-6174f6f8daa4@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 240, + "height": 81, + "rawWidth": 240, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -120, + -40.5, + 0, + 120, + -40.5, + 0, + -120, + 40.5, + 0, + 120, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 240, + 81, + 0, + 0, + 240, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -120, + -40.5, + 0 + ], + "maxPos": [ + 120, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a6f6249b-20f9-4990-b503-6174f6f8daa4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a6f6249b-20f9-4990-b503-6174f6f8daa4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FREESPIN2.png b/assets/resources/i18nSprite2/es/FREESPIN2.png new file mode 100755 index 0000000..f07904d Binary files /dev/null and b/assets/resources/i18nSprite2/es/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/es/FREESPIN2.png.meta b/assets/resources/i18nSprite2/es/FREESPIN2.png.meta new file mode 100644 index 0000000..0d400a1 --- /dev/null +++ b/assets/resources/i18nSprite2/es/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e94d03cd-a5d6-4cd1-aacc-a04df5641234", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e94d03cd-a5d6-4cd1-aacc-a04df5641234@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e94d03cd-a5d6-4cd1-aacc-a04df5641234", + "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": "e94d03cd-a5d6-4cd1-aacc-a04df5641234@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 921, + "height": 75, + "rawWidth": 921, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -460.5, + -37.5, + 0, + 460.5, + -37.5, + 0, + -460.5, + 37.5, + 0, + 460.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 921, + 75, + 0, + 0, + 921, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -460.5, + -37.5, + 0 + ], + "maxPos": [ + 460.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e94d03cd-a5d6-4cd1-aacc-a04df5641234@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e94d03cd-a5d6-4cd1-aacc-a04df5641234@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FREESPIN4.png b/assets/resources/i18nSprite2/es/FREESPIN4.png new file mode 100755 index 0000000..e290b2d Binary files /dev/null and b/assets/resources/i18nSprite2/es/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/es/FREESPIN4.png.meta b/assets/resources/i18nSprite2/es/FREESPIN4.png.meta new file mode 100644 index 0000000..0a4fc9b --- /dev/null +++ b/assets/resources/i18nSprite2/es/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "002e2789-3c8e-40da-92fb-96d962f2b3c4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "002e2789-3c8e-40da-92fb-96d962f2b3c4@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "002e2789-3c8e-40da-92fb-96d962f2b3c4", + "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": "002e2789-3c8e-40da-92fb-96d962f2b3c4@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 429, + "height": 81, + "rawWidth": 429, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -214.5, + -40.5, + 0, + 214.5, + -40.5, + 0, + -214.5, + 40.5, + 0, + 214.5, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 429, + 81, + 0, + 0, + 429, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -214.5, + -40.5, + 0 + ], + "maxPos": [ + 214.5, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "002e2789-3c8e-40da-92fb-96d962f2b3c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "002e2789-3c8e-40da-92fb-96d962f2b3c4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FREESPIN5.png b/assets/resources/i18nSprite2/es/FREESPIN5.png new file mode 100755 index 0000000..37767e5 Binary files /dev/null and b/assets/resources/i18nSprite2/es/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/es/FREESPIN5.png.meta b/assets/resources/i18nSprite2/es/FREESPIN5.png.meta new file mode 100644 index 0000000..09698e1 --- /dev/null +++ b/assets/resources/i18nSprite2/es/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c361bce-bec2-4b45-9183-eedb91f9c8c7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c361bce-bec2-4b45-9183-eedb91f9c8c7@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c361bce-bec2-4b45-9183-eedb91f9c8c7", + "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": "7c361bce-bec2-4b45-9183-eedb91f9c8c7@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1040, + "height": 222, + "rawWidth": 1040, + "rawHeight": 222, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -520, + -111, + 0, + 520, + -111, + 0, + -520, + 111, + 0, + 520, + 111, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 222, + 1040, + 222, + 0, + 0, + 1040, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -520, + -111, + 0 + ], + "maxPos": [ + 520, + 111, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c361bce-bec2-4b45-9183-eedb91f9c8c7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c361bce-bec2-4b45-9183-eedb91f9c8c7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/FSFS.png b/assets/resources/i18nSprite2/es/FSFS.png new file mode 100755 index 0000000..b72ffd8 Binary files /dev/null and b/assets/resources/i18nSprite2/es/FSFS.png differ diff --git a/assets/resources/i18nSprite2/es/FSFS.png.meta b/assets/resources/i18nSprite2/es/FSFS.png.meta new file mode 100644 index 0000000..f5ca271 --- /dev/null +++ b/assets/resources/i18nSprite2/es/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b51fa12-4c52-417e-a45d-32d1c1aadaf9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b51fa12-4c52-417e-a45d-32d1c1aadaf9@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b51fa12-4c52-417e-a45d-32d1c1aadaf9", + "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": "2b51fa12-4c52-417e-a45d-32d1c1aadaf9@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 621, + "height": 151, + "rawWidth": 621, + "rawHeight": 151, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -310.5, + -75.5, + 0, + 310.5, + -75.5, + 0, + -310.5, + 75.5, + 0, + 310.5, + 75.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 151, + 621, + 151, + 0, + 0, + 621, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -310.5, + -75.5, + 0 + ], + "maxPos": [ + 310.5, + 75.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b51fa12-4c52-417e-a45d-32d1c1aadaf9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b51fa12-4c52-417e-a45d-32d1c1aadaf9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Free.png b/assets/resources/i18nSprite2/es/Free.png new file mode 100755 index 0000000..57a3eb6 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Free.png differ diff --git a/assets/resources/i18nSprite2/es/Free.png.meta b/assets/resources/i18nSprite2/es/Free.png.meta new file mode 100644 index 0000000..915cc88 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2adbc1fb-81f9-464f-95e4-f7ed1d61a086", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2adbc1fb-81f9-464f-95e4-f7ed1d61a086@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2adbc1fb-81f9-464f-95e4-f7ed1d61a086", + "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": "2adbc1fb-81f9-464f-95e4-f7ed1d61a086@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 538, + "height": 161, + "rawWidth": 538, + "rawHeight": 161, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -269, + -80.5, + 0, + 269, + -80.5, + 0, + -269, + 80.5, + 0, + 269, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 161, + 538, + 161, + 0, + 0, + 538, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -269, + -80.5, + 0 + ], + "maxPos": [ + 269, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2adbc1fb-81f9-464f-95e4-f7ed1d61a086@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2adbc1fb-81f9-464f-95e4-f7ed1d61a086@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Free1.png b/assets/resources/i18nSprite2/es/Free1.png new file mode 100755 index 0000000..7544800 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Free1.png differ diff --git a/assets/resources/i18nSprite2/es/Free1.png.meta b/assets/resources/i18nSprite2/es/Free1.png.meta new file mode 100644 index 0000000..28b314b --- /dev/null +++ b/assets/resources/i18nSprite2/es/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fac8fcb4-ba12-463a-ad03-542fb1d635c1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fac8fcb4-ba12-463a-ad03-542fb1d635c1@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fac8fcb4-ba12-463a-ad03-542fb1d635c1", + "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": "fac8fcb4-ba12-463a-ad03-542fb1d635c1@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 494, + "height": 179, + "rawWidth": 494, + "rawHeight": 179, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -247, + -89.5, + 0, + 247, + -89.5, + 0, + -247, + 89.5, + 0, + 247, + 89.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 179, + 494, + 179, + 0, + 0, + 494, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -247, + -89.5, + 0 + ], + "maxPos": [ + 247, + 89.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fac8fcb4-ba12-463a-ad03-542fb1d635c1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fac8fcb4-ba12-463a-ad03-542fb1d635c1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal1.png b/assets/resources/i18nSprite2/es/Normal1.png new file mode 100755 index 0000000..e032a6b Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal1.png differ diff --git a/assets/resources/i18nSprite2/es/Normal1.png.meta b/assets/resources/i18nSprite2/es/Normal1.png.meta new file mode 100644 index 0000000..2db0961 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f743834f-ac5a-4390-9642-e46c65599a66", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f743834f-ac5a-4390-9642-e46c65599a66@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f743834f-ac5a-4390-9642-e46c65599a66", + "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": "f743834f-ac5a-4390-9642-e46c65599a66@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 791, + "height": 43, + "rawWidth": 795, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -395.5, + -21.5, + 0, + 395.5, + -21.5, + 0, + -395.5, + 21.5, + 0, + 395.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 793, + 45, + 2, + 2, + 793, + 2 + ], + "nuv": [ + 0.0025157232704402514, + 0.0425531914893617, + 0.9974842767295597, + 0.0425531914893617, + 0.0025157232704402514, + 0.9574468085106383, + 0.9974842767295597, + 0.9574468085106383 + ], + "minPos": [ + -395.5, + -21.5, + 0 + ], + "maxPos": [ + 395.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f743834f-ac5a-4390-9642-e46c65599a66@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f743834f-ac5a-4390-9642-e46c65599a66@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal10.png b/assets/resources/i18nSprite2/es/Normal10.png new file mode 100755 index 0000000..b66c004 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal10.png differ diff --git a/assets/resources/i18nSprite2/es/Normal10.png.meta b/assets/resources/i18nSprite2/es/Normal10.png.meta new file mode 100644 index 0000000..c57d8e7 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "02e40185-d17e-46ef-9f12-81e02f8a8bf9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "02e40185-d17e-46ef-9f12-81e02f8a8bf9@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "02e40185-d17e-46ef-9f12-81e02f8a8bf9", + "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": "02e40185-d17e-46ef-9f12-81e02f8a8bf9@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 643, + "height": 43, + "rawWidth": 647, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -321.5, + -21.5, + 0, + 321.5, + -21.5, + 0, + -321.5, + 21.5, + 0, + 321.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 645, + 45, + 2, + 2, + 645, + 2 + ], + "nuv": [ + 0.0030911901081916537, + 0.0425531914893617, + 0.9969088098918083, + 0.0425531914893617, + 0.0030911901081916537, + 0.9574468085106383, + 0.9969088098918083, + 0.9574468085106383 + ], + "minPos": [ + -321.5, + -21.5, + 0 + ], + "maxPos": [ + 321.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "02e40185-d17e-46ef-9f12-81e02f8a8bf9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "02e40185-d17e-46ef-9f12-81e02f8a8bf9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal11.png b/assets/resources/i18nSprite2/es/Normal11.png new file mode 100755 index 0000000..c0eb738 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal11.png differ diff --git a/assets/resources/i18nSprite2/es/Normal11.png.meta b/assets/resources/i18nSprite2/es/Normal11.png.meta new file mode 100644 index 0000000..ccc0ce6 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "810ebc34-8d11-40cb-866a-b9e21b9dcdc9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "810ebc34-8d11-40cb-866a-b9e21b9dcdc9@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "810ebc34-8d11-40cb-866a-b9e21b9dcdc9", + "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": "810ebc34-8d11-40cb-866a-b9e21b9dcdc9@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1209, + "height": 78, + "rawWidth": 1209, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -604.5, + -39, + 0, + 604.5, + -39, + 0, + -604.5, + 39, + 0, + 604.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 1209, + 78, + 0, + 0, + 1209, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -604.5, + -39, + 0 + ], + "maxPos": [ + 604.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "810ebc34-8d11-40cb-866a-b9e21b9dcdc9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "810ebc34-8d11-40cb-866a-b9e21b9dcdc9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal2.png b/assets/resources/i18nSprite2/es/Normal2.png new file mode 100755 index 0000000..44fc3b9 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal2.png differ diff --git a/assets/resources/i18nSprite2/es/Normal2.png.meta b/assets/resources/i18nSprite2/es/Normal2.png.meta new file mode 100644 index 0000000..466c876 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "06c83b1d-243b-4686-87b4-a128d088f9f6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "06c83b1d-243b-4686-87b4-a128d088f9f6@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "06c83b1d-243b-4686-87b4-a128d088f9f6", + "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": "06c83b1d-243b-4686-87b4-a128d088f9f6@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 333, + "height": 53, + "rawWidth": 337, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -166.5, + -26.5, + 0, + 166.5, + -26.5, + 0, + -166.5, + 26.5, + 0, + 166.5, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 335, + 55, + 2, + 2, + 335, + 2 + ], + "nuv": [ + 0.005934718100890208, + 0.03508771929824561, + 0.9940652818991098, + 0.03508771929824561, + 0.005934718100890208, + 0.9649122807017544, + 0.9940652818991098, + 0.9649122807017544 + ], + "minPos": [ + -166.5, + -26.5, + 0 + ], + "maxPos": [ + 166.5, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "06c83b1d-243b-4686-87b4-a128d088f9f6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "06c83b1d-243b-4686-87b4-a128d088f9f6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal3.png b/assets/resources/i18nSprite2/es/Normal3.png new file mode 100755 index 0000000..9966d7d Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal3.png differ diff --git a/assets/resources/i18nSprite2/es/Normal3.png.meta b/assets/resources/i18nSprite2/es/Normal3.png.meta new file mode 100644 index 0000000..456e72f --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dba954ce-bfea-4a25-8dab-8e0802784cc8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dba954ce-bfea-4a25-8dab-8e0802784cc8@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dba954ce-bfea-4a25-8dab-8e0802784cc8", + "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": "dba954ce-bfea-4a25-8dab-8e0802784cc8@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 491, + "height": 53, + "rawWidth": 495, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -245.5, + -26.5, + 0, + 245.5, + -26.5, + 0, + -245.5, + 26.5, + 0, + 245.5, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 493, + 55, + 2, + 2, + 493, + 2 + ], + "nuv": [ + 0.00404040404040404, + 0.03508771929824561, + 0.9959595959595959, + 0.03508771929824561, + 0.00404040404040404, + 0.9649122807017544, + 0.9959595959595959, + 0.9649122807017544 + ], + "minPos": [ + -245.5, + -26.5, + 0 + ], + "maxPos": [ + 245.5, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dba954ce-bfea-4a25-8dab-8e0802784cc8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dba954ce-bfea-4a25-8dab-8e0802784cc8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal4.png b/assets/resources/i18nSprite2/es/Normal4.png new file mode 100755 index 0000000..045d509 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal4.png differ diff --git a/assets/resources/i18nSprite2/es/Normal4.png.meta b/assets/resources/i18nSprite2/es/Normal4.png.meta new file mode 100644 index 0000000..88ade50 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "05d09706-af96-4381-82b6-61e1ca45a375", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "05d09706-af96-4381-82b6-61e1ca45a375@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "05d09706-af96-4381-82b6-61e1ca45a375", + "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": "05d09706-af96-4381-82b6-61e1ca45a375@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 501, + "height": 43, + "rawWidth": 505, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -250.5, + -21.5, + 0, + 250.5, + -21.5, + 0, + -250.5, + 21.5, + 0, + 250.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 503, + 45, + 2, + 2, + 503, + 2 + ], + "nuv": [ + 0.0039603960396039604, + 0.0425531914893617, + 0.996039603960396, + 0.0425531914893617, + 0.0039603960396039604, + 0.9574468085106383, + 0.996039603960396, + 0.9574468085106383 + ], + "minPos": [ + -250.5, + -21.5, + 0 + ], + "maxPos": [ + 250.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "05d09706-af96-4381-82b6-61e1ca45a375@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "05d09706-af96-4381-82b6-61e1ca45a375@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal5.png b/assets/resources/i18nSprite2/es/Normal5.png new file mode 100755 index 0000000..f58a8ba Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal5.png differ diff --git a/assets/resources/i18nSprite2/es/Normal5.png.meta b/assets/resources/i18nSprite2/es/Normal5.png.meta new file mode 100644 index 0000000..99ab4be --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "25fffe49-3b57-44a6-ab13-89c615185e5b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "25fffe49-3b57-44a6-ab13-89c615185e5b@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "25fffe49-3b57-44a6-ab13-89c615185e5b", + "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": "25fffe49-3b57-44a6-ab13-89c615185e5b@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 132, + "height": 28, + "rawWidth": 136, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -66, + -14, + 0, + 66, + -14, + 0, + -66, + 14, + 0, + 66, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 134, + 30, + 2, + 2, + 134, + 2 + ], + "nuv": [ + 0.014705882352941176, + 0.0625, + 0.9852941176470589, + 0.0625, + 0.014705882352941176, + 0.9375, + 0.9852941176470589, + 0.9375 + ], + "minPos": [ + -66, + -14, + 0 + ], + "maxPos": [ + 66, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "25fffe49-3b57-44a6-ab13-89c615185e5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "25fffe49-3b57-44a6-ab13-89c615185e5b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal6.png b/assets/resources/i18nSprite2/es/Normal6.png new file mode 100755 index 0000000..742f890 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal6.png differ diff --git a/assets/resources/i18nSprite2/es/Normal6.png.meta b/assets/resources/i18nSprite2/es/Normal6.png.meta new file mode 100644 index 0000000..89c70c0 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "46a84daa-84fb-468d-85c7-691950559255", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "46a84daa-84fb-468d-85c7-691950559255@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "46a84daa-84fb-468d-85c7-691950559255", + "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": "46a84daa-84fb-468d-85c7-691950559255@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 147, + "height": 43, + "rawWidth": 151, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -73.5, + -21.5, + 0, + 73.5, + -21.5, + 0, + -73.5, + 21.5, + 0, + 73.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 149, + 45, + 2, + 2, + 149, + 2 + ], + "nuv": [ + 0.013245033112582781, + 0.0425531914893617, + 0.9867549668874173, + 0.0425531914893617, + 0.013245033112582781, + 0.9574468085106383, + 0.9867549668874173, + 0.9574468085106383 + ], + "minPos": [ + -73.5, + -21.5, + 0 + ], + "maxPos": [ + 73.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "46a84daa-84fb-468d-85c7-691950559255@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "46a84daa-84fb-468d-85c7-691950559255@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal7.png b/assets/resources/i18nSprite2/es/Normal7.png new file mode 100755 index 0000000..4698f40 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal7.png differ diff --git a/assets/resources/i18nSprite2/es/Normal7.png.meta b/assets/resources/i18nSprite2/es/Normal7.png.meta new file mode 100644 index 0000000..9245ad1 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d2e1a636-34e7-4724-9817-a4008d436778", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d2e1a636-34e7-4724-9817-a4008d436778@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d2e1a636-34e7-4724-9817-a4008d436778", + "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": "d2e1a636-34e7-4724-9817-a4008d436778@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 354, + "height": 43, + "rawWidth": 358, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -177, + -21.5, + 0, + 177, + -21.5, + 0, + -177, + 21.5, + 0, + 177, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 356, + 45, + 2, + 2, + 356, + 2 + ], + "nuv": [ + 0.00558659217877095, + 0.0425531914893617, + 0.994413407821229, + 0.0425531914893617, + 0.00558659217877095, + 0.9574468085106383, + 0.994413407821229, + 0.9574468085106383 + ], + "minPos": [ + -177, + -21.5, + 0 + ], + "maxPos": [ + 177, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d2e1a636-34e7-4724-9817-a4008d436778@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d2e1a636-34e7-4724-9817-a4008d436778@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal8.png b/assets/resources/i18nSprite2/es/Normal8.png new file mode 100755 index 0000000..4d48ebb Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal8.png differ diff --git a/assets/resources/i18nSprite2/es/Normal8.png.meta b/assets/resources/i18nSprite2/es/Normal8.png.meta new file mode 100644 index 0000000..d4660df --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6609f38e-0598-4c45-97fd-ca94fd643f14", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6609f38e-0598-4c45-97fd-ca94fd643f14@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6609f38e-0598-4c45-97fd-ca94fd643f14", + "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": "6609f38e-0598-4c45-97fd-ca94fd643f14@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1268, + "height": 52, + "rawWidth": 1272, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -634, + -26, + 0, + 634, + -26, + 0, + -634, + 26, + 0, + 634, + 26, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 54, + 1270, + 54, + 2, + 2, + 1270, + 2 + ], + "nuv": [ + 0.0015723270440251573, + 0.03571428571428571, + 0.9984276729559748, + 0.03571428571428571, + 0.0015723270440251573, + 0.9642857142857143, + 0.9984276729559748, + 0.9642857142857143 + ], + "minPos": [ + -634, + -26, + 0 + ], + "maxPos": [ + 634, + 26, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6609f38e-0598-4c45-97fd-ca94fd643f14@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6609f38e-0598-4c45-97fd-ca94fd643f14@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Normal9.png b/assets/resources/i18nSprite2/es/Normal9.png new file mode 100755 index 0000000..d5dbadc Binary files /dev/null and b/assets/resources/i18nSprite2/es/Normal9.png differ diff --git a/assets/resources/i18nSprite2/es/Normal9.png.meta b/assets/resources/i18nSprite2/es/Normal9.png.meta new file mode 100644 index 0000000..0e6eb21 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d6b581c5-1d86-4170-9385-20b1cec3ba1a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d6b581c5-1d86-4170-9385-20b1cec3ba1a@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d6b581c5-1d86-4170-9385-20b1cec3ba1a", + "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": "d6b581c5-1d86-4170-9385-20b1cec3ba1a@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 559, + "height": 75, + "rawWidth": 559, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -279.5, + -37.5, + 0, + 279.5, + -37.5, + 0, + -279.5, + 37.5, + 0, + 279.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 559, + 75, + 0, + 0, + 559, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -279.5, + -37.5, + 0 + ], + "maxPos": [ + 279.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d6b581c5-1d86-4170-9385-20b1cec3ba1a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d6b581c5-1d86-4170-9385-20b1cec3ba1a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Win1.png b/assets/resources/i18nSprite2/es/Win1.png new file mode 100755 index 0000000..7f63af6 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Win1.png differ diff --git a/assets/resources/i18nSprite2/es/Win1.png.meta b/assets/resources/i18nSprite2/es/Win1.png.meta new file mode 100644 index 0000000..5ef8251 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d25910cc-1fcf-459f-bf1b-c16f69182f54", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d25910cc-1fcf-459f-bf1b-c16f69182f54@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d25910cc-1fcf-459f-bf1b-c16f69182f54", + "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": "d25910cc-1fcf-459f-bf1b-c16f69182f54@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 919, + "height": 253, + "rawWidth": 919, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -459.5, + -126.5, + 0, + 459.5, + -126.5, + 0, + -459.5, + 126.5, + 0, + 459.5, + 126.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 253, + 919, + 253, + 0, + 0, + 919, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -459.5, + -126.5, + 0 + ], + "maxPos": [ + 459.5, + 126.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d25910cc-1fcf-459f-bf1b-c16f69182f54@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d25910cc-1fcf-459f-bf1b-c16f69182f54@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Win2.png b/assets/resources/i18nSprite2/es/Win2.png new file mode 100755 index 0000000..bea8cde Binary files /dev/null and b/assets/resources/i18nSprite2/es/Win2.png differ diff --git a/assets/resources/i18nSprite2/es/Win2.png.meta b/assets/resources/i18nSprite2/es/Win2.png.meta new file mode 100644 index 0000000..595d5d0 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19209760-e7ba-48a0-8e62-cc0f800ca4b5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19209760-e7ba-48a0-8e62-cc0f800ca4b5@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19209760-e7ba-48a0-8e62-cc0f800ca4b5", + "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": "19209760-e7ba-48a0-8e62-cc0f800ca4b5@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 989, + "height": 267, + "rawWidth": 989, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -494.5, + -133.5, + 0, + 494.5, + -133.5, + 0, + -494.5, + 133.5, + 0, + 494.5, + 133.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 267, + 989, + 267, + 0, + 0, + 989, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -494.5, + -133.5, + 0 + ], + "maxPos": [ + 494.5, + 133.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19209760-e7ba-48a0-8e62-cc0f800ca4b5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19209760-e7ba-48a0-8e62-cc0f800ca4b5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/Win3.png b/assets/resources/i18nSprite2/es/Win3.png new file mode 100755 index 0000000..e627d54 Binary files /dev/null and b/assets/resources/i18nSprite2/es/Win3.png differ diff --git a/assets/resources/i18nSprite2/es/Win3.png.meta b/assets/resources/i18nSprite2/es/Win3.png.meta new file mode 100644 index 0000000..064ccc0 --- /dev/null +++ b/assets/resources/i18nSprite2/es/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2a77ea72-df7c-4c22-9b41-9a13bbd5717b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2a77ea72-df7c-4c22-9b41-9a13bbd5717b@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2a77ea72-df7c-4c22-9b41-9a13bbd5717b", + "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": "2a77ea72-df7c-4c22-9b41-9a13bbd5717b@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 817, + "height": 458, + "rawWidth": 817, + "rawHeight": 458, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -408.5, + -229, + 0, + 408.5, + -229, + 0, + -408.5, + 229, + 0, + 408.5, + 229, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 458, + 817, + 458, + 0, + 0, + 817, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -408.5, + -229, + 0 + ], + "maxPos": [ + 408.5, + 229, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2a77ea72-df7c-4c22-9b41-9a13bbd5717b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2a77ea72-df7c-4c22-9b41-9a13bbd5717b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/logo1.png b/assets/resources/i18nSprite2/es/logo1.png new file mode 100755 index 0000000..cd578cd Binary files /dev/null and b/assets/resources/i18nSprite2/es/logo1.png differ diff --git a/assets/resources/i18nSprite2/es/logo1.png.meta b/assets/resources/i18nSprite2/es/logo1.png.meta new file mode 100644 index 0000000..bd5b434 --- /dev/null +++ b/assets/resources/i18nSprite2/es/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8f62439e-b963-44e5-8498-21ece4903a2b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8f62439e-b963-44e5-8498-21ece4903a2b@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8f62439e-b963-44e5-8498-21ece4903a2b", + "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": "8f62439e-b963-44e5-8498-21ece4903a2b@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 850, + "height": 298, + "rawWidth": 850, + "rawHeight": 298, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -425, + -149, + 0, + 425, + -149, + 0, + -425, + 149, + 0, + 425, + 149, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 298, + 850, + 298, + 0, + 0, + 850, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -425, + -149, + 0 + ], + "maxPos": [ + 425, + 149, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8f62439e-b963-44e5-8498-21ece4903a2b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8f62439e-b963-44e5-8498-21ece4903a2b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/es/zxksctter.png b/assets/resources/i18nSprite2/es/zxksctter.png new file mode 100755 index 0000000..b8b0583 Binary files /dev/null and b/assets/resources/i18nSprite2/es/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/es/zxksctter.png.meta b/assets/resources/i18nSprite2/es/zxksctter.png.meta new file mode 100644 index 0000000..49b9131 --- /dev/null +++ b/assets/resources/i18nSprite2/es/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ffe2be2-0acd-42fc-86f8-69692a911419", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ffe2be2-0acd-42fc-86f8-69692a911419@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ffe2be2-0acd-42fc-86f8-69692a911419", + "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": "9ffe2be2-0acd-42fc-86f8-69692a911419@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 239, + "height": 95, + "rawWidth": 243, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119.5, + -47.5, + 0, + 119.5, + -47.5, + 0, + -119.5, + 47.5, + 0, + 119.5, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 97, + 241, + 97, + 2, + 2, + 241, + 2 + ], + "nuv": [ + 0.00823045267489712, + 0.020202020202020204, + 0.9917695473251029, + 0.020202020202020204, + 0.00823045267489712, + 0.9797979797979798, + 0.9917695473251029, + 0.9797979797979798 + ], + "minPos": [ + -119.5, + -47.5, + 0 + ], + "maxPos": [ + 119.5, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ffe2be2-0acd-42fc-86f8-69692a911419@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ffe2be2-0acd-42fc-86f8-69692a911419@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi.meta b/assets/resources/i18nSprite2/fi.meta new file mode 100644 index 0000000..1283ae6 --- /dev/null +++ b/assets/resources/i18nSprite2/fi.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "193217df-b255-4220-96f9-3c2ab264eb09", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/fi/Buy1.png b/assets/resources/i18nSprite2/fi/Buy1.png new file mode 100755 index 0000000..1e1e309 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Buy1.png differ diff --git a/assets/resources/i18nSprite2/fi/Buy1.png.meta b/assets/resources/i18nSprite2/fi/Buy1.png.meta new file mode 100644 index 0000000..2541d9e --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a355df91-492c-4ea9-8a89-6c6e28e1e57c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a355df91-492c-4ea9-8a89-6c6e28e1e57c@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a355df91-492c-4ea9-8a89-6c6e28e1e57c", + "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": "a355df91-492c-4ea9-8a89-6c6e28e1e57c@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 881, + "height": 178, + "rawWidth": 881, + "rawHeight": 178, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -440.5, + -89, + 0, + 440.5, + -89, + 0, + -440.5, + 89, + 0, + 440.5, + 89, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 178, + 881, + 178, + 0, + 0, + 881, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -440.5, + -89, + 0 + ], + "maxPos": [ + 440.5, + 89, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a355df91-492c-4ea9-8a89-6c6e28e1e57c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a355df91-492c-4ea9-8a89-6c6e28e1e57c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Buy2.png b/assets/resources/i18nSprite2/fi/Buy2.png new file mode 100755 index 0000000..6c62ece Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Buy2.png differ diff --git a/assets/resources/i18nSprite2/fi/Buy2.png.meta b/assets/resources/i18nSprite2/fi/Buy2.png.meta new file mode 100644 index 0000000..28ca4f4 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b98cd5cf-f369-41d3-b03e-0c483ac81571", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b98cd5cf-f369-41d3-b03e-0c483ac81571@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b98cd5cf-f369-41d3-b03e-0c483ac81571", + "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": "b98cd5cf-f369-41d3-b03e-0c483ac81571@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 235, + "height": 83, + "rawWidth": 235, + "rawHeight": 83, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -117.5, + -41.5, + 0, + 117.5, + -41.5, + 0, + -117.5, + 41.5, + 0, + 117.5, + 41.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 83, + 235, + 83, + 0, + 0, + 235, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -117.5, + -41.5, + 0 + ], + "maxPos": [ + 117.5, + 41.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b98cd5cf-f369-41d3-b03e-0c483ac81571@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b98cd5cf-f369-41d3-b03e-0c483ac81571@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Buy4.png b/assets/resources/i18nSprite2/fi/Buy4.png new file mode 100755 index 0000000..a7d997c Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Buy4.png differ diff --git a/assets/resources/i18nSprite2/fi/Buy4.png.meta b/assets/resources/i18nSprite2/fi/Buy4.png.meta new file mode 100644 index 0000000..2cbabd9 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e4949ade-5139-4c97-9314-010376763f11", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e4949ade-5139-4c97-9314-010376763f11@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e4949ade-5139-4c97-9314-010376763f11", + "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": "e4949ade-5139-4c97-9314-010376763f11@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 223, + "height": 77, + "rawWidth": 223, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -111.5, + -38.5, + 0, + 111.5, + -38.5, + 0, + -111.5, + 38.5, + 0, + 111.5, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 223, + 77, + 0, + 0, + 223, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -111.5, + -38.5, + 0 + ], + "maxPos": [ + 111.5, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e4949ade-5139-4c97-9314-010376763f11@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e4949ade-5139-4c97-9314-010376763f11@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Buy5.png b/assets/resources/i18nSprite2/fi/Buy5.png new file mode 100755 index 0000000..3ea05e7 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Buy5.png differ diff --git a/assets/resources/i18nSprite2/fi/Buy5.png.meta b/assets/resources/i18nSprite2/fi/Buy5.png.meta new file mode 100644 index 0000000..507e33a --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "095c2963-2241-475d-9346-24e113ba7422", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "095c2963-2241-475d-9346-24e113ba7422@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "095c2963-2241-475d-9346-24e113ba7422", + "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": "095c2963-2241-475d-9346-24e113ba7422@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 186, + "height": 68, + "rawWidth": 190, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -93, + -34, + 0, + 93, + -34, + 0, + -93, + 34, + 0, + 93, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 70, + 188, + 70, + 2, + 2, + 188, + 2 + ], + "nuv": [ + 0.010526315789473684, + 0.027777777777777776, + 0.9894736842105263, + 0.027777777777777776, + 0.010526315789473684, + 0.9722222222222222, + 0.9894736842105263, + 0.9722222222222222 + ], + "minPos": [ + -93, + -34, + 0 + ], + "maxPos": [ + 93, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "095c2963-2241-475d-9346-24e113ba7422@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "095c2963-2241-475d-9346-24e113ba7422@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Buy8.png b/assets/resources/i18nSprite2/fi/Buy8.png new file mode 100755 index 0000000..1f856b7 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Buy8.png differ diff --git a/assets/resources/i18nSprite2/fi/Buy8.png.meta b/assets/resources/i18nSprite2/fi/Buy8.png.meta new file mode 100644 index 0000000..25465b5 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "98a6bb04-c960-4d01-803a-c510beb91c7c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "98a6bb04-c960-4d01-803a-c510beb91c7c@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "98a6bb04-c960-4d01-803a-c510beb91c7c", + "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": "98a6bb04-c960-4d01-803a-c510beb91c7c@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 271, + "height": 69, + "rawWidth": 271, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -135.5, + -34.5, + 0, + 135.5, + -34.5, + 0, + -135.5, + 34.5, + 0, + 135.5, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 69, + 271, + 69, + 0, + 0, + 271, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -135.5, + -34.5, + 0 + ], + "maxPos": [ + 135.5, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "98a6bb04-c960-4d01-803a-c510beb91c7c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "98a6bb04-c960-4d01-803a-c510beb91c7c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FREELoading.png b/assets/resources/i18nSprite2/fi/FREELoading.png new file mode 100755 index 0000000..a88f46f Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/fi/FREELoading.png.meta b/assets/resources/i18nSprite2/fi/FREELoading.png.meta new file mode 100644 index 0000000..33438f2 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e80979fa-1506-435a-b0cb-b5c675de82ac", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e80979fa-1506-435a-b0cb-b5c675de82ac@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e80979fa-1506-435a-b0cb-b5c675de82ac", + "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": "e80979fa-1506-435a-b0cb-b5c675de82ac@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1016, + "height": 195, + "rawWidth": 1016, + "rawHeight": 195, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508, + -97.5, + 0, + 508, + -97.5, + 0, + -508, + 97.5, + 0, + 508, + 97.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 195, + 1016, + 195, + 0, + 0, + 1016, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508, + -97.5, + 0 + ], + "maxPos": [ + 508, + 97.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e80979fa-1506-435a-b0cb-b5c675de82ac@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e80979fa-1506-435a-b0cb-b5c675de82ac@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FREELoading1.png b/assets/resources/i18nSprite2/fi/FREELoading1.png new file mode 100755 index 0000000..9234731 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/fi/FREELoading1.png.meta b/assets/resources/i18nSprite2/fi/FREELoading1.png.meta new file mode 100644 index 0000000..966b483 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a3328d46-602e-45fe-b272-77ebe3dc6c21", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a3328d46-602e-45fe-b272-77ebe3dc6c21@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a3328d46-602e-45fe-b272-77ebe3dc6c21", + "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": "a3328d46-602e-45fe-b272-77ebe3dc6c21@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 956, + "height": 138, + "rawWidth": 960, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -478, + -69, + 0, + 478, + -69, + 0, + -478, + 69, + 0, + 478, + 69, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 140, + 958, + 140, + 2, + 2, + 958, + 2 + ], + "nuv": [ + 0.0020833333333333333, + 0.014084507042253521, + 0.9979166666666667, + 0.014084507042253521, + 0.0020833333333333333, + 0.9859154929577465, + 0.9979166666666667, + 0.9859154929577465 + ], + "minPos": [ + -478, + -69, + 0 + ], + "maxPos": [ + 478, + 69, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a3328d46-602e-45fe-b272-77ebe3dc6c21@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a3328d46-602e-45fe-b272-77ebe3dc6c21@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FREELoading2.png b/assets/resources/i18nSprite2/fi/FREELoading2.png new file mode 100755 index 0000000..38c064c Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/fi/FREELoading2.png.meta b/assets/resources/i18nSprite2/fi/FREELoading2.png.meta new file mode 100644 index 0000000..6080e4f --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "030fe619-e1d7-4120-a4f4-8b6888439949", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "030fe619-e1d7-4120-a4f4-8b6888439949@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "030fe619-e1d7-4120-a4f4-8b6888439949", + "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": "030fe619-e1d7-4120-a4f4-8b6888439949@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 257, + "height": 88, + "rawWidth": 257, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -128.5, + -44, + 0, + 128.5, + -44, + 0, + -128.5, + 44, + 0, + 128.5, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 257, + 88, + 0, + 0, + 257, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -128.5, + -44, + 0 + ], + "maxPos": [ + 128.5, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "030fe619-e1d7-4120-a4f4-8b6888439949@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "030fe619-e1d7-4120-a4f4-8b6888439949@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FREESPIN2.png b/assets/resources/i18nSprite2/fi/FREESPIN2.png new file mode 100755 index 0000000..6f0248b Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/fi/FREESPIN2.png.meta b/assets/resources/i18nSprite2/fi/FREESPIN2.png.meta new file mode 100644 index 0000000..9375c53 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3855a1e-db50-4e45-8b4b-f315701042e0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3855a1e-db50-4e45-8b4b-f315701042e0@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3855a1e-db50-4e45-8b4b-f315701042e0", + "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": "d3855a1e-db50-4e45-8b4b-f315701042e0@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 949, + "height": 75, + "rawWidth": 949, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -474.5, + -37.5, + 0, + 474.5, + -37.5, + 0, + -474.5, + 37.5, + 0, + 474.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 949, + 75, + 0, + 0, + 949, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -474.5, + -37.5, + 0 + ], + "maxPos": [ + 474.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3855a1e-db50-4e45-8b4b-f315701042e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3855a1e-db50-4e45-8b4b-f315701042e0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FREESPIN4.png b/assets/resources/i18nSprite2/fi/FREESPIN4.png new file mode 100755 index 0000000..5581e83 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/fi/FREESPIN4.png.meta b/assets/resources/i18nSprite2/fi/FREESPIN4.png.meta new file mode 100644 index 0000000..c240a47 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "29c3b718-3cd7-4db7-afb6-b19efc08b7b5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "29c3b718-3cd7-4db7-afb6-b19efc08b7b5@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "29c3b718-3cd7-4db7-afb6-b19efc08b7b5", + "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": "29c3b718-3cd7-4db7-afb6-b19efc08b7b5@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 277, + "height": 92, + "rawWidth": 277, + "rawHeight": 92, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -138.5, + -46, + 0, + 138.5, + -46, + 0, + -138.5, + 46, + 0, + 138.5, + 46, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 92, + 277, + 92, + 0, + 0, + 277, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -138.5, + -46, + 0 + ], + "maxPos": [ + 138.5, + 46, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "29c3b718-3cd7-4db7-afb6-b19efc08b7b5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "29c3b718-3cd7-4db7-afb6-b19efc08b7b5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FREESPIN5.png b/assets/resources/i18nSprite2/fi/FREESPIN5.png new file mode 100755 index 0000000..db5155d Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/fi/FREESPIN5.png.meta b/assets/resources/i18nSprite2/fi/FREESPIN5.png.meta new file mode 100644 index 0000000..f06a84f --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ca0f3aa9-e9cd-4689-a9a4-2a6f857e17e5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ca0f3aa9-e9cd-4689-a9a4-2a6f857e17e5@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ca0f3aa9-e9cd-4689-a9a4-2a6f857e17e5", + "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": "ca0f3aa9-e9cd-4689-a9a4-2a6f857e17e5@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1019, + "height": 227, + "rawWidth": 1019, + "rawHeight": 227, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509.5, + -113.5, + 0, + 509.5, + -113.5, + 0, + -509.5, + 113.5, + 0, + 509.5, + 113.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 227, + 1019, + 227, + 0, + 0, + 1019, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509.5, + -113.5, + 0 + ], + "maxPos": [ + 509.5, + 113.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ca0f3aa9-e9cd-4689-a9a4-2a6f857e17e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ca0f3aa9-e9cd-4689-a9a4-2a6f857e17e5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/FSFS.png b/assets/resources/i18nSprite2/fi/FSFS.png new file mode 100755 index 0000000..d7ad0f4 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/FSFS.png differ diff --git a/assets/resources/i18nSprite2/fi/FSFS.png.meta b/assets/resources/i18nSprite2/fi/FSFS.png.meta new file mode 100644 index 0000000..e1df3bd --- /dev/null +++ b/assets/resources/i18nSprite2/fi/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ad643244-91ad-4eaf-b502-d25ea5b38d5d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ad643244-91ad-4eaf-b502-d25ea5b38d5d@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ad643244-91ad-4eaf-b502-d25ea5b38d5d", + "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": "ad643244-91ad-4eaf-b502-d25ea5b38d5d@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 610, + "height": 117, + "rawWidth": 610, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -305, + -58.5, + 0, + 305, + -58.5, + 0, + -305, + 58.5, + 0, + 305, + 58.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 117, + 610, + 117, + 0, + 0, + 610, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -305, + -58.5, + 0 + ], + "maxPos": [ + 305, + 58.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ad643244-91ad-4eaf-b502-d25ea5b38d5d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ad643244-91ad-4eaf-b502-d25ea5b38d5d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Free.png b/assets/resources/i18nSprite2/fi/Free.png new file mode 100755 index 0000000..7fc4951 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Free.png differ diff --git a/assets/resources/i18nSprite2/fi/Free.png.meta b/assets/resources/i18nSprite2/fi/Free.png.meta new file mode 100644 index 0000000..cdac2b8 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dd21764a-cf0f-409e-a0b4-6db24fb8f245", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dd21764a-cf0f-409e-a0b4-6db24fb8f245@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dd21764a-cf0f-409e-a0b4-6db24fb8f245", + "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": "dd21764a-cf0f-409e-a0b4-6db24fb8f245@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 548, + "height": 162, + "rawWidth": 548, + "rawHeight": 162, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -274, + -81, + 0, + 274, + -81, + 0, + -274, + 81, + 0, + 274, + 81, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 162, + 548, + 162, + 0, + 0, + 548, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -274, + -81, + 0 + ], + "maxPos": [ + 274, + 81, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dd21764a-cf0f-409e-a0b4-6db24fb8f245@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dd21764a-cf0f-409e-a0b4-6db24fb8f245@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Free1.png b/assets/resources/i18nSprite2/fi/Free1.png new file mode 100755 index 0000000..fa73c7a Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Free1.png differ diff --git a/assets/resources/i18nSprite2/fi/Free1.png.meta b/assets/resources/i18nSprite2/fi/Free1.png.meta new file mode 100644 index 0000000..c86f5c1 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "33a2aa7b-9803-4321-8759-8446ebd37b11", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "33a2aa7b-9803-4321-8759-8446ebd37b11@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "33a2aa7b-9803-4321-8759-8446ebd37b11", + "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": "33a2aa7b-9803-4321-8759-8446ebd37b11@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 503, + "height": 157, + "rawWidth": 503, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -251.5, + -78.5, + 0, + 251.5, + -78.5, + 0, + -251.5, + 78.5, + 0, + 251.5, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 503, + 157, + 0, + 0, + 503, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -251.5, + -78.5, + 0 + ], + "maxPos": [ + 251.5, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "33a2aa7b-9803-4321-8759-8446ebd37b11@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "33a2aa7b-9803-4321-8759-8446ebd37b11@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal1.png b/assets/resources/i18nSprite2/fi/Normal1.png new file mode 100755 index 0000000..37ab299 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal1.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal1.png.meta b/assets/resources/i18nSprite2/fi/Normal1.png.meta new file mode 100644 index 0000000..ffb3ab2 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4c1fed3a-12f3-4a6c-a518-14883afb6ca5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4c1fed3a-12f3-4a6c-a518-14883afb6ca5@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4c1fed3a-12f3-4a6c-a518-14883afb6ca5", + "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": "4c1fed3a-12f3-4a6c-a518-14883afb6ca5@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 690, + "height": 51, + "rawWidth": 694, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -345, + -25.5, + 0, + 345, + -25.5, + 0, + -345, + 25.5, + 0, + 345, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 692, + 53, + 2, + 2, + 692, + 2 + ], + "nuv": [ + 0.002881844380403458, + 0.03636363636363636, + 0.9971181556195965, + 0.03636363636363636, + 0.002881844380403458, + 0.9636363636363636, + 0.9971181556195965, + 0.9636363636363636 + ], + "minPos": [ + -345, + -25.5, + 0 + ], + "maxPos": [ + 345, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4c1fed3a-12f3-4a6c-a518-14883afb6ca5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4c1fed3a-12f3-4a6c-a518-14883afb6ca5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal10.png b/assets/resources/i18nSprite2/fi/Normal10.png new file mode 100755 index 0000000..8e74374 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal10.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal10.png.meta b/assets/resources/i18nSprite2/fi/Normal10.png.meta new file mode 100644 index 0000000..626be62 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "af93724c-6aff-47c2-b683-97762bc059ea", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "af93724c-6aff-47c2-b683-97762bc059ea@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "af93724c-6aff-47c2-b683-97762bc059ea", + "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": "af93724c-6aff-47c2-b683-97762bc059ea@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 577, + "height": 49, + "rawWidth": 581, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -288.5, + -24.5, + 0, + 288.5, + -24.5, + 0, + -288.5, + 24.5, + 0, + 288.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 579, + 51, + 2, + 2, + 579, + 2 + ], + "nuv": [ + 0.0034423407917383822, + 0.03773584905660377, + 0.9965576592082617, + 0.03773584905660377, + 0.0034423407917383822, + 0.9622641509433962, + 0.9965576592082617, + 0.9622641509433962 + ], + "minPos": [ + -288.5, + -24.5, + 0 + ], + "maxPos": [ + 288.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "af93724c-6aff-47c2-b683-97762bc059ea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "af93724c-6aff-47c2-b683-97762bc059ea@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal11.png b/assets/resources/i18nSprite2/fi/Normal11.png new file mode 100755 index 0000000..db2038a Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal11.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal11.png.meta b/assets/resources/i18nSprite2/fi/Normal11.png.meta new file mode 100644 index 0000000..b46e3ab --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a559005f-3e13-4a43-a428-ea423f06162a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a559005f-3e13-4a43-a428-ea423f06162a@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a559005f-3e13-4a43-a428-ea423f06162a", + "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": "a559005f-3e13-4a43-a428-ea423f06162a@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 727, + "height": 78, + "rawWidth": 727, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -363.5, + -39, + 0, + 363.5, + -39, + 0, + -363.5, + 39, + 0, + 363.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 727, + 78, + 0, + 0, + 727, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -363.5, + -39, + 0 + ], + "maxPos": [ + 363.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a559005f-3e13-4a43-a428-ea423f06162a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a559005f-3e13-4a43-a428-ea423f06162a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal2.png b/assets/resources/i18nSprite2/fi/Normal2.png new file mode 100755 index 0000000..15165ad Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal2.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal2.png.meta b/assets/resources/i18nSprite2/fi/Normal2.png.meta new file mode 100644 index 0000000..40b4399 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "93baba77-89d0-4a56-9359-177db3f114a5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "93baba77-89d0-4a56-9359-177db3f114a5@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "93baba77-89d0-4a56-9359-177db3f114a5", + "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": "93baba77-89d0-4a56-9359-177db3f114a5@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 155, + "height": 43, + "rawWidth": 159, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -77.5, + -21.5, + 0, + 77.5, + -21.5, + 0, + -77.5, + 21.5, + 0, + 77.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 157, + 45, + 2, + 2, + 157, + 2 + ], + "nuv": [ + 0.012578616352201259, + 0.0425531914893617, + 0.9874213836477987, + 0.0425531914893617, + 0.012578616352201259, + 0.9574468085106383, + 0.9874213836477987, + 0.9574468085106383 + ], + "minPos": [ + -77.5, + -21.5, + 0 + ], + "maxPos": [ + 77.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "93baba77-89d0-4a56-9359-177db3f114a5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "93baba77-89d0-4a56-9359-177db3f114a5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal3.png b/assets/resources/i18nSprite2/fi/Normal3.png new file mode 100755 index 0000000..18e0065 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal3.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal3.png.meta b/assets/resources/i18nSprite2/fi/Normal3.png.meta new file mode 100644 index 0000000..e8c14e8 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8ddc670f-4f8e-4dca-bf51-69012d06ec55", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8ddc670f-4f8e-4dca-bf51-69012d06ec55@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8ddc670f-4f8e-4dca-bf51-69012d06ec55", + "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": "8ddc670f-4f8e-4dca-bf51-69012d06ec55@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 292, + "height": 43, + "rawWidth": 296, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -146, + -21.5, + 0, + 146, + -21.5, + 0, + -146, + 21.5, + 0, + 146, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 294, + 45, + 2, + 2, + 294, + 2 + ], + "nuv": [ + 0.006756756756756757, + 0.0425531914893617, + 0.9932432432432432, + 0.0425531914893617, + 0.006756756756756757, + 0.9574468085106383, + 0.9932432432432432, + 0.9574468085106383 + ], + "minPos": [ + -146, + -21.5, + 0 + ], + "maxPos": [ + 146, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8ddc670f-4f8e-4dca-bf51-69012d06ec55@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8ddc670f-4f8e-4dca-bf51-69012d06ec55@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal4.png b/assets/resources/i18nSprite2/fi/Normal4.png new file mode 100755 index 0000000..08188dd Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal4.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal4.png.meta b/assets/resources/i18nSprite2/fi/Normal4.png.meta new file mode 100644 index 0000000..19e13e1 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9cadc023-3a4a-4ce4-ba9d-bc370e4d8fc9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9cadc023-3a4a-4ce4-ba9d-bc370e4d8fc9@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9cadc023-3a4a-4ce4-ba9d-bc370e4d8fc9", + "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": "9cadc023-3a4a-4ce4-ba9d-bc370e4d8fc9@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 513, + "height": 43, + "rawWidth": 517, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -256.5, + -21.5, + 0, + 256.5, + -21.5, + 0, + -256.5, + 21.5, + 0, + 256.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 515, + 45, + 2, + 2, + 515, + 2 + ], + "nuv": [ + 0.0038684719535783366, + 0.0425531914893617, + 0.9961315280464217, + 0.0425531914893617, + 0.0038684719535783366, + 0.9574468085106383, + 0.9961315280464217, + 0.9574468085106383 + ], + "minPos": [ + -256.5, + -21.5, + 0 + ], + "maxPos": [ + 256.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9cadc023-3a4a-4ce4-ba9d-bc370e4d8fc9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9cadc023-3a4a-4ce4-ba9d-bc370e4d8fc9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal5.png b/assets/resources/i18nSprite2/fi/Normal5.png new file mode 100755 index 0000000..1e57190 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal5.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal5.png.meta b/assets/resources/i18nSprite2/fi/Normal5.png.meta new file mode 100644 index 0000000..05ab609 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f067d7b-a744-4c19-8f2c-10d7f105a221", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f067d7b-a744-4c19-8f2c-10d7f105a221@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f067d7b-a744-4c19-8f2c-10d7f105a221", + "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": "4f067d7b-a744-4c19-8f2c-10d7f105a221@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 74, + "height": 28, + "rawWidth": 78, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -37, + -14, + 0, + 37, + -14, + 0, + -37, + 14, + 0, + 37, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 76, + 30, + 2, + 2, + 76, + 2 + ], + "nuv": [ + 0.02564102564102564, + 0.0625, + 0.9743589743589743, + 0.0625, + 0.02564102564102564, + 0.9375, + 0.9743589743589743, + 0.9375 + ], + "minPos": [ + -37, + -14, + 0 + ], + "maxPos": [ + 37, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f067d7b-a744-4c19-8f2c-10d7f105a221@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f067d7b-a744-4c19-8f2c-10d7f105a221@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal6.png b/assets/resources/i18nSprite2/fi/Normal6.png new file mode 100755 index 0000000..73bcbeb Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal6.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal6.png.meta b/assets/resources/i18nSprite2/fi/Normal6.png.meta new file mode 100644 index 0000000..5637681 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e0a9503d-9c07-4c9e-8559-b28a07ee0ca6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e0a9503d-9c07-4c9e-8559-b28a07ee0ca6@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e0a9503d-9c07-4c9e-8559-b28a07ee0ca6", + "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": "e0a9503d-9c07-4c9e-8559-b28a07ee0ca6@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 149, + "height": 43, + "rawWidth": 153, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -74.5, + -21.5, + 0, + 74.5, + -21.5, + 0, + -74.5, + 21.5, + 0, + 74.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 151, + 45, + 2, + 2, + 151, + 2 + ], + "nuv": [ + 0.013071895424836602, + 0.0425531914893617, + 0.9869281045751634, + 0.0425531914893617, + 0.013071895424836602, + 0.9574468085106383, + 0.9869281045751634, + 0.9574468085106383 + ], + "minPos": [ + -74.5, + -21.5, + 0 + ], + "maxPos": [ + 74.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e0a9503d-9c07-4c9e-8559-b28a07ee0ca6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e0a9503d-9c07-4c9e-8559-b28a07ee0ca6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal7.png b/assets/resources/i18nSprite2/fi/Normal7.png new file mode 100755 index 0000000..ec1e37f Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal7.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal7.png.meta b/assets/resources/i18nSprite2/fi/Normal7.png.meta new file mode 100644 index 0000000..23aaf50 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9500be22-16c3-4d32-aebc-a8aa7b2ccbc8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9500be22-16c3-4d32-aebc-a8aa7b2ccbc8@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9500be22-16c3-4d32-aebc-a8aa7b2ccbc8", + "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": "9500be22-16c3-4d32-aebc-a8aa7b2ccbc8@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 366, + "height": 43, + "rawWidth": 370, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -183, + -21.5, + 0, + 183, + -21.5, + 0, + -183, + 21.5, + 0, + 183, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 368, + 45, + 2, + 2, + 368, + 2 + ], + "nuv": [ + 0.005405405405405406, + 0.0425531914893617, + 0.9945945945945946, + 0.0425531914893617, + 0.005405405405405406, + 0.9574468085106383, + 0.9945945945945946, + 0.9574468085106383 + ], + "minPos": [ + -183, + -21.5, + 0 + ], + "maxPos": [ + 183, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9500be22-16c3-4d32-aebc-a8aa7b2ccbc8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9500be22-16c3-4d32-aebc-a8aa7b2ccbc8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal8.png b/assets/resources/i18nSprite2/fi/Normal8.png new file mode 100755 index 0000000..231538c Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal8.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal8.png.meta b/assets/resources/i18nSprite2/fi/Normal8.png.meta new file mode 100644 index 0000000..dd8983d --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e75bb4b-bed9-4883-9368-bf23ba77613f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e75bb4b-bed9-4883-9368-bf23ba77613f@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e75bb4b-bed9-4883-9368-bf23ba77613f", + "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": "6e75bb4b-bed9-4883-9368-bf23ba77613f@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1021, + "height": 51, + "rawWidth": 1025, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -510.5, + -25.5, + 0, + 510.5, + -25.5, + 0, + -510.5, + 25.5, + 0, + 510.5, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 1023, + 53, + 2, + 2, + 1023, + 2 + ], + "nuv": [ + 0.001951219512195122, + 0.03636363636363636, + 0.9980487804878049, + 0.03636363636363636, + 0.001951219512195122, + 0.9636363636363636, + 0.9980487804878049, + 0.9636363636363636 + ], + "minPos": [ + -510.5, + -25.5, + 0 + ], + "maxPos": [ + 510.5, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e75bb4b-bed9-4883-9368-bf23ba77613f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e75bb4b-bed9-4883-9368-bf23ba77613f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Normal9.png b/assets/resources/i18nSprite2/fi/Normal9.png new file mode 100755 index 0000000..dd384a9 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Normal9.png differ diff --git a/assets/resources/i18nSprite2/fi/Normal9.png.meta b/assets/resources/i18nSprite2/fi/Normal9.png.meta new file mode 100644 index 0000000..587292f --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee000434-3b52-4c59-b9fb-9c0496d4ed32", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee000434-3b52-4c59-b9fb-9c0496d4ed32@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee000434-3b52-4c59-b9fb-9c0496d4ed32", + "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": "ee000434-3b52-4c59-b9fb-9c0496d4ed32@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 810, + "height": 75, + "rawWidth": 810, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -405, + -37.5, + 0, + 405, + -37.5, + 0, + -405, + 37.5, + 0, + 405, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 810, + 75, + 0, + 0, + 810, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -405, + -37.5, + 0 + ], + "maxPos": [ + 405, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee000434-3b52-4c59-b9fb-9c0496d4ed32@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee000434-3b52-4c59-b9fb-9c0496d4ed32@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Win1.png b/assets/resources/i18nSprite2/fi/Win1.png new file mode 100755 index 0000000..0e3d3d9 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Win1.png differ diff --git a/assets/resources/i18nSprite2/fi/Win1.png.meta b/assets/resources/i18nSprite2/fi/Win1.png.meta new file mode 100644 index 0000000..e8e9e6e --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c850abfa-737f-456b-8dc3-d3b05d03c473", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c850abfa-737f-456b-8dc3-d3b05d03c473@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c850abfa-737f-456b-8dc3-d3b05d03c473", + "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": "c850abfa-737f-456b-8dc3-d3b05d03c473@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1014, + "height": 286, + "rawWidth": 1014, + "rawHeight": 286, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -507, + -143, + 0, + 507, + -143, + 0, + -507, + 143, + 0, + 507, + 143, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 286, + 1014, + 286, + 0, + 0, + 1014, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -507, + -143, + 0 + ], + "maxPos": [ + 507, + 143, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c850abfa-737f-456b-8dc3-d3b05d03c473@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c850abfa-737f-456b-8dc3-d3b05d03c473@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Win2.png b/assets/resources/i18nSprite2/fi/Win2.png new file mode 100755 index 0000000..c8ac353 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Win2.png differ diff --git a/assets/resources/i18nSprite2/fi/Win2.png.meta b/assets/resources/i18nSprite2/fi/Win2.png.meta new file mode 100644 index 0000000..47a56e6 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7344a545-1339-4a59-8845-8db22418ab81", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7344a545-1339-4a59-8845-8db22418ab81@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7344a545-1339-4a59-8845-8db22418ab81", + "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": "7344a545-1339-4a59-8845-8db22418ab81@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1025, + "height": 317, + "rawWidth": 1025, + "rawHeight": 317, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -512.5, + -158.5, + 0, + 512.5, + -158.5, + 0, + -512.5, + 158.5, + 0, + 512.5, + 158.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 317, + 1025, + 317, + 0, + 0, + 1025, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -512.5, + -158.5, + 0 + ], + "maxPos": [ + 512.5, + 158.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7344a545-1339-4a59-8845-8db22418ab81@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7344a545-1339-4a59-8845-8db22418ab81@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/Win3.png b/assets/resources/i18nSprite2/fi/Win3.png new file mode 100755 index 0000000..c3ddddb Binary files /dev/null and b/assets/resources/i18nSprite2/fi/Win3.png differ diff --git a/assets/resources/i18nSprite2/fi/Win3.png.meta b/assets/resources/i18nSprite2/fi/Win3.png.meta new file mode 100644 index 0000000..f7b3ff1 --- /dev/null +++ b/assets/resources/i18nSprite2/fi/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7eb601bc-4424-450a-8b90-d640c51e3e99", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7eb601bc-4424-450a-8b90-d640c51e3e99@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7eb601bc-4424-450a-8b90-d640c51e3e99", + "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": "7eb601bc-4424-450a-8b90-d640c51e3e99@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 817, + "height": 458, + "rawWidth": 817, + "rawHeight": 458, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -408.5, + -229, + 0, + 408.5, + -229, + 0, + -408.5, + 229, + 0, + 408.5, + 229, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 458, + 817, + 458, + 0, + 0, + 817, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -408.5, + -229, + 0 + ], + "maxPos": [ + 408.5, + 229, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7eb601bc-4424-450a-8b90-d640c51e3e99@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7eb601bc-4424-450a-8b90-d640c51e3e99@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/logo1.png b/assets/resources/i18nSprite2/fi/logo1.png new file mode 100755 index 0000000..c1c37c2 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/logo1.png differ diff --git a/assets/resources/i18nSprite2/fi/logo1.png.meta b/assets/resources/i18nSprite2/fi/logo1.png.meta new file mode 100644 index 0000000..32bf40c --- /dev/null +++ b/assets/resources/i18nSprite2/fi/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d767b7e-2ef7-4690-af28-cd0dd7668c07", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d767b7e-2ef7-4690-af28-cd0dd7668c07@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d767b7e-2ef7-4690-af28-cd0dd7668c07", + "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": "1d767b7e-2ef7-4690-af28-cd0dd7668c07@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 972, + "height": 236, + "rawWidth": 972, + "rawHeight": 236, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -486, + -118, + 0, + 486, + -118, + 0, + -486, + 118, + 0, + 486, + 118, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 236, + 972, + 236, + 0, + 0, + 972, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -486, + -118, + 0 + ], + "maxPos": [ + 486, + 118, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d767b7e-2ef7-4690-af28-cd0dd7668c07@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d767b7e-2ef7-4690-af28-cd0dd7668c07@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fi/zxksctter.png b/assets/resources/i18nSprite2/fi/zxksctter.png new file mode 100755 index 0000000..886a126 Binary files /dev/null and b/assets/resources/i18nSprite2/fi/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/fi/zxksctter.png.meta b/assets/resources/i18nSprite2/fi/zxksctter.png.meta new file mode 100644 index 0000000..7181cce --- /dev/null +++ b/assets/resources/i18nSprite2/fi/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "661e523d-cd51-498f-8d8d-d1e4b037f511", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "661e523d-cd51-498f-8d8d-d1e4b037f511@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "661e523d-cd51-498f-8d8d-d1e4b037f511", + "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": "661e523d-cd51-498f-8d8d-d1e4b037f511@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 241, + "height": 123, + "rawWidth": 245, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -120.5, + -61.5, + 0, + 120.5, + -61.5, + 0, + -120.5, + 61.5, + 0, + 120.5, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 243, + 125, + 2, + 2, + 243, + 2 + ], + "nuv": [ + 0.00816326530612245, + 0.015748031496062992, + 0.9918367346938776, + 0.015748031496062992, + 0.00816326530612245, + 0.984251968503937, + 0.9918367346938776, + 0.984251968503937 + ], + "minPos": [ + -120.5, + -61.5, + 0 + ], + "maxPos": [ + 120.5, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "661e523d-cd51-498f-8d8d-d1e4b037f511@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "661e523d-cd51-498f-8d8d-d1e4b037f511@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr.meta b/assets/resources/i18nSprite2/fr.meta new file mode 100644 index 0000000..3b84eb1 --- /dev/null +++ b/assets/resources/i18nSprite2/fr.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b0bd8d83-9512-405f-99e9-0658b549a39b", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/fr/Buy1.png b/assets/resources/i18nSprite2/fr/Buy1.png new file mode 100755 index 0000000..1c899e3 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Buy1.png differ diff --git a/assets/resources/i18nSprite2/fr/Buy1.png.meta b/assets/resources/i18nSprite2/fr/Buy1.png.meta new file mode 100644 index 0000000..f4eda0f --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "62fd89a2-460c-4ceb-8caa-a68e48b3985b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "62fd89a2-460c-4ceb-8caa-a68e48b3985b@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "62fd89a2-460c-4ceb-8caa-a68e48b3985b", + "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": "62fd89a2-460c-4ceb-8caa-a68e48b3985b@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 874, + "height": 181, + "rawWidth": 874, + "rawHeight": 181, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -437, + -90.5, + 0, + 437, + -90.5, + 0, + -437, + 90.5, + 0, + 437, + 90.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 181, + 874, + 181, + 0, + 0, + 874, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -437, + -90.5, + 0 + ], + "maxPos": [ + 437, + 90.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "62fd89a2-460c-4ceb-8caa-a68e48b3985b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "62fd89a2-460c-4ceb-8caa-a68e48b3985b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Buy2.png b/assets/resources/i18nSprite2/fr/Buy2.png new file mode 100755 index 0000000..dedebda Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Buy2.png differ diff --git a/assets/resources/i18nSprite2/fr/Buy2.png.meta b/assets/resources/i18nSprite2/fr/Buy2.png.meta new file mode 100644 index 0000000..4923c3f --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "372b2e39-7559-46ae-859b-1dbfec955f51", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "372b2e39-7559-46ae-859b-1dbfec955f51@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "372b2e39-7559-46ae-859b-1dbfec955f51", + "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": "372b2e39-7559-46ae-859b-1dbfec955f51@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 175, + "height": 90, + "rawWidth": 175, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87.5, + -45, + 0, + 87.5, + -45, + 0, + -87.5, + 45, + 0, + 87.5, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 90, + 175, + 90, + 0, + 0, + 175, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87.5, + -45, + 0 + ], + "maxPos": [ + 87.5, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "372b2e39-7559-46ae-859b-1dbfec955f51@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "372b2e39-7559-46ae-859b-1dbfec955f51@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Buy4.png b/assets/resources/i18nSprite2/fr/Buy4.png new file mode 100755 index 0000000..9d875b5 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Buy4.png differ diff --git a/assets/resources/i18nSprite2/fr/Buy4.png.meta b/assets/resources/i18nSprite2/fr/Buy4.png.meta new file mode 100644 index 0000000..ac417ef --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9fe29db9-77c9-4b64-b09b-af76f8e7c148", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9fe29db9-77c9-4b64-b09b-af76f8e7c148@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9fe29db9-77c9-4b64-b09b-af76f8e7c148", + "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": "9fe29db9-77c9-4b64-b09b-af76f8e7c148@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 319, + "height": 84, + "rawWidth": 319, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -159.5, + -42, + 0, + 159.5, + -42, + 0, + -159.5, + 42, + 0, + 159.5, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 84, + 319, + 84, + 0, + 0, + 319, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -159.5, + -42, + 0 + ], + "maxPos": [ + 159.5, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9fe29db9-77c9-4b64-b09b-af76f8e7c148@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9fe29db9-77c9-4b64-b09b-af76f8e7c148@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Buy5.png b/assets/resources/i18nSprite2/fr/Buy5.png new file mode 100755 index 0000000..53beed2 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Buy5.png differ diff --git a/assets/resources/i18nSprite2/fr/Buy5.png.meta b/assets/resources/i18nSprite2/fr/Buy5.png.meta new file mode 100644 index 0000000..4e57106 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "428b1a1c-8c4b-40ec-ae14-8e07a6b0380f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "428b1a1c-8c4b-40ec-ae14-8e07a6b0380f@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "428b1a1c-8c4b-40ec-ae14-8e07a6b0380f", + "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": "428b1a1c-8c4b-40ec-ae14-8e07a6b0380f@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 129, + "height": 62, + "rawWidth": 133, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -64.5, + -31, + 0, + 64.5, + -31, + 0, + -64.5, + 31, + 0, + 64.5, + 31, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 64, + 131, + 64, + 2, + 2, + 131, + 2 + ], + "nuv": [ + 0.015037593984962405, + 0.030303030303030304, + 0.9849624060150376, + 0.030303030303030304, + 0.015037593984962405, + 0.9696969696969697, + 0.9849624060150376, + 0.9696969696969697 + ], + "minPos": [ + -64.5, + -31, + 0 + ], + "maxPos": [ + 64.5, + 31, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "428b1a1c-8c4b-40ec-ae14-8e07a6b0380f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "428b1a1c-8c4b-40ec-ae14-8e07a6b0380f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Buy8.png b/assets/resources/i18nSprite2/fr/Buy8.png new file mode 100755 index 0000000..55c7d04 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Buy8.png differ diff --git a/assets/resources/i18nSprite2/fr/Buy8.png.meta b/assets/resources/i18nSprite2/fr/Buy8.png.meta new file mode 100644 index 0000000..6cbd20e --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a667fcf2-a5e1-4ef1-9dc5-3ffc3f2f2b2c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a667fcf2-a5e1-4ef1-9dc5-3ffc3f2f2b2c@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a667fcf2-a5e1-4ef1-9dc5-3ffc3f2f2b2c", + "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": "a667fcf2-a5e1-4ef1-9dc5-3ffc3f2f2b2c@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 264, + "height": 77, + "rawWidth": 264, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -132, + -38.5, + 0, + 132, + -38.5, + 0, + -132, + 38.5, + 0, + 132, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 264, + 77, + 0, + 0, + 264, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -132, + -38.5, + 0 + ], + "maxPos": [ + 132, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a667fcf2-a5e1-4ef1-9dc5-3ffc3f2f2b2c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a667fcf2-a5e1-4ef1-9dc5-3ffc3f2f2b2c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FREELoading.png b/assets/resources/i18nSprite2/fr/FREELoading.png new file mode 100755 index 0000000..63dffe3 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/fr/FREELoading.png.meta b/assets/resources/i18nSprite2/fr/FREELoading.png.meta new file mode 100644 index 0000000..b1b1f65 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bbf72687-e944-4a31-9233-cac251adfc60", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bbf72687-e944-4a31-9233-cac251adfc60@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bbf72687-e944-4a31-9233-cac251adfc60", + "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": "bbf72687-e944-4a31-9233-cac251adfc60@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 829, + "height": 439, + "rawWidth": 829, + "rawHeight": 439, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -414.5, + -219.5, + 0, + 414.5, + -219.5, + 0, + -414.5, + 219.5, + 0, + 414.5, + 219.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 439, + 829, + 439, + 0, + 0, + 829, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -414.5, + -219.5, + 0 + ], + "maxPos": [ + 414.5, + 219.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bbf72687-e944-4a31-9233-cac251adfc60@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bbf72687-e944-4a31-9233-cac251adfc60@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FREELoading1.png b/assets/resources/i18nSprite2/fr/FREELoading1.png new file mode 100755 index 0000000..b2440b1 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/fr/FREELoading1.png.meta b/assets/resources/i18nSprite2/fr/FREELoading1.png.meta new file mode 100644 index 0000000..021ff64 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "57afa33c-a34d-4925-b000-cb61689196c0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "57afa33c-a34d-4925-b000-cb61689196c0@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "57afa33c-a34d-4925-b000-cb61689196c0", + "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": "57afa33c-a34d-4925-b000-cb61689196c0@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 938, + "height": 141, + "rawWidth": 942, + "rawHeight": 145, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -469, + -70.5, + 0, + 469, + -70.5, + 0, + -469, + 70.5, + 0, + 469, + 70.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 143, + 940, + 143, + 2, + 2, + 940, + 2 + ], + "nuv": [ + 0.0021231422505307855, + 0.013793103448275862, + 0.9978768577494692, + 0.013793103448275862, + 0.0021231422505307855, + 0.9862068965517241, + 0.9978768577494692, + 0.9862068965517241 + ], + "minPos": [ + -469, + -70.5, + 0 + ], + "maxPos": [ + 469, + 70.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "57afa33c-a34d-4925-b000-cb61689196c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "57afa33c-a34d-4925-b000-cb61689196c0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FREELoading2.png b/assets/resources/i18nSprite2/fr/FREELoading2.png new file mode 100755 index 0000000..317490b Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/fr/FREELoading2.png.meta b/assets/resources/i18nSprite2/fr/FREELoading2.png.meta new file mode 100644 index 0000000..498c772 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "83831ee6-76da-467a-bcda-4ac038b6a1eb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "83831ee6-76da-467a-bcda-4ac038b6a1eb@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "83831ee6-76da-467a-bcda-4ac038b6a1eb", + "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": "83831ee6-76da-467a-bcda-4ac038b6a1eb@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 369, + "height": 95, + "rawWidth": 369, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -184.5, + -47.5, + 0, + 184.5, + -47.5, + 0, + -184.5, + 47.5, + 0, + 184.5, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 95, + 369, + 95, + 0, + 0, + 369, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -184.5, + -47.5, + 0 + ], + "maxPos": [ + 184.5, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "83831ee6-76da-467a-bcda-4ac038b6a1eb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "83831ee6-76da-467a-bcda-4ac038b6a1eb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FREESPIN2.png b/assets/resources/i18nSprite2/fr/FREESPIN2.png new file mode 100755 index 0000000..ae7d0f8 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/fr/FREESPIN2.png.meta b/assets/resources/i18nSprite2/fr/FREESPIN2.png.meta new file mode 100644 index 0000000..a07421e --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "38551515-ab13-45d6-a3dd-0b5763d60ef2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "38551515-ab13-45d6-a3dd-0b5763d60ef2@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "38551515-ab13-45d6-a3dd-0b5763d60ef2", + "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": "38551515-ab13-45d6-a3dd-0b5763d60ef2@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1030, + "height": 75, + "rawWidth": 1030, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -515, + -37.5, + 0, + 515, + -37.5, + 0, + -515, + 37.5, + 0, + 515, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 1030, + 75, + 0, + 0, + 1030, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -515, + -37.5, + 0 + ], + "maxPos": [ + 515, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "38551515-ab13-45d6-a3dd-0b5763d60ef2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "38551515-ab13-45d6-a3dd-0b5763d60ef2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FREESPIN4.png b/assets/resources/i18nSprite2/fr/FREESPIN4.png new file mode 100755 index 0000000..1940db3 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/fr/FREESPIN4.png.meta b/assets/resources/i18nSprite2/fr/FREESPIN4.png.meta new file mode 100644 index 0000000..deddaff --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09670739-1b64-4400-b703-5b44abe273ab", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09670739-1b64-4400-b703-5b44abe273ab@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09670739-1b64-4400-b703-5b44abe273ab", + "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": "09670739-1b64-4400-b703-5b44abe273ab@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 341, + "height": 88, + "rawWidth": 341, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -170.5, + -44, + 0, + 170.5, + -44, + 0, + -170.5, + 44, + 0, + 170.5, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 341, + 88, + 0, + 0, + 341, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -170.5, + -44, + 0 + ], + "maxPos": [ + 170.5, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09670739-1b64-4400-b703-5b44abe273ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09670739-1b64-4400-b703-5b44abe273ab@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FREESPIN5.png b/assets/resources/i18nSprite2/fr/FREESPIN5.png new file mode 100755 index 0000000..37fa576 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/fr/FREESPIN5.png.meta b/assets/resources/i18nSprite2/fr/FREESPIN5.png.meta new file mode 100644 index 0000000..7b7ed99 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2e7d5bff-77e2-4e52-9c15-4fd17dbf5e01", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2e7d5bff-77e2-4e52-9c15-4fd17dbf5e01@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2e7d5bff-77e2-4e52-9c15-4fd17dbf5e01", + "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": "2e7d5bff-77e2-4e52-9c15-4fd17dbf5e01@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 985, + "height": 415, + "rawWidth": 985, + "rawHeight": 415, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -492.5, + -207.5, + 0, + 492.5, + -207.5, + 0, + -492.5, + 207.5, + 0, + 492.5, + 207.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 415, + 985, + 415, + 0, + 0, + 985, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -492.5, + -207.5, + 0 + ], + "maxPos": [ + 492.5, + 207.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2e7d5bff-77e2-4e52-9c15-4fd17dbf5e01@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2e7d5bff-77e2-4e52-9c15-4fd17dbf5e01@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/FSFS.png b/assets/resources/i18nSprite2/fr/FSFS.png new file mode 100755 index 0000000..ed2f17b Binary files /dev/null and b/assets/resources/i18nSprite2/fr/FSFS.png differ diff --git a/assets/resources/i18nSprite2/fr/FSFS.png.meta b/assets/resources/i18nSprite2/fr/FSFS.png.meta new file mode 100644 index 0000000..710fc82 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4eff7a37-4bd4-49f9-aa2d-ba3b30988763", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4eff7a37-4bd4-49f9-aa2d-ba3b30988763@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4eff7a37-4bd4-49f9-aa2d-ba3b30988763", + "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": "4eff7a37-4bd4-49f9-aa2d-ba3b30988763@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 497, + "height": 263, + "rawWidth": 497, + "rawHeight": 263, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -248.5, + -131.5, + 0, + 248.5, + -131.5, + 0, + -248.5, + 131.5, + 0, + 248.5, + 131.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 263, + 497, + 263, + 0, + 0, + 497, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -248.5, + -131.5, + 0 + ], + "maxPos": [ + 248.5, + 131.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4eff7a37-4bd4-49f9-aa2d-ba3b30988763@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4eff7a37-4bd4-49f9-aa2d-ba3b30988763@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Free.png b/assets/resources/i18nSprite2/fr/Free.png new file mode 100755 index 0000000..bd42eb9 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Free.png differ diff --git a/assets/resources/i18nSprite2/fr/Free.png.meta b/assets/resources/i18nSprite2/fr/Free.png.meta new file mode 100644 index 0000000..2494852 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a18696f1-7778-4052-9e06-27df800b5660", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a18696f1-7778-4052-9e06-27df800b5660@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a18696f1-7778-4052-9e06-27df800b5660", + "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": "a18696f1-7778-4052-9e06-27df800b5660@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 603, + "height": 145, + "rawWidth": 603, + "rawHeight": 145, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -301.5, + -72.5, + 0, + 301.5, + -72.5, + 0, + -301.5, + 72.5, + 0, + 301.5, + 72.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 145, + 603, + 145, + 0, + 0, + 603, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -301.5, + -72.5, + 0 + ], + "maxPos": [ + 301.5, + 72.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a18696f1-7778-4052-9e06-27df800b5660@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a18696f1-7778-4052-9e06-27df800b5660@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Free1.png b/assets/resources/i18nSprite2/fr/Free1.png new file mode 100755 index 0000000..2abbbce Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Free1.png differ diff --git a/assets/resources/i18nSprite2/fr/Free1.png.meta b/assets/resources/i18nSprite2/fr/Free1.png.meta new file mode 100644 index 0000000..d81f27f --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea67f19a-f499-4f91-af85-3e2176a9ff6d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea67f19a-f499-4f91-af85-3e2176a9ff6d@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea67f19a-f499-4f91-af85-3e2176a9ff6d", + "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": "ea67f19a-f499-4f91-af85-3e2176a9ff6d@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 546, + "height": 146, + "rawWidth": 546, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -273, + -73, + 0, + 273, + -73, + 0, + -273, + 73, + 0, + 273, + 73, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 146, + 546, + 146, + 0, + 0, + 546, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -273, + -73, + 0 + ], + "maxPos": [ + 273, + 73, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea67f19a-f499-4f91-af85-3e2176a9ff6d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea67f19a-f499-4f91-af85-3e2176a9ff6d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal1.png b/assets/resources/i18nSprite2/fr/Normal1.png new file mode 100755 index 0000000..7ecb47d Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal1.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal1.png.meta b/assets/resources/i18nSprite2/fr/Normal1.png.meta new file mode 100644 index 0000000..f2c37b7 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "10e22e84-bacd-4937-b76f-5156ac96eed8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "10e22e84-bacd-4937-b76f-5156ac96eed8@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "10e22e84-bacd-4937-b76f-5156ac96eed8", + "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": "10e22e84-bacd-4937-b76f-5156ac96eed8@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1187, + "height": 43, + "rawWidth": 1191, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -593.5, + -21.5, + 0, + 593.5, + -21.5, + 0, + -593.5, + 21.5, + 0, + 593.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 1189, + 45, + 2, + 2, + 1189, + 2 + ], + "nuv": [ + 0.0016792611251049538, + 0.0425531914893617, + 0.998320738874895, + 0.0425531914893617, + 0.0016792611251049538, + 0.9574468085106383, + 0.998320738874895, + 0.9574468085106383 + ], + "minPos": [ + -593.5, + -21.5, + 0 + ], + "maxPos": [ + 593.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "10e22e84-bacd-4937-b76f-5156ac96eed8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "10e22e84-bacd-4937-b76f-5156ac96eed8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal10.png b/assets/resources/i18nSprite2/fr/Normal10.png new file mode 100755 index 0000000..2628b74 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal10.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal10.png.meta b/assets/resources/i18nSprite2/fr/Normal10.png.meta new file mode 100644 index 0000000..b6f25d2 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2c708353-e2a5-4c72-8cc1-d2494c017748", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2c708353-e2a5-4c72-8cc1-d2494c017748@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2c708353-e2a5-4c72-8cc1-d2494c017748", + "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": "2c708353-e2a5-4c72-8cc1-d2494c017748@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 853, + "height": 57, + "rawWidth": 857, + "rawHeight": 61, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -426.5, + -28.5, + 0, + 426.5, + -28.5, + 0, + -426.5, + 28.5, + 0, + 426.5, + 28.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 59, + 855, + 59, + 2, + 2, + 855, + 2 + ], + "nuv": [ + 0.002333722287047841, + 0.03278688524590164, + 0.9976662777129521, + 0.03278688524590164, + 0.002333722287047841, + 0.9672131147540983, + 0.9976662777129521, + 0.9672131147540983 + ], + "minPos": [ + -426.5, + -28.5, + 0 + ], + "maxPos": [ + 426.5, + 28.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2c708353-e2a5-4c72-8cc1-d2494c017748@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2c708353-e2a5-4c72-8cc1-d2494c017748@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal11.png b/assets/resources/i18nSprite2/fr/Normal11.png new file mode 100755 index 0000000..7d011b9 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal11.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal11.png.meta b/assets/resources/i18nSprite2/fr/Normal11.png.meta new file mode 100644 index 0000000..f4423e8 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c627243e-1bb2-45c8-8ee0-3a116388271c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c627243e-1bb2-45c8-8ee0-3a116388271c@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c627243e-1bb2-45c8-8ee0-3a116388271c", + "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": "c627243e-1bb2-45c8-8ee0-3a116388271c@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 994, + "height": 78, + "rawWidth": 994, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -497, + -39, + 0, + 497, + -39, + 0, + -497, + 39, + 0, + 497, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 994, + 78, + 0, + 0, + 994, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -497, + -39, + 0 + ], + "maxPos": [ + 497, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c627243e-1bb2-45c8-8ee0-3a116388271c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c627243e-1bb2-45c8-8ee0-3a116388271c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal2.png b/assets/resources/i18nSprite2/fr/Normal2.png new file mode 100755 index 0000000..b4f380e Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal2.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal2.png.meta b/assets/resources/i18nSprite2/fr/Normal2.png.meta new file mode 100644 index 0000000..c89733e --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f6867767-7915-4902-bde1-4ef6e426a3ed", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f6867767-7915-4902-bde1-4ef6e426a3ed@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f6867767-7915-4902-bde1-4ef6e426a3ed", + "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": "f6867767-7915-4902-bde1-4ef6e426a3ed@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 339, + "height": 43, + "rawWidth": 343, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -169.5, + -21.5, + 0, + 169.5, + -21.5, + 0, + -169.5, + 21.5, + 0, + 169.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 341, + 45, + 2, + 2, + 341, + 2 + ], + "nuv": [ + 0.0058309037900874635, + 0.0425531914893617, + 0.9941690962099126, + 0.0425531914893617, + 0.0058309037900874635, + 0.9574468085106383, + 0.9941690962099126, + 0.9574468085106383 + ], + "minPos": [ + -169.5, + -21.5, + 0 + ], + "maxPos": [ + 169.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6867767-7915-4902-bde1-4ef6e426a3ed@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f6867767-7915-4902-bde1-4ef6e426a3ed@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal3.png b/assets/resources/i18nSprite2/fr/Normal3.png new file mode 100755 index 0000000..3652fb3 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal3.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal3.png.meta b/assets/resources/i18nSprite2/fr/Normal3.png.meta new file mode 100644 index 0000000..473b1eb --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2ac502c6-fb5b-495b-b8ed-4644a3a21665", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2ac502c6-fb5b-495b-b8ed-4644a3a21665@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2ac502c6-fb5b-495b-b8ed-4644a3a21665", + "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": "2ac502c6-fb5b-495b-b8ed-4644a3a21665@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 371, + "height": 49, + "rawWidth": 375, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -185.5, + -24.5, + 0, + 185.5, + -24.5, + 0, + -185.5, + 24.5, + 0, + 185.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 373, + 51, + 2, + 2, + 373, + 2 + ], + "nuv": [ + 0.005333333333333333, + 0.03773584905660377, + 0.9946666666666667, + 0.03773584905660377, + 0.005333333333333333, + 0.9622641509433962, + 0.9946666666666667, + 0.9622641509433962 + ], + "minPos": [ + -185.5, + -24.5, + 0 + ], + "maxPos": [ + 185.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2ac502c6-fb5b-495b-b8ed-4644a3a21665@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2ac502c6-fb5b-495b-b8ed-4644a3a21665@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal4.png b/assets/resources/i18nSprite2/fr/Normal4.png new file mode 100755 index 0000000..4789f88 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal4.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal4.png.meta b/assets/resources/i18nSprite2/fr/Normal4.png.meta new file mode 100644 index 0000000..af54e5a --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4d4cc75d-a7e0-4e1b-a964-e4190dd36f27", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4d4cc75d-a7e0-4e1b-a964-e4190dd36f27@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4d4cc75d-a7e0-4e1b-a964-e4190dd36f27", + "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": "4d4cc75d-a7e0-4e1b-a964-e4190dd36f27@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 633, + "height": 43, + "rawWidth": 637, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -316.5, + -21.5, + 0, + 316.5, + -21.5, + 0, + -316.5, + 21.5, + 0, + 316.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 635, + 45, + 2, + 2, + 635, + 2 + ], + "nuv": [ + 0.0031397174254317113, + 0.0425531914893617, + 0.9968602825745683, + 0.0425531914893617, + 0.0031397174254317113, + 0.9574468085106383, + 0.9968602825745683, + 0.9574468085106383 + ], + "minPos": [ + -316.5, + -21.5, + 0 + ], + "maxPos": [ + 316.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4d4cc75d-a7e0-4e1b-a964-e4190dd36f27@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4d4cc75d-a7e0-4e1b-a964-e4190dd36f27@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal5.png b/assets/resources/i18nSprite2/fr/Normal5.png new file mode 100755 index 0000000..46a15aa Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal5.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal5.png.meta b/assets/resources/i18nSprite2/fr/Normal5.png.meta new file mode 100644 index 0000000..ef7c6aa --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb302a25-d4b8-4dbd-9fff-400a8fcc9d1d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb302a25-d4b8-4dbd-9fff-400a8fcc9d1d@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb302a25-d4b8-4dbd-9fff-400a8fcc9d1d", + "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": "cb302a25-d4b8-4dbd-9fff-400a8fcc9d1d@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 69, + "height": 28, + "rawWidth": 73, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -34.5, + -14, + 0, + 34.5, + -14, + 0, + -34.5, + 14, + 0, + 34.5, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 71, + 30, + 2, + 2, + 71, + 2 + ], + "nuv": [ + 0.0273972602739726, + 0.0625, + 0.9726027397260274, + 0.0625, + 0.0273972602739726, + 0.9375, + 0.9726027397260274, + 0.9375 + ], + "minPos": [ + -34.5, + -14, + 0 + ], + "maxPos": [ + 34.5, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb302a25-d4b8-4dbd-9fff-400a8fcc9d1d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb302a25-d4b8-4dbd-9fff-400a8fcc9d1d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal6.png b/assets/resources/i18nSprite2/fr/Normal6.png new file mode 100755 index 0000000..e25d77e Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal6.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal6.png.meta b/assets/resources/i18nSprite2/fr/Normal6.png.meta new file mode 100644 index 0000000..7843e43 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "096f4972-beb5-4495-b9d8-e7e33d1ce881", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "096f4972-beb5-4495-b9d8-e7e33d1ce881@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "096f4972-beb5-4495-b9d8-e7e33d1ce881", + "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": "096f4972-beb5-4495-b9d8-e7e33d1ce881@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 171, + "height": 43, + "rawWidth": 175, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -85.5, + -21.5, + 0, + 85.5, + -21.5, + 0, + -85.5, + 21.5, + 0, + 85.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 173, + 45, + 2, + 2, + 173, + 2 + ], + "nuv": [ + 0.011428571428571429, + 0.0425531914893617, + 0.9885714285714285, + 0.0425531914893617, + 0.011428571428571429, + 0.9574468085106383, + 0.9885714285714285, + 0.9574468085106383 + ], + "minPos": [ + -85.5, + -21.5, + 0 + ], + "maxPos": [ + 85.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "096f4972-beb5-4495-b9d8-e7e33d1ce881@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "096f4972-beb5-4495-b9d8-e7e33d1ce881@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal7.png b/assets/resources/i18nSprite2/fr/Normal7.png new file mode 100755 index 0000000..f3ddd35 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal7.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal7.png.meta b/assets/resources/i18nSprite2/fr/Normal7.png.meta new file mode 100644 index 0000000..9fef471 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "de1445a4-0591-44b9-8031-3705c91ee44b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "de1445a4-0591-44b9-8031-3705c91ee44b@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "de1445a4-0591-44b9-8031-3705c91ee44b", + "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": "de1445a4-0591-44b9-8031-3705c91ee44b@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 443, + "height": 43, + "rawWidth": 447, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -221.5, + -21.5, + 0, + 221.5, + -21.5, + 0, + -221.5, + 21.5, + 0, + 221.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 445, + 45, + 2, + 2, + 445, + 2 + ], + "nuv": [ + 0.0044742729306487695, + 0.0425531914893617, + 0.9955257270693513, + 0.0425531914893617, + 0.0044742729306487695, + 0.9574468085106383, + 0.9955257270693513, + 0.9574468085106383 + ], + "minPos": [ + -221.5, + -21.5, + 0 + ], + "maxPos": [ + 221.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "de1445a4-0591-44b9-8031-3705c91ee44b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "de1445a4-0591-44b9-8031-3705c91ee44b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal8.png b/assets/resources/i18nSprite2/fr/Normal8.png new file mode 100755 index 0000000..1896842 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal8.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal8.png.meta b/assets/resources/i18nSprite2/fr/Normal8.png.meta new file mode 100644 index 0000000..19f7c8a --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f433ffc2-4708-461c-8a4c-b287c5744084", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f433ffc2-4708-461c-8a4c-b287c5744084@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f433ffc2-4708-461c-8a4c-b287c5744084", + "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": "f433ffc2-4708-461c-8a4c-b287c5744084@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1053, + "height": 50, + "rawWidth": 1057, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -526.5, + -25, + 0, + 526.5, + -25, + 0, + -526.5, + 25, + 0, + 526.5, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 52, + 1055, + 52, + 2, + 2, + 1055, + 2 + ], + "nuv": [ + 0.001892147587511826, + 0.037037037037037035, + 0.9981078524124882, + 0.037037037037037035, + 0.001892147587511826, + 0.9629629629629629, + 0.9981078524124882, + 0.9629629629629629 + ], + "minPos": [ + -526.5, + -25, + 0 + ], + "maxPos": [ + 526.5, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f433ffc2-4708-461c-8a4c-b287c5744084@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f433ffc2-4708-461c-8a4c-b287c5744084@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Normal9.png b/assets/resources/i18nSprite2/fr/Normal9.png new file mode 100755 index 0000000..98cceae Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Normal9.png differ diff --git a/assets/resources/i18nSprite2/fr/Normal9.png.meta b/assets/resources/i18nSprite2/fr/Normal9.png.meta new file mode 100644 index 0000000..7d199e8 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "41551e8b-7cb0-49ab-8b03-c314d698afe2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "41551e8b-7cb0-49ab-8b03-c314d698afe2@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "41551e8b-7cb0-49ab-8b03-c314d698afe2", + "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": "41551e8b-7cb0-49ab-8b03-c314d698afe2@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 759, + "height": 75, + "rawWidth": 759, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -379.5, + -37.5, + 0, + 379.5, + -37.5, + 0, + -379.5, + 37.5, + 0, + 379.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 759, + 75, + 0, + 0, + 759, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -379.5, + -37.5, + 0 + ], + "maxPos": [ + 379.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "41551e8b-7cb0-49ab-8b03-c314d698afe2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "41551e8b-7cb0-49ab-8b03-c314d698afe2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Win1.png b/assets/resources/i18nSprite2/fr/Win1.png new file mode 100755 index 0000000..c35f5e9 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Win1.png differ diff --git a/assets/resources/i18nSprite2/fr/Win1.png.meta b/assets/resources/i18nSprite2/fr/Win1.png.meta new file mode 100644 index 0000000..7216ce2 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ea9b3d9-c203-495f-8c9c-8afa4874fc2f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ea9b3d9-c203-495f-8c9c-8afa4874fc2f@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ea9b3d9-c203-495f-8c9c-8afa4874fc2f", + "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": "9ea9b3d9-c203-495f-8c9c-8afa4874fc2f@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 969, + "height": 348, + "rawWidth": 969, + "rawHeight": 348, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -484.5, + -174, + 0, + 484.5, + -174, + 0, + -484.5, + 174, + 0, + 484.5, + 174, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 348, + 969, + 348, + 0, + 0, + 969, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -484.5, + -174, + 0 + ], + "maxPos": [ + 484.5, + 174, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ea9b3d9-c203-495f-8c9c-8afa4874fc2f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ea9b3d9-c203-495f-8c9c-8afa4874fc2f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Win2.png b/assets/resources/i18nSprite2/fr/Win2.png new file mode 100755 index 0000000..b5bd837 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Win2.png differ diff --git a/assets/resources/i18nSprite2/fr/Win2.png.meta b/assets/resources/i18nSprite2/fr/Win2.png.meta new file mode 100644 index 0000000..77488b5 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d2c5c053-a29f-498a-80bb-06d8bffb911c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d2c5c053-a29f-498a-80bb-06d8bffb911c@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d2c5c053-a29f-498a-80bb-06d8bffb911c", + "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": "d2c5c053-a29f-498a-80bb-06d8bffb911c@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 995, + "height": 328, + "rawWidth": 995, + "rawHeight": 328, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -497.5, + -164, + 0, + 497.5, + -164, + 0, + -497.5, + 164, + 0, + 497.5, + 164, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 328, + 995, + 328, + 0, + 0, + 995, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -497.5, + -164, + 0 + ], + "maxPos": [ + 497.5, + 164, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d2c5c053-a29f-498a-80bb-06d8bffb911c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d2c5c053-a29f-498a-80bb-06d8bffb911c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/Win3.png b/assets/resources/i18nSprite2/fr/Win3.png new file mode 100755 index 0000000..a8f0998 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/Win3.png differ diff --git a/assets/resources/i18nSprite2/fr/Win3.png.meta b/assets/resources/i18nSprite2/fr/Win3.png.meta new file mode 100644 index 0000000..47d5d6f --- /dev/null +++ b/assets/resources/i18nSprite2/fr/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0d50c4df-37d7-4a9f-9d2b-cb2b0455d2d9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0d50c4df-37d7-4a9f-9d2b-cb2b0455d2d9@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0d50c4df-37d7-4a9f-9d2b-cb2b0455d2d9", + "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": "0d50c4df-37d7-4a9f-9d2b-cb2b0455d2d9@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 949, + "height": 477, + "rawWidth": 949, + "rawHeight": 477, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -474.5, + -238.5, + 0, + 474.5, + -238.5, + 0, + -474.5, + 238.5, + 0, + 474.5, + 238.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 477, + 949, + 477, + 0, + 0, + 949, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -474.5, + -238.5, + 0 + ], + "maxPos": [ + 474.5, + 238.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0d50c4df-37d7-4a9f-9d2b-cb2b0455d2d9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0d50c4df-37d7-4a9f-9d2b-cb2b0455d2d9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/logo1.png b/assets/resources/i18nSprite2/fr/logo1.png new file mode 100755 index 0000000..3abc55c Binary files /dev/null and b/assets/resources/i18nSprite2/fr/logo1.png differ diff --git a/assets/resources/i18nSprite2/fr/logo1.png.meta b/assets/resources/i18nSprite2/fr/logo1.png.meta new file mode 100644 index 0000000..29c7505 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6caf6078-5452-4719-9d5a-e4e4c1a0924a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6caf6078-5452-4719-9d5a-e4e4c1a0924a@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6caf6078-5452-4719-9d5a-e4e4c1a0924a", + "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": "6caf6078-5452-4719-9d5a-e4e4c1a0924a@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 961, + "height": 238, + "rawWidth": 961, + "rawHeight": 238, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -480.5, + -119, + 0, + 480.5, + -119, + 0, + -480.5, + 119, + 0, + 480.5, + 119, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 238, + 961, + 238, + 0, + 0, + 961, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -480.5, + -119, + 0 + ], + "maxPos": [ + 480.5, + 119, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6caf6078-5452-4719-9d5a-e4e4c1a0924a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6caf6078-5452-4719-9d5a-e4e4c1a0924a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/fr/zxksctter.png b/assets/resources/i18nSprite2/fr/zxksctter.png new file mode 100755 index 0000000..9711bf2 Binary files /dev/null and b/assets/resources/i18nSprite2/fr/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/fr/zxksctter.png.meta b/assets/resources/i18nSprite2/fr/zxksctter.png.meta new file mode 100644 index 0000000..a9ec332 --- /dev/null +++ b/assets/resources/i18nSprite2/fr/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d53b56ae-2626-4859-8281-df0e1962c266", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d53b56ae-2626-4859-8281-df0e1962c266@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d53b56ae-2626-4859-8281-df0e1962c266", + "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": "d53b56ae-2626-4859-8281-df0e1962c266@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 247, + "height": 123, + "rawWidth": 251, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -123.5, + -61.5, + 0, + 123.5, + -61.5, + 0, + -123.5, + 61.5, + 0, + 123.5, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 249, + 125, + 2, + 2, + 249, + 2 + ], + "nuv": [ + 0.00796812749003984, + 0.015748031496062992, + 0.9920318725099602, + 0.015748031496062992, + 0.00796812749003984, + 0.984251968503937, + 0.9920318725099602, + 0.984251968503937 + ], + "minPos": [ + -123.5, + -61.5, + 0 + ], + "maxPos": [ + 123.5, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d53b56ae-2626-4859-8281-df0e1962c266@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d53b56ae-2626-4859-8281-df0e1962c266@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id.meta b/assets/resources/i18nSprite2/id.meta new file mode 100644 index 0000000..8b2783a --- /dev/null +++ b/assets/resources/i18nSprite2/id.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "24bb4d78-e6f2-4914-9cce-1b3e9a617696", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/id/Buy1.png b/assets/resources/i18nSprite2/id/Buy1.png new file mode 100755 index 0000000..1debedf Binary files /dev/null and b/assets/resources/i18nSprite2/id/Buy1.png differ diff --git a/assets/resources/i18nSprite2/id/Buy1.png.meta b/assets/resources/i18nSprite2/id/Buy1.png.meta new file mode 100644 index 0000000..2324f7e --- /dev/null +++ b/assets/resources/i18nSprite2/id/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b2c4d6b5-ed97-4a8b-9f2e-7dc44c1c3e1f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b2c4d6b5-ed97-4a8b-9f2e-7dc44c1c3e1f@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b2c4d6b5-ed97-4a8b-9f2e-7dc44c1c3e1f", + "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": "b2c4d6b5-ed97-4a8b-9f2e-7dc44c1c3e1f@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 828, + "height": 176, + "rawWidth": 828, + "rawHeight": 176, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -414, + -88, + 0, + 414, + -88, + 0, + -414, + 88, + 0, + 414, + 88, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 176, + 828, + 176, + 0, + 0, + 828, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -414, + -88, + 0 + ], + "maxPos": [ + 414, + 88, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b2c4d6b5-ed97-4a8b-9f2e-7dc44c1c3e1f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b2c4d6b5-ed97-4a8b-9f2e-7dc44c1c3e1f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Buy2.png b/assets/resources/i18nSprite2/id/Buy2.png new file mode 100755 index 0000000..8880030 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Buy2.png differ diff --git a/assets/resources/i18nSprite2/id/Buy2.png.meta b/assets/resources/i18nSprite2/id/Buy2.png.meta new file mode 100644 index 0000000..e6cf33d --- /dev/null +++ b/assets/resources/i18nSprite2/id/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4bacd0df-e93c-45fd-9eae-6e1ac21f0b28", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4bacd0df-e93c-45fd-9eae-6e1ac21f0b28@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4bacd0df-e93c-45fd-9eae-6e1ac21f0b28", + "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": "4bacd0df-e93c-45fd-9eae-6e1ac21f0b28@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 205, + "height": 48, + "rawWidth": 205, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -102.5, + -24, + 0, + 102.5, + -24, + 0, + -102.5, + 24, + 0, + 102.5, + 24, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 48, + 205, + 48, + 0, + 0, + 205, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -102.5, + -24, + 0 + ], + "maxPos": [ + 102.5, + 24, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4bacd0df-e93c-45fd-9eae-6e1ac21f0b28@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4bacd0df-e93c-45fd-9eae-6e1ac21f0b28@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Buy4.png b/assets/resources/i18nSprite2/id/Buy4.png new file mode 100755 index 0000000..9f4e458 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Buy4.png differ diff --git a/assets/resources/i18nSprite2/id/Buy4.png.meta b/assets/resources/i18nSprite2/id/Buy4.png.meta new file mode 100644 index 0000000..4d6e89c --- /dev/null +++ b/assets/resources/i18nSprite2/id/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3bea84e1-33fa-44a7-b04a-37ab18b2d4f5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3bea84e1-33fa-44a7-b04a-37ab18b2d4f5@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3bea84e1-33fa-44a7-b04a-37ab18b2d4f5", + "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": "3bea84e1-33fa-44a7-b04a-37ab18b2d4f5@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 206, + "height": 77, + "rawWidth": 206, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -103, + -38.5, + 0, + 103, + -38.5, + 0, + -103, + 38.5, + 0, + 103, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 206, + 77, + 0, + 0, + 206, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -103, + -38.5, + 0 + ], + "maxPos": [ + 103, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3bea84e1-33fa-44a7-b04a-37ab18b2d4f5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3bea84e1-33fa-44a7-b04a-37ab18b2d4f5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Buy5.png b/assets/resources/i18nSprite2/id/Buy5.png new file mode 100755 index 0000000..205ead6 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Buy5.png differ diff --git a/assets/resources/i18nSprite2/id/Buy5.png.meta b/assets/resources/i18nSprite2/id/Buy5.png.meta new file mode 100644 index 0000000..ef38cba --- /dev/null +++ b/assets/resources/i18nSprite2/id/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8b61ce31-1f81-4782-88b1-10cf807b38b9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8b61ce31-1f81-4782-88b1-10cf807b38b9@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8b61ce31-1f81-4782-88b1-10cf807b38b9", + "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": "8b61ce31-1f81-4782-88b1-10cf807b38b9@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 180, + "height": 74, + "rawWidth": 184, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -90, + -37, + 0, + 90, + -37, + 0, + -90, + 37, + 0, + 90, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 76, + 182, + 76, + 2, + 2, + 182, + 2 + ], + "nuv": [ + 0.010869565217391304, + 0.02564102564102564, + 0.9891304347826086, + 0.02564102564102564, + 0.010869565217391304, + 0.9743589743589743, + 0.9891304347826086, + 0.9743589743589743 + ], + "minPos": [ + -90, + -37, + 0 + ], + "maxPos": [ + 90, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8b61ce31-1f81-4782-88b1-10cf807b38b9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8b61ce31-1f81-4782-88b1-10cf807b38b9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Buy8.png b/assets/resources/i18nSprite2/id/Buy8.png new file mode 100755 index 0000000..6935cf6 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Buy8.png differ diff --git a/assets/resources/i18nSprite2/id/Buy8.png.meta b/assets/resources/i18nSprite2/id/Buy8.png.meta new file mode 100644 index 0000000..858f296 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ede14245-3bc2-4d4b-837f-51f79ef5fdc9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ede14245-3bc2-4d4b-837f-51f79ef5fdc9@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ede14245-3bc2-4d4b-837f-51f79ef5fdc9", + "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": "ede14245-3bc2-4d4b-837f-51f79ef5fdc9@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 211, + "height": 74, + "rawWidth": 211, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -105.5, + -37, + 0, + 105.5, + -37, + 0, + -105.5, + 37, + 0, + 105.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 74, + 211, + 74, + 0, + 0, + 211, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -105.5, + -37, + 0 + ], + "maxPos": [ + 105.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ede14245-3bc2-4d4b-837f-51f79ef5fdc9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ede14245-3bc2-4d4b-837f-51f79ef5fdc9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FREELoading.png b/assets/resources/i18nSprite2/id/FREELoading.png new file mode 100755 index 0000000..866915b Binary files /dev/null and b/assets/resources/i18nSprite2/id/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/id/FREELoading.png.meta b/assets/resources/i18nSprite2/id/FREELoading.png.meta new file mode 100644 index 0000000..d8805b9 --- /dev/null +++ b/assets/resources/i18nSprite2/id/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b549ae30-7f6d-4d10-9c9b-05803be18790", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b549ae30-7f6d-4d10-9c9b-05803be18790@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b549ae30-7f6d-4d10-9c9b-05803be18790", + "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": "b549ae30-7f6d-4d10-9c9b-05803be18790@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1020, + "height": 214, + "rawWidth": 1020, + "rawHeight": 214, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -510, + -107, + 0, + 510, + -107, + 0, + -510, + 107, + 0, + 510, + 107, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 214, + 1020, + 214, + 0, + 0, + 1020, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -510, + -107, + 0 + ], + "maxPos": [ + 510, + 107, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b549ae30-7f6d-4d10-9c9b-05803be18790@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b549ae30-7f6d-4d10-9c9b-05803be18790@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FREELoading1.png b/assets/resources/i18nSprite2/id/FREELoading1.png new file mode 100755 index 0000000..ec87a00 Binary files /dev/null and b/assets/resources/i18nSprite2/id/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/id/FREELoading1.png.meta b/assets/resources/i18nSprite2/id/FREELoading1.png.meta new file mode 100644 index 0000000..902decb --- /dev/null +++ b/assets/resources/i18nSprite2/id/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1ee5ee48-af4b-4929-a45f-311917b19812", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1ee5ee48-af4b-4929-a45f-311917b19812@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1ee5ee48-af4b-4929-a45f-311917b19812", + "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": "1ee5ee48-af4b-4929-a45f-311917b19812@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 825, + "height": 131, + "rawWidth": 829, + "rawHeight": 135, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -412.5, + -65.5, + 0, + 412.5, + -65.5, + 0, + -412.5, + 65.5, + 0, + 412.5, + 65.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 133, + 827, + 133, + 2, + 2, + 827, + 2 + ], + "nuv": [ + 0.0024125452352231603, + 0.014814814814814815, + 0.9975874547647768, + 0.014814814814814815, + 0.0024125452352231603, + 0.9851851851851852, + 0.9975874547647768, + 0.9851851851851852 + ], + "minPos": [ + -412.5, + -65.5, + 0 + ], + "maxPos": [ + 412.5, + 65.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1ee5ee48-af4b-4929-a45f-311917b19812@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1ee5ee48-af4b-4929-a45f-311917b19812@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FREELoading2.png b/assets/resources/i18nSprite2/id/FREELoading2.png new file mode 100755 index 0000000..43544b5 Binary files /dev/null and b/assets/resources/i18nSprite2/id/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/id/FREELoading2.png.meta b/assets/resources/i18nSprite2/id/FREELoading2.png.meta new file mode 100644 index 0000000..4ebb0d5 --- /dev/null +++ b/assets/resources/i18nSprite2/id/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19143341-994b-4c42-8134-65b251a5d070", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19143341-994b-4c42-8134-65b251a5d070@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19143341-994b-4c42-8134-65b251a5d070", + "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": "19143341-994b-4c42-8134-65b251a5d070@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 206, + "height": 77, + "rawWidth": 206, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -103, + -38.5, + 0, + 103, + -38.5, + 0, + -103, + 38.5, + 0, + 103, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 206, + 77, + 0, + 0, + 206, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -103, + -38.5, + 0 + ], + "maxPos": [ + 103, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19143341-994b-4c42-8134-65b251a5d070@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19143341-994b-4c42-8134-65b251a5d070@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FREESPIN2.png b/assets/resources/i18nSprite2/id/FREESPIN2.png new file mode 100755 index 0000000..9fc9f17 Binary files /dev/null and b/assets/resources/i18nSprite2/id/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/id/FREESPIN2.png.meta b/assets/resources/i18nSprite2/id/FREESPIN2.png.meta new file mode 100644 index 0000000..ba7e94f --- /dev/null +++ b/assets/resources/i18nSprite2/id/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "022dbf5e-dd5f-4fc7-b840-1fa474c8e4bc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "022dbf5e-dd5f-4fc7-b840-1fa474c8e4bc@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "022dbf5e-dd5f-4fc7-b840-1fa474c8e4bc", + "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": "022dbf5e-dd5f-4fc7-b840-1fa474c8e4bc@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 805, + "height": 75, + "rawWidth": 805, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -402.5, + -37.5, + 0, + 402.5, + -37.5, + 0, + -402.5, + 37.5, + 0, + 402.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 805, + 75, + 0, + 0, + 805, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -402.5, + -37.5, + 0 + ], + "maxPos": [ + 402.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "022dbf5e-dd5f-4fc7-b840-1fa474c8e4bc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "022dbf5e-dd5f-4fc7-b840-1fa474c8e4bc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FREESPIN4.png b/assets/resources/i18nSprite2/id/FREESPIN4.png new file mode 100755 index 0000000..1e062d3 Binary files /dev/null and b/assets/resources/i18nSprite2/id/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/id/FREESPIN4.png.meta b/assets/resources/i18nSprite2/id/FREESPIN4.png.meta new file mode 100644 index 0000000..e6a04a0 --- /dev/null +++ b/assets/resources/i18nSprite2/id/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f98a72ef-a770-4299-8bf4-1f0611f726d3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f98a72ef-a770-4299-8bf4-1f0611f726d3@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f98a72ef-a770-4299-8bf4-1f0611f726d3", + "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": "f98a72ef-a770-4299-8bf4-1f0611f726d3@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 422, + "height": 67, + "rawWidth": 422, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -211, + -33.5, + 0, + 211, + -33.5, + 0, + -211, + 33.5, + 0, + 211, + 33.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 67, + 422, + 67, + 0, + 0, + 422, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -211, + -33.5, + 0 + ], + "maxPos": [ + 211, + 33.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f98a72ef-a770-4299-8bf4-1f0611f726d3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f98a72ef-a770-4299-8bf4-1f0611f726d3@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FREESPIN5.png b/assets/resources/i18nSprite2/id/FREESPIN5.png new file mode 100755 index 0000000..3630d45 Binary files /dev/null and b/assets/resources/i18nSprite2/id/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/id/FREESPIN5.png.meta b/assets/resources/i18nSprite2/id/FREESPIN5.png.meta new file mode 100644 index 0000000..8db177a --- /dev/null +++ b/assets/resources/i18nSprite2/id/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f7341c07-f546-407e-8484-958c862b1b11", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f7341c07-f546-407e-8484-958c862b1b11@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f7341c07-f546-407e-8484-958c862b1b11", + "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": "f7341c07-f546-407e-8484-958c862b1b11@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 844, + "height": 460, + "rawWidth": 844, + "rawHeight": 460, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -422, + -230, + 0, + 422, + -230, + 0, + -422, + 230, + 0, + 422, + 230, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 460, + 844, + 460, + 0, + 0, + 844, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -422, + -230, + 0 + ], + "maxPos": [ + 422, + 230, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f7341c07-f546-407e-8484-958c862b1b11@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f7341c07-f546-407e-8484-958c862b1b11@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/FSFS.png b/assets/resources/i18nSprite2/id/FSFS.png new file mode 100755 index 0000000..1bbaba6 Binary files /dev/null and b/assets/resources/i18nSprite2/id/FSFS.png differ diff --git a/assets/resources/i18nSprite2/id/FSFS.png.meta b/assets/resources/i18nSprite2/id/FSFS.png.meta new file mode 100644 index 0000000..ea95ead --- /dev/null +++ b/assets/resources/i18nSprite2/id/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "837c45b3-7310-4c2e-a63b-0c87b0c83f2e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "837c45b3-7310-4c2e-a63b-0c87b0c83f2e@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "837c45b3-7310-4c2e-a63b-0c87b0c83f2e", + "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": "837c45b3-7310-4c2e-a63b-0c87b0c83f2e@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 612, + "height": 128, + "rawWidth": 612, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -306, + -64, + 0, + 306, + -64, + 0, + -306, + 64, + 0, + 306, + 64, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 128, + 612, + 128, + 0, + 0, + 612, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -306, + -64, + 0 + ], + "maxPos": [ + 306, + 64, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "837c45b3-7310-4c2e-a63b-0c87b0c83f2e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "837c45b3-7310-4c2e-a63b-0c87b0c83f2e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Free.png b/assets/resources/i18nSprite2/id/Free.png new file mode 100755 index 0000000..23e6d44 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Free.png differ diff --git a/assets/resources/i18nSprite2/id/Free.png.meta b/assets/resources/i18nSprite2/id/Free.png.meta new file mode 100644 index 0000000..1e33819 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ccbe959a-fdb1-4621-9fac-1aa91c1b27d1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ccbe959a-fdb1-4621-9fac-1aa91c1b27d1@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ccbe959a-fdb1-4621-9fac-1aa91c1b27d1", + "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": "ccbe959a-fdb1-4621-9fac-1aa91c1b27d1@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 569, + "height": 166, + "rawWidth": 569, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -284.5, + -83, + 0, + 284.5, + -83, + 0, + -284.5, + 83, + 0, + 284.5, + 83, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 166, + 569, + 166, + 0, + 0, + 569, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -284.5, + -83, + 0 + ], + "maxPos": [ + 284.5, + 83, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ccbe959a-fdb1-4621-9fac-1aa91c1b27d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ccbe959a-fdb1-4621-9fac-1aa91c1b27d1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Free1.png b/assets/resources/i18nSprite2/id/Free1.png new file mode 100755 index 0000000..57c0e1f Binary files /dev/null and b/assets/resources/i18nSprite2/id/Free1.png differ diff --git a/assets/resources/i18nSprite2/id/Free1.png.meta b/assets/resources/i18nSprite2/id/Free1.png.meta new file mode 100644 index 0000000..c9dce7f --- /dev/null +++ b/assets/resources/i18nSprite2/id/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "abd28b3a-d7cf-46e1-b5f1-a2244fd2b79d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "abd28b3a-d7cf-46e1-b5f1-a2244fd2b79d@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "abd28b3a-d7cf-46e1-b5f1-a2244fd2b79d", + "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": "abd28b3a-d7cf-46e1-b5f1-a2244fd2b79d@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 591, + "height": 148, + "rawWidth": 591, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -295.5, + -74, + 0, + 295.5, + -74, + 0, + -295.5, + 74, + 0, + 295.5, + 74, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 148, + 591, + 148, + 0, + 0, + 591, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -295.5, + -74, + 0 + ], + "maxPos": [ + 295.5, + 74, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "abd28b3a-d7cf-46e1-b5f1-a2244fd2b79d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "abd28b3a-d7cf-46e1-b5f1-a2244fd2b79d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal1.png b/assets/resources/i18nSprite2/id/Normal1.png new file mode 100755 index 0000000..bf98e15 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal1.png differ diff --git a/assets/resources/i18nSprite2/id/Normal1.png.meta b/assets/resources/i18nSprite2/id/Normal1.png.meta new file mode 100644 index 0000000..0272955 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cfbb3f14-bffd-4192-a88b-23e8917499bd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cfbb3f14-bffd-4192-a88b-23e8917499bd@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cfbb3f14-bffd-4192-a88b-23e8917499bd", + "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": "cfbb3f14-bffd-4192-a88b-23e8917499bd@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 811, + "height": 43, + "rawWidth": 815, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -405.5, + -21.5, + 0, + 405.5, + -21.5, + 0, + -405.5, + 21.5, + 0, + 405.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 813, + 45, + 2, + 2, + 813, + 2 + ], + "nuv": [ + 0.00245398773006135, + 0.0425531914893617, + 0.9975460122699387, + 0.0425531914893617, + 0.00245398773006135, + 0.9574468085106383, + 0.9975460122699387, + 0.9574468085106383 + ], + "minPos": [ + -405.5, + -21.5, + 0 + ], + "maxPos": [ + 405.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cfbb3f14-bffd-4192-a88b-23e8917499bd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cfbb3f14-bffd-4192-a88b-23e8917499bd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal10.png b/assets/resources/i18nSprite2/id/Normal10.png new file mode 100755 index 0000000..096dd27 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal10.png differ diff --git a/assets/resources/i18nSprite2/id/Normal10.png.meta b/assets/resources/i18nSprite2/id/Normal10.png.meta new file mode 100644 index 0000000..4e35410 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "eaf836da-3801-4e0a-801d-4acb6838d852", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "eaf836da-3801-4e0a-801d-4acb6838d852@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "eaf836da-3801-4e0a-801d-4acb6838d852", + "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": "eaf836da-3801-4e0a-801d-4acb6838d852@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 872, + "height": 43, + "rawWidth": 876, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -436, + -21.5, + 0, + 436, + -21.5, + 0, + -436, + 21.5, + 0, + 436, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 874, + 45, + 2, + 2, + 874, + 2 + ], + "nuv": [ + 0.00228310502283105, + 0.0425531914893617, + 0.997716894977169, + 0.0425531914893617, + 0.00228310502283105, + 0.9574468085106383, + 0.997716894977169, + 0.9574468085106383 + ], + "minPos": [ + -436, + -21.5, + 0 + ], + "maxPos": [ + 436, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "eaf836da-3801-4e0a-801d-4acb6838d852@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "eaf836da-3801-4e0a-801d-4acb6838d852@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal11.png b/assets/resources/i18nSprite2/id/Normal11.png new file mode 100755 index 0000000..212e100 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal11.png differ diff --git a/assets/resources/i18nSprite2/id/Normal11.png.meta b/assets/resources/i18nSprite2/id/Normal11.png.meta new file mode 100644 index 0000000..ae3f42d --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee1ba72a-d89f-4596-98ba-f9b80f44cf34", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee1ba72a-d89f-4596-98ba-f9b80f44cf34@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee1ba72a-d89f-4596-98ba-f9b80f44cf34", + "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": "ee1ba72a-d89f-4596-98ba-f9b80f44cf34@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1110, + "height": 78, + "rawWidth": 1110, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -555, + -39, + 0, + 555, + -39, + 0, + -555, + 39, + 0, + 555, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 1110, + 78, + 0, + 0, + 1110, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -555, + -39, + 0 + ], + "maxPos": [ + 555, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee1ba72a-d89f-4596-98ba-f9b80f44cf34@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee1ba72a-d89f-4596-98ba-f9b80f44cf34@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal2.png b/assets/resources/i18nSprite2/id/Normal2.png new file mode 100755 index 0000000..2fc4bd1 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal2.png differ diff --git a/assets/resources/i18nSprite2/id/Normal2.png.meta b/assets/resources/i18nSprite2/id/Normal2.png.meta new file mode 100644 index 0000000..d24a4fc --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a18f404-e7f6-4c62-b8c5-540a570b11da", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a18f404-e7f6-4c62-b8c5-540a570b11da@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a18f404-e7f6-4c62-b8c5-540a570b11da", + "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": "9a18f404-e7f6-4c62-b8c5-540a570b11da@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 444, + "height": 43, + "rawWidth": 448, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -222, + -21.5, + 0, + 222, + -21.5, + 0, + -222, + 21.5, + 0, + 222, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 446, + 45, + 2, + 2, + 446, + 2 + ], + "nuv": [ + 0.004464285714285714, + 0.0425531914893617, + 0.9955357142857143, + 0.0425531914893617, + 0.004464285714285714, + 0.9574468085106383, + 0.9955357142857143, + 0.9574468085106383 + ], + "minPos": [ + -222, + -21.5, + 0 + ], + "maxPos": [ + 222, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a18f404-e7f6-4c62-b8c5-540a570b11da@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a18f404-e7f6-4c62-b8c5-540a570b11da@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal3.png b/assets/resources/i18nSprite2/id/Normal3.png new file mode 100755 index 0000000..83d9b50 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal3.png differ diff --git a/assets/resources/i18nSprite2/id/Normal3.png.meta b/assets/resources/i18nSprite2/id/Normal3.png.meta new file mode 100644 index 0000000..e3ed91e --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "649a5c3c-86c6-4eca-b174-a1a5dae8d65d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "649a5c3c-86c6-4eca-b174-a1a5dae8d65d@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "649a5c3c-86c6-4eca-b174-a1a5dae8d65d", + "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": "649a5c3c-86c6-4eca-b174-a1a5dae8d65d@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 453, + "height": 43, + "rawWidth": 457, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -226.5, + -21.5, + 0, + 226.5, + -21.5, + 0, + -226.5, + 21.5, + 0, + 226.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 455, + 45, + 2, + 2, + 455, + 2 + ], + "nuv": [ + 0.00437636761487965, + 0.0425531914893617, + 0.9956236323851203, + 0.0425531914893617, + 0.00437636761487965, + 0.9574468085106383, + 0.9956236323851203, + 0.9574468085106383 + ], + "minPos": [ + -226.5, + -21.5, + 0 + ], + "maxPos": [ + 226.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "649a5c3c-86c6-4eca-b174-a1a5dae8d65d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "649a5c3c-86c6-4eca-b174-a1a5dae8d65d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal4.png b/assets/resources/i18nSprite2/id/Normal4.png new file mode 100755 index 0000000..cd09aae Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal4.png differ diff --git a/assets/resources/i18nSprite2/id/Normal4.png.meta b/assets/resources/i18nSprite2/id/Normal4.png.meta new file mode 100644 index 0000000..06be3f7 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "65dc9aed-a7c4-4a59-8bc3-263fbe8f920e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "65dc9aed-a7c4-4a59-8bc3-263fbe8f920e@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "65dc9aed-a7c4-4a59-8bc3-263fbe8f920e", + "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": "65dc9aed-a7c4-4a59-8bc3-263fbe8f920e@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 454, + "height": 43, + "rawWidth": 458, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -227, + -21.5, + 0, + 227, + -21.5, + 0, + -227, + 21.5, + 0, + 227, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 456, + 45, + 2, + 2, + 456, + 2 + ], + "nuv": [ + 0.004366812227074236, + 0.0425531914893617, + 0.9956331877729258, + 0.0425531914893617, + 0.004366812227074236, + 0.9574468085106383, + 0.9956331877729258, + 0.9574468085106383 + ], + "minPos": [ + -227, + -21.5, + 0 + ], + "maxPos": [ + 227, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "65dc9aed-a7c4-4a59-8bc3-263fbe8f920e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "65dc9aed-a7c4-4a59-8bc3-263fbe8f920e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal5.png b/assets/resources/i18nSprite2/id/Normal5.png new file mode 100755 index 0000000..5ae7e17 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal5.png differ diff --git a/assets/resources/i18nSprite2/id/Normal5.png.meta b/assets/resources/i18nSprite2/id/Normal5.png.meta new file mode 100644 index 0000000..0e08f17 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "33a97ecf-07e9-4438-ace1-e89151597c9c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "33a97ecf-07e9-4438-ace1-e89151597c9c@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "33a97ecf-07e9-4438-ace1-e89151597c9c", + "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": "33a97ecf-07e9-4438-ace1-e89151597c9c@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 145, + "height": 28, + "rawWidth": 149, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -72.5, + -14, + 0, + 72.5, + -14, + 0, + -72.5, + 14, + 0, + 72.5, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 147, + 30, + 2, + 2, + 147, + 2 + ], + "nuv": [ + 0.013422818791946308, + 0.0625, + 0.9865771812080537, + 0.0625, + 0.013422818791946308, + 0.9375, + 0.9865771812080537, + 0.9375 + ], + "minPos": [ + -72.5, + -14, + 0 + ], + "maxPos": [ + 72.5, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "33a97ecf-07e9-4438-ace1-e89151597c9c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "33a97ecf-07e9-4438-ace1-e89151597c9c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal6.png b/assets/resources/i18nSprite2/id/Normal6.png new file mode 100755 index 0000000..099cb53 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal6.png differ diff --git a/assets/resources/i18nSprite2/id/Normal6.png.meta b/assets/resources/i18nSprite2/id/Normal6.png.meta new file mode 100644 index 0000000..62f0b10 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e2483a60-9050-4b47-99c2-0198bdc6f285", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e2483a60-9050-4b47-99c2-0198bdc6f285@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e2483a60-9050-4b47-99c2-0198bdc6f285", + "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": "e2483a60-9050-4b47-99c2-0198bdc6f285@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 178, + "height": 43, + "rawWidth": 182, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -89, + -21.5, + 0, + 89, + -21.5, + 0, + -89, + 21.5, + 0, + 89, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 180, + 45, + 2, + 2, + 180, + 2 + ], + "nuv": [ + 0.01098901098901099, + 0.0425531914893617, + 0.989010989010989, + 0.0425531914893617, + 0.01098901098901099, + 0.9574468085106383, + 0.989010989010989, + 0.9574468085106383 + ], + "minPos": [ + -89, + -21.5, + 0 + ], + "maxPos": [ + 89, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e2483a60-9050-4b47-99c2-0198bdc6f285@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e2483a60-9050-4b47-99c2-0198bdc6f285@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal7.png b/assets/resources/i18nSprite2/id/Normal7.png new file mode 100755 index 0000000..9bab951 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal7.png differ diff --git a/assets/resources/i18nSprite2/id/Normal7.png.meta b/assets/resources/i18nSprite2/id/Normal7.png.meta new file mode 100644 index 0000000..99d68f3 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a7b5b3ec-d29c-43be-92f3-2975c87d3723", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a7b5b3ec-d29c-43be-92f3-2975c87d3723@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a7b5b3ec-d29c-43be-92f3-2975c87d3723", + "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": "a7b5b3ec-d29c-43be-92f3-2975c87d3723@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 317, + "height": 43, + "rawWidth": 321, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -158.5, + -21.5, + 0, + 158.5, + -21.5, + 0, + -158.5, + 21.5, + 0, + 158.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 319, + 45, + 2, + 2, + 319, + 2 + ], + "nuv": [ + 0.006230529595015576, + 0.0425531914893617, + 0.9937694704049844, + 0.0425531914893617, + 0.006230529595015576, + 0.9574468085106383, + 0.9937694704049844, + 0.9574468085106383 + ], + "minPos": [ + -158.5, + -21.5, + 0 + ], + "maxPos": [ + 158.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a7b5b3ec-d29c-43be-92f3-2975c87d3723@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a7b5b3ec-d29c-43be-92f3-2975c87d3723@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal8.png b/assets/resources/i18nSprite2/id/Normal8.png new file mode 100755 index 0000000..f1c64dd Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal8.png differ diff --git a/assets/resources/i18nSprite2/id/Normal8.png.meta b/assets/resources/i18nSprite2/id/Normal8.png.meta new file mode 100644 index 0000000..ebe47c6 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dd5c2059-5fa0-4285-a7a7-5f71f9863e2f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dd5c2059-5fa0-4285-a7a7-5f71f9863e2f@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dd5c2059-5fa0-4285-a7a7-5f71f9863e2f", + "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": "dd5c2059-5fa0-4285-a7a7-5f71f9863e2f@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1058, + "height": 49, + "rawWidth": 1062, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -529, + -24.5, + 0, + 529, + -24.5, + 0, + -529, + 24.5, + 0, + 529, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 1060, + 51, + 2, + 2, + 1060, + 2 + ], + "nuv": [ + 0.0018832391713747645, + 0.03773584905660377, + 0.9981167608286252, + 0.03773584905660377, + 0.0018832391713747645, + 0.9622641509433962, + 0.9981167608286252, + 0.9622641509433962 + ], + "minPos": [ + -529, + -24.5, + 0 + ], + "maxPos": [ + 529, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dd5c2059-5fa0-4285-a7a7-5f71f9863e2f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dd5c2059-5fa0-4285-a7a7-5f71f9863e2f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Normal9.png b/assets/resources/i18nSprite2/id/Normal9.png new file mode 100755 index 0000000..323c527 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Normal9.png differ diff --git a/assets/resources/i18nSprite2/id/Normal9.png.meta b/assets/resources/i18nSprite2/id/Normal9.png.meta new file mode 100644 index 0000000..9624a03 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2e03bd60-f517-4284-8b67-0ed94f79eeb8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2e03bd60-f517-4284-8b67-0ed94f79eeb8@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2e03bd60-f517-4284-8b67-0ed94f79eeb8", + "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": "2e03bd60-f517-4284-8b67-0ed94f79eeb8@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 792, + "height": 75, + "rawWidth": 792, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -396, + -37.5, + 0, + 396, + -37.5, + 0, + -396, + 37.5, + 0, + 396, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 792, + 75, + 0, + 0, + 792, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -396, + -37.5, + 0 + ], + "maxPos": [ + 396, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2e03bd60-f517-4284-8b67-0ed94f79eeb8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2e03bd60-f517-4284-8b67-0ed94f79eeb8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Win1.png b/assets/resources/i18nSprite2/id/Win1.png new file mode 100755 index 0000000..45581f6 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Win1.png differ diff --git a/assets/resources/i18nSprite2/id/Win1.png.meta b/assets/resources/i18nSprite2/id/Win1.png.meta new file mode 100644 index 0000000..81106ab --- /dev/null +++ b/assets/resources/i18nSprite2/id/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2f916492-45b1-4294-bc8c-9822a0ae23b4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2f916492-45b1-4294-bc8c-9822a0ae23b4@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2f916492-45b1-4294-bc8c-9822a0ae23b4", + "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": "2f916492-45b1-4294-bc8c-9822a0ae23b4@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1004, + "height": 389, + "rawWidth": 1004, + "rawHeight": 389, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -502, + -194.5, + 0, + 502, + -194.5, + 0, + -502, + 194.5, + 0, + 502, + 194.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 389, + 1004, + 389, + 0, + 0, + 1004, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -502, + -194.5, + 0 + ], + "maxPos": [ + 502, + 194.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2f916492-45b1-4294-bc8c-9822a0ae23b4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2f916492-45b1-4294-bc8c-9822a0ae23b4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Win2.png b/assets/resources/i18nSprite2/id/Win2.png new file mode 100755 index 0000000..edab800 Binary files /dev/null and b/assets/resources/i18nSprite2/id/Win2.png differ diff --git a/assets/resources/i18nSprite2/id/Win2.png.meta b/assets/resources/i18nSprite2/id/Win2.png.meta new file mode 100644 index 0000000..54de395 --- /dev/null +++ b/assets/resources/i18nSprite2/id/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f8c0e2ca-0555-4049-a299-33bd12d2d37f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f8c0e2ca-0555-4049-a299-33bd12d2d37f@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f8c0e2ca-0555-4049-a299-33bd12d2d37f", + "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": "f8c0e2ca-0555-4049-a299-33bd12d2d37f@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1004, + "height": 394, + "rawWidth": 1004, + "rawHeight": 394, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -502, + -197, + 0, + 502, + -197, + 0, + -502, + 197, + 0, + 502, + 197, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 394, + 1004, + 394, + 0, + 0, + 1004, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -502, + -197, + 0 + ], + "maxPos": [ + 502, + 197, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f8c0e2ca-0555-4049-a299-33bd12d2d37f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f8c0e2ca-0555-4049-a299-33bd12d2d37f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/Win3.png b/assets/resources/i18nSprite2/id/Win3.png new file mode 100755 index 0000000..ff50c9f Binary files /dev/null and b/assets/resources/i18nSprite2/id/Win3.png differ diff --git a/assets/resources/i18nSprite2/id/Win3.png.meta b/assets/resources/i18nSprite2/id/Win3.png.meta new file mode 100644 index 0000000..74e05ff --- /dev/null +++ b/assets/resources/i18nSprite2/id/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "68bffc9e-1ceb-4313-b95f-450e2b497607", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "68bffc9e-1ceb-4313-b95f-450e2b497607@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "68bffc9e-1ceb-4313-b95f-450e2b497607", + "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": "68bffc9e-1ceb-4313-b95f-450e2b497607@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1004, + "height": 418, + "rawWidth": 1004, + "rawHeight": 418, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -502, + -209, + 0, + 502, + -209, + 0, + -502, + 209, + 0, + 502, + 209, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 418, + 1004, + 418, + 0, + 0, + 1004, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -502, + -209, + 0 + ], + "maxPos": [ + 502, + 209, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "68bffc9e-1ceb-4313-b95f-450e2b497607@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "68bffc9e-1ceb-4313-b95f-450e2b497607@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/logo1.png b/assets/resources/i18nSprite2/id/logo1.png new file mode 100755 index 0000000..291b453 Binary files /dev/null and b/assets/resources/i18nSprite2/id/logo1.png differ diff --git a/assets/resources/i18nSprite2/id/logo1.png.meta b/assets/resources/i18nSprite2/id/logo1.png.meta new file mode 100644 index 0000000..b5cf166 --- /dev/null +++ b/assets/resources/i18nSprite2/id/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0998e017-09fa-45bf-8bf4-9eb6cef1c9d7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0998e017-09fa-45bf-8bf4-9eb6cef1c9d7@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0998e017-09fa-45bf-8bf4-9eb6cef1c9d7", + "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": "0998e017-09fa-45bf-8bf4-9eb6cef1c9d7@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 934, + "height": 234, + "rawWidth": 934, + "rawHeight": 234, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -467, + -117, + 0, + 467, + -117, + 0, + -467, + 117, + 0, + 467, + 117, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 234, + 934, + 234, + 0, + 0, + 934, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -467, + -117, + 0 + ], + "maxPos": [ + 467, + 117, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0998e017-09fa-45bf-8bf4-9eb6cef1c9d7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0998e017-09fa-45bf-8bf4-9eb6cef1c9d7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/id/zxksctter.png b/assets/resources/i18nSprite2/id/zxksctter.png new file mode 100755 index 0000000..e880fde Binary files /dev/null and b/assets/resources/i18nSprite2/id/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/id/zxksctter.png.meta b/assets/resources/i18nSprite2/id/zxksctter.png.meta new file mode 100644 index 0000000..0f487d2 --- /dev/null +++ b/assets/resources/i18nSprite2/id/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1b41ba4f-f45d-464a-bb98-4c1992b5ff21", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1b41ba4f-f45d-464a-bb98-4c1992b5ff21@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1b41ba4f-f45d-464a-bb98-4c1992b5ff21", + "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": "1b41ba4f-f45d-464a-bb98-4c1992b5ff21@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 218, + "height": 123, + "rawWidth": 222, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -109, + -61.5, + 0, + 109, + -61.5, + 0, + -109, + 61.5, + 0, + 109, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 220, + 125, + 2, + 2, + 220, + 2 + ], + "nuv": [ + 0.009009009009009009, + 0.015748031496062992, + 0.990990990990991, + 0.015748031496062992, + 0.009009009009009009, + 0.984251968503937, + 0.990990990990991, + 0.984251968503937 + ], + "minPos": [ + -109, + -61.5, + 0 + ], + "maxPos": [ + 109, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1b41ba4f-f45d-464a-bb98-4c1992b5ff21@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1b41ba4f-f45d-464a-bb98-4c1992b5ff21@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it.meta b/assets/resources/i18nSprite2/it.meta new file mode 100644 index 0000000..25e97d5 --- /dev/null +++ b/assets/resources/i18nSprite2/it.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "913d9ab7-54db-4bdf-866b-393e0a2633e5", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/it/Buy1.png b/assets/resources/i18nSprite2/it/Buy1.png new file mode 100755 index 0000000..1d6a84b Binary files /dev/null and b/assets/resources/i18nSprite2/it/Buy1.png differ diff --git a/assets/resources/i18nSprite2/it/Buy1.png.meta b/assets/resources/i18nSprite2/it/Buy1.png.meta new file mode 100644 index 0000000..8d06175 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a8feba7e-1248-43a0-8e45-13b58063291f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a8feba7e-1248-43a0-8e45-13b58063291f@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a8feba7e-1248-43a0-8e45-13b58063291f", + "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": "a8feba7e-1248-43a0-8e45-13b58063291f@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 850, + "height": 184, + "rawWidth": 850, + "rawHeight": 184, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -425, + -92, + 0, + 425, + -92, + 0, + -425, + 92, + 0, + 425, + 92, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 184, + 850, + 184, + 0, + 0, + 850, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -425, + -92, + 0 + ], + "maxPos": [ + 425, + 92, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a8feba7e-1248-43a0-8e45-13b58063291f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a8feba7e-1248-43a0-8e45-13b58063291f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Buy2.png b/assets/resources/i18nSprite2/it/Buy2.png new file mode 100755 index 0000000..18ced9e Binary files /dev/null and b/assets/resources/i18nSprite2/it/Buy2.png differ diff --git a/assets/resources/i18nSprite2/it/Buy2.png.meta b/assets/resources/i18nSprite2/it/Buy2.png.meta new file mode 100644 index 0000000..cda6c9d --- /dev/null +++ b/assets/resources/i18nSprite2/it/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "35d0bc90-3c04-4dfd-8517-0c8f58223595", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "35d0bc90-3c04-4dfd-8517-0c8f58223595@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "35d0bc90-3c04-4dfd-8517-0c8f58223595", + "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": "35d0bc90-3c04-4dfd-8517-0c8f58223595@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 179, + "height": 97, + "rawWidth": 179, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -89.5, + -48.5, + 0, + 89.5, + -48.5, + 0, + -89.5, + 48.5, + 0, + 89.5, + 48.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 97, + 179, + 97, + 0, + 0, + 179, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -89.5, + -48.5, + 0 + ], + "maxPos": [ + 89.5, + 48.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "35d0bc90-3c04-4dfd-8517-0c8f58223595@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "35d0bc90-3c04-4dfd-8517-0c8f58223595@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Buy4.png b/assets/resources/i18nSprite2/it/Buy4.png new file mode 100755 index 0000000..02e9868 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Buy4.png differ diff --git a/assets/resources/i18nSprite2/it/Buy4.png.meta b/assets/resources/i18nSprite2/it/Buy4.png.meta new file mode 100644 index 0000000..7021b53 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c96088c6-8029-4df3-a6fc-fc04dafba1bf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c96088c6-8029-4df3-a6fc-fc04dafba1bf@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c96088c6-8029-4df3-a6fc-fc04dafba1bf", + "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": "c96088c6-8029-4df3-a6fc-fc04dafba1bf@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 81, + "rawWidth": 224, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -40.5, + 0, + 112, + -40.5, + 0, + -112, + 40.5, + 0, + 112, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 224, + 81, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -40.5, + 0 + ], + "maxPos": [ + 112, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c96088c6-8029-4df3-a6fc-fc04dafba1bf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c96088c6-8029-4df3-a6fc-fc04dafba1bf@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Buy5.png b/assets/resources/i18nSprite2/it/Buy5.png new file mode 100755 index 0000000..2c3d4c5 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Buy5.png differ diff --git a/assets/resources/i18nSprite2/it/Buy5.png.meta b/assets/resources/i18nSprite2/it/Buy5.png.meta new file mode 100644 index 0000000..f7e118d --- /dev/null +++ b/assets/resources/i18nSprite2/it/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f2860a5-cbe3-43cc-8101-50d6e074877b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f2860a5-cbe3-43cc-8101-50d6e074877b@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f2860a5-cbe3-43cc-8101-50d6e074877b", + "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": "4f2860a5-cbe3-43cc-8101-50d6e074877b@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 191, + "height": 59, + "rawWidth": 195, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -95.5, + -29.5, + 0, + 95.5, + -29.5, + 0, + -95.5, + 29.5, + 0, + 95.5, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 193, + 61, + 2, + 2, + 193, + 2 + ], + "nuv": [ + 0.010256410256410256, + 0.031746031746031744, + 0.9897435897435898, + 0.031746031746031744, + 0.010256410256410256, + 0.9682539682539683, + 0.9897435897435898, + 0.9682539682539683 + ], + "minPos": [ + -95.5, + -29.5, + 0 + ], + "maxPos": [ + 95.5, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f2860a5-cbe3-43cc-8101-50d6e074877b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f2860a5-cbe3-43cc-8101-50d6e074877b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Buy8.png b/assets/resources/i18nSprite2/it/Buy8.png new file mode 100755 index 0000000..a362c0c Binary files /dev/null and b/assets/resources/i18nSprite2/it/Buy8.png differ diff --git a/assets/resources/i18nSprite2/it/Buy8.png.meta b/assets/resources/i18nSprite2/it/Buy8.png.meta new file mode 100644 index 0000000..dfa9c98 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "08b4475a-a3f9-4284-9eb0-ecbccef04835", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "08b4475a-a3f9-4284-9eb0-ecbccef04835@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "08b4475a-a3f9-4284-9eb0-ecbccef04835", + "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": "08b4475a-a3f9-4284-9eb0-ecbccef04835@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 283, + "height": 76, + "rawWidth": 283, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -141.5, + -38, + 0, + 141.5, + -38, + 0, + -141.5, + 38, + 0, + 141.5, + 38, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 76, + 283, + 76, + 0, + 0, + 283, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -141.5, + -38, + 0 + ], + "maxPos": [ + 141.5, + 38, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "08b4475a-a3f9-4284-9eb0-ecbccef04835@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "08b4475a-a3f9-4284-9eb0-ecbccef04835@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FREELoading.png b/assets/resources/i18nSprite2/it/FREELoading.png new file mode 100755 index 0000000..b27895f Binary files /dev/null and b/assets/resources/i18nSprite2/it/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/it/FREELoading.png.meta b/assets/resources/i18nSprite2/it/FREELoading.png.meta new file mode 100644 index 0000000..84c430c --- /dev/null +++ b/assets/resources/i18nSprite2/it/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8bc957ea-7ff0-4c29-b13c-41708f4a8649", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8bc957ea-7ff0-4c29-b13c-41708f4a8649@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8bc957ea-7ff0-4c29-b13c-41708f4a8649", + "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": "8bc957ea-7ff0-4c29-b13c-41708f4a8649@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 986, + "height": 245, + "rawWidth": 986, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -493, + -122.5, + 0, + 493, + -122.5, + 0, + -493, + 122.5, + 0, + 493, + 122.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 245, + 986, + 245, + 0, + 0, + 986, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -493, + -122.5, + 0 + ], + "maxPos": [ + 493, + 122.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8bc957ea-7ff0-4c29-b13c-41708f4a8649@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8bc957ea-7ff0-4c29-b13c-41708f4a8649@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FREELoading1.png b/assets/resources/i18nSprite2/it/FREELoading1.png new file mode 100755 index 0000000..7cd9cb1 Binary files /dev/null and b/assets/resources/i18nSprite2/it/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/it/FREELoading1.png.meta b/assets/resources/i18nSprite2/it/FREELoading1.png.meta new file mode 100644 index 0000000..bcd5f04 --- /dev/null +++ b/assets/resources/i18nSprite2/it/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09ebe8ef-3bb8-44ee-8ca6-ad53da754969", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09ebe8ef-3bb8-44ee-8ca6-ad53da754969@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09ebe8ef-3bb8-44ee-8ca6-ad53da754969", + "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": "09ebe8ef-3bb8-44ee-8ca6-ad53da754969@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 903, + "height": 131, + "rawWidth": 907, + "rawHeight": 135, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -451.5, + -65.5, + 0, + 451.5, + -65.5, + 0, + -451.5, + 65.5, + 0, + 451.5, + 65.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 133, + 905, + 133, + 2, + 2, + 905, + 2 + ], + "nuv": [ + 0.002205071664829107, + 0.014814814814814815, + 0.9977949283351709, + 0.014814814814814815, + 0.002205071664829107, + 0.9851851851851852, + 0.9977949283351709, + 0.9851851851851852 + ], + "minPos": [ + -451.5, + -65.5, + 0 + ], + "maxPos": [ + 451.5, + 65.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09ebe8ef-3bb8-44ee-8ca6-ad53da754969@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09ebe8ef-3bb8-44ee-8ca6-ad53da754969@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FREELoading2.png b/assets/resources/i18nSprite2/it/FREELoading2.png new file mode 100755 index 0000000..e82650e Binary files /dev/null and b/assets/resources/i18nSprite2/it/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/it/FREELoading2.png.meta b/assets/resources/i18nSprite2/it/FREELoading2.png.meta new file mode 100644 index 0000000..ed545ac --- /dev/null +++ b/assets/resources/i18nSprite2/it/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d4c22a43-67ce-48b7-b41d-cf5662e0193a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d4c22a43-67ce-48b7-b41d-cf5662e0193a@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d4c22a43-67ce-48b7-b41d-cf5662e0193a", + "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": "d4c22a43-67ce-48b7-b41d-cf5662e0193a@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 81, + "rawWidth": 224, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -40.5, + 0, + 112, + -40.5, + 0, + -112, + 40.5, + 0, + 112, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 224, + 81, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -40.5, + 0 + ], + "maxPos": [ + 112, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d4c22a43-67ce-48b7-b41d-cf5662e0193a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d4c22a43-67ce-48b7-b41d-cf5662e0193a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FREESPIN2.png b/assets/resources/i18nSprite2/it/FREESPIN2.png new file mode 100755 index 0000000..47f759a Binary files /dev/null and b/assets/resources/i18nSprite2/it/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/it/FREESPIN2.png.meta b/assets/resources/i18nSprite2/it/FREESPIN2.png.meta new file mode 100644 index 0000000..8c5bbfc --- /dev/null +++ b/assets/resources/i18nSprite2/it/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b7cb67e9-8725-4620-aa64-faad9ffd33fe", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b7cb67e9-8725-4620-aa64-faad9ffd33fe@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b7cb67e9-8725-4620-aa64-faad9ffd33fe", + "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": "b7cb67e9-8725-4620-aa64-faad9ffd33fe@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 609, + "height": 75, + "rawWidth": 609, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -304.5, + -37.5, + 0, + 304.5, + -37.5, + 0, + -304.5, + 37.5, + 0, + 304.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 609, + 75, + 0, + 0, + 609, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -304.5, + -37.5, + 0 + ], + "maxPos": [ + 304.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b7cb67e9-8725-4620-aa64-faad9ffd33fe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b7cb67e9-8725-4620-aa64-faad9ffd33fe@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FREESPIN4.png b/assets/resources/i18nSprite2/it/FREESPIN4.png new file mode 100755 index 0000000..46e4e9f Binary files /dev/null and b/assets/resources/i18nSprite2/it/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/it/FREESPIN4.png.meta b/assets/resources/i18nSprite2/it/FREESPIN4.png.meta new file mode 100644 index 0000000..3520c01 --- /dev/null +++ b/assets/resources/i18nSprite2/it/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4475dfef-102b-4bd8-955d-14aab457a7eb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4475dfef-102b-4bd8-955d-14aab457a7eb@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4475dfef-102b-4bd8-955d-14aab457a7eb", + "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": "4475dfef-102b-4bd8-955d-14aab457a7eb@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 415, + "height": 80, + "rawWidth": 415, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -207.5, + -40, + 0, + 207.5, + -40, + 0, + -207.5, + 40, + 0, + 207.5, + 40, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 80, + 415, + 80, + 0, + 0, + 415, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -207.5, + -40, + 0 + ], + "maxPos": [ + 207.5, + 40, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4475dfef-102b-4bd8-955d-14aab457a7eb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4475dfef-102b-4bd8-955d-14aab457a7eb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FREESPIN5.png b/assets/resources/i18nSprite2/it/FREESPIN5.png new file mode 100755 index 0000000..6adfa4a Binary files /dev/null and b/assets/resources/i18nSprite2/it/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/it/FREESPIN5.png.meta b/assets/resources/i18nSprite2/it/FREESPIN5.png.meta new file mode 100644 index 0000000..dfe04cd --- /dev/null +++ b/assets/resources/i18nSprite2/it/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cf666bab-3dd4-42f2-9d4b-fce272063ad0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cf666bab-3dd4-42f2-9d4b-fce272063ad0@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cf666bab-3dd4-42f2-9d4b-fce272063ad0", + "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": "cf666bab-3dd4-42f2-9d4b-fce272063ad0@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1003, + "height": 258, + "rawWidth": 1003, + "rawHeight": 258, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -501.5, + -129, + 0, + 501.5, + -129, + 0, + -501.5, + 129, + 0, + 501.5, + 129, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 258, + 1003, + 258, + 0, + 0, + 1003, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -501.5, + -129, + 0 + ], + "maxPos": [ + 501.5, + 129, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cf666bab-3dd4-42f2-9d4b-fce272063ad0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cf666bab-3dd4-42f2-9d4b-fce272063ad0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/FSFS.png b/assets/resources/i18nSprite2/it/FSFS.png new file mode 100755 index 0000000..37678ed Binary files /dev/null and b/assets/resources/i18nSprite2/it/FSFS.png differ diff --git a/assets/resources/i18nSprite2/it/FSFS.png.meta b/assets/resources/i18nSprite2/it/FSFS.png.meta new file mode 100644 index 0000000..30814ca --- /dev/null +++ b/assets/resources/i18nSprite2/it/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "98512516-890a-4a0a-90a0-4afa7d6b9d5c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "98512516-890a-4a0a-90a0-4afa7d6b9d5c@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "98512516-890a-4a0a-90a0-4afa7d6b9d5c", + "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": "98512516-890a-4a0a-90a0-4afa7d6b9d5c@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 592, + "height": 147, + "rawWidth": 592, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -296, + -73.5, + 0, + 296, + -73.5, + 0, + -296, + 73.5, + 0, + 296, + 73.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 147, + 592, + 147, + 0, + 0, + 592, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -296, + -73.5, + 0 + ], + "maxPos": [ + 296, + 73.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "98512516-890a-4a0a-90a0-4afa7d6b9d5c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "98512516-890a-4a0a-90a0-4afa7d6b9d5c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Free.png b/assets/resources/i18nSprite2/it/Free.png new file mode 100755 index 0000000..47c9a9d Binary files /dev/null and b/assets/resources/i18nSprite2/it/Free.png differ diff --git a/assets/resources/i18nSprite2/it/Free.png.meta b/assets/resources/i18nSprite2/it/Free.png.meta new file mode 100644 index 0000000..dfb83d7 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "16fd6939-790a-41d2-8285-c7787968f40f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "16fd6939-790a-41d2-8285-c7787968f40f@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "16fd6939-790a-41d2-8285-c7787968f40f", + "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": "16fd6939-790a-41d2-8285-c7787968f40f@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 483, + "height": 163, + "rawWidth": 483, + "rawHeight": 163, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -241.5, + -81.5, + 0, + 241.5, + -81.5, + 0, + -241.5, + 81.5, + 0, + 241.5, + 81.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 163, + 483, + 163, + 0, + 0, + 483, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -241.5, + -81.5, + 0 + ], + "maxPos": [ + 241.5, + 81.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "16fd6939-790a-41d2-8285-c7787968f40f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "16fd6939-790a-41d2-8285-c7787968f40f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Free1.png b/assets/resources/i18nSprite2/it/Free1.png new file mode 100755 index 0000000..bfb969e Binary files /dev/null and b/assets/resources/i18nSprite2/it/Free1.png differ diff --git a/assets/resources/i18nSprite2/it/Free1.png.meta b/assets/resources/i18nSprite2/it/Free1.png.meta new file mode 100644 index 0000000..7d99788 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fe42a4c5-b845-4514-aa61-87d33360ea50", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fe42a4c5-b845-4514-aa61-87d33360ea50@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fe42a4c5-b845-4514-aa61-87d33360ea50", + "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": "fe42a4c5-b845-4514-aa61-87d33360ea50@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 527, + "height": 165, + "rawWidth": 527, + "rawHeight": 165, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -263.5, + -82.5, + 0, + 263.5, + -82.5, + 0, + -263.5, + 82.5, + 0, + 263.5, + 82.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 165, + 527, + 165, + 0, + 0, + 527, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -263.5, + -82.5, + 0 + ], + "maxPos": [ + 263.5, + 82.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fe42a4c5-b845-4514-aa61-87d33360ea50@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fe42a4c5-b845-4514-aa61-87d33360ea50@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal1.png b/assets/resources/i18nSprite2/it/Normal1.png new file mode 100755 index 0000000..ad01804 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal1.png differ diff --git a/assets/resources/i18nSprite2/it/Normal1.png.meta b/assets/resources/i18nSprite2/it/Normal1.png.meta new file mode 100644 index 0000000..8c309bb --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d431b992-1e96-490c-bf11-c76f3fa8a095", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d431b992-1e96-490c-bf11-c76f3fa8a095@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d431b992-1e96-490c-bf11-c76f3fa8a095", + "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": "d431b992-1e96-490c-bf11-c76f3fa8a095@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 662, + "height": 43, + "rawWidth": 666, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -331, + -21.5, + 0, + 331, + -21.5, + 0, + -331, + 21.5, + 0, + 331, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 664, + 45, + 2, + 2, + 664, + 2 + ], + "nuv": [ + 0.003003003003003003, + 0.0425531914893617, + 0.996996996996997, + 0.0425531914893617, + 0.003003003003003003, + 0.9574468085106383, + 0.996996996996997, + 0.9574468085106383 + ], + "minPos": [ + -331, + -21.5, + 0 + ], + "maxPos": [ + 331, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d431b992-1e96-490c-bf11-c76f3fa8a095@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d431b992-1e96-490c-bf11-c76f3fa8a095@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal10.png b/assets/resources/i18nSprite2/it/Normal10.png new file mode 100755 index 0000000..64aa0ba Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal10.png differ diff --git a/assets/resources/i18nSprite2/it/Normal10.png.meta b/assets/resources/i18nSprite2/it/Normal10.png.meta new file mode 100644 index 0000000..a2cd23f --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "35e6613c-dbf9-4185-b096-0497c3a2cf89", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "35e6613c-dbf9-4185-b096-0497c3a2cf89@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "35e6613c-dbf9-4185-b096-0497c3a2cf89", + "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": "35e6613c-dbf9-4185-b096-0497c3a2cf89@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 635, + "height": 43, + "rawWidth": 639, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -317.5, + -21.5, + 0, + 317.5, + -21.5, + 0, + -317.5, + 21.5, + 0, + 317.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 637, + 45, + 2, + 2, + 637, + 2 + ], + "nuv": [ + 0.003129890453834116, + 0.0425531914893617, + 0.9968701095461658, + 0.0425531914893617, + 0.003129890453834116, + 0.9574468085106383, + 0.9968701095461658, + 0.9574468085106383 + ], + "minPos": [ + -317.5, + -21.5, + 0 + ], + "maxPos": [ + 317.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "35e6613c-dbf9-4185-b096-0497c3a2cf89@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "35e6613c-dbf9-4185-b096-0497c3a2cf89@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal11.png b/assets/resources/i18nSprite2/it/Normal11.png new file mode 100755 index 0000000..bae5675 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal11.png differ diff --git a/assets/resources/i18nSprite2/it/Normal11.png.meta b/assets/resources/i18nSprite2/it/Normal11.png.meta new file mode 100644 index 0000000..5c9f3fa --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f842e901-ed49-462c-9545-5130404135b4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f842e901-ed49-462c-9545-5130404135b4@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f842e901-ed49-462c-9545-5130404135b4", + "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": "f842e901-ed49-462c-9545-5130404135b4@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 976, + "height": 78, + "rawWidth": 976, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -488, + -39, + 0, + 488, + -39, + 0, + -488, + 39, + 0, + 488, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 976, + 78, + 0, + 0, + 976, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -488, + -39, + 0 + ], + "maxPos": [ + 488, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f842e901-ed49-462c-9545-5130404135b4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f842e901-ed49-462c-9545-5130404135b4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal2.png b/assets/resources/i18nSprite2/it/Normal2.png new file mode 100755 index 0000000..dc38d72 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal2.png differ diff --git a/assets/resources/i18nSprite2/it/Normal2.png.meta b/assets/resources/i18nSprite2/it/Normal2.png.meta new file mode 100644 index 0000000..8d7df54 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "02fc37a6-c60e-4690-908f-35eae07b81cf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "02fc37a6-c60e-4690-908f-35eae07b81cf@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "02fc37a6-c60e-4690-908f-35eae07b81cf", + "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": "02fc37a6-c60e-4690-908f-35eae07b81cf@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 355, + "height": 43, + "rawWidth": 359, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -177.5, + -21.5, + 0, + 177.5, + -21.5, + 0, + -177.5, + 21.5, + 0, + 177.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 357, + 45, + 2, + 2, + 357, + 2 + ], + "nuv": [ + 0.005571030640668524, + 0.0425531914893617, + 0.9944289693593314, + 0.0425531914893617, + 0.005571030640668524, + 0.9574468085106383, + 0.9944289693593314, + 0.9574468085106383 + ], + "minPos": [ + -177.5, + -21.5, + 0 + ], + "maxPos": [ + 177.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "02fc37a6-c60e-4690-908f-35eae07b81cf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "02fc37a6-c60e-4690-908f-35eae07b81cf@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal3.png b/assets/resources/i18nSprite2/it/Normal3.png new file mode 100755 index 0000000..3d33825 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal3.png differ diff --git a/assets/resources/i18nSprite2/it/Normal3.png.meta b/assets/resources/i18nSprite2/it/Normal3.png.meta new file mode 100644 index 0000000..4be86d5 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "925b36dc-5421-481d-8b84-96ddbfa9acfa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "925b36dc-5421-481d-8b84-96ddbfa9acfa@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "925b36dc-5421-481d-8b84-96ddbfa9acfa", + "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": "925b36dc-5421-481d-8b84-96ddbfa9acfa@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 498, + "height": 43, + "rawWidth": 502, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -249, + -21.5, + 0, + 249, + -21.5, + 0, + -249, + 21.5, + 0, + 249, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 500, + 45, + 2, + 2, + 500, + 2 + ], + "nuv": [ + 0.00398406374501992, + 0.0425531914893617, + 0.9960159362549801, + 0.0425531914893617, + 0.00398406374501992, + 0.9574468085106383, + 0.9960159362549801, + 0.9574468085106383 + ], + "minPos": [ + -249, + -21.5, + 0 + ], + "maxPos": [ + 249, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "925b36dc-5421-481d-8b84-96ddbfa9acfa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "925b36dc-5421-481d-8b84-96ddbfa9acfa@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal4.png b/assets/resources/i18nSprite2/it/Normal4.png new file mode 100755 index 0000000..a6969dc Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal4.png differ diff --git a/assets/resources/i18nSprite2/it/Normal4.png.meta b/assets/resources/i18nSprite2/it/Normal4.png.meta new file mode 100644 index 0000000..53ac8ed --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dfb4080e-eefd-4921-8bf8-5bf794a8a352", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dfb4080e-eefd-4921-8bf8-5bf794a8a352@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dfb4080e-eefd-4921-8bf8-5bf794a8a352", + "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": "dfb4080e-eefd-4921-8bf8-5bf794a8a352@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 500, + "height": 45, + "rawWidth": 504, + "rawHeight": 49, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -250, + -22.5, + 0, + 250, + -22.5, + 0, + -250, + 22.5, + 0, + 250, + 22.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 47, + 502, + 47, + 2, + 2, + 502, + 2 + ], + "nuv": [ + 0.003968253968253968, + 0.04081632653061224, + 0.996031746031746, + 0.04081632653061224, + 0.003968253968253968, + 0.9591836734693877, + 0.996031746031746, + 0.9591836734693877 + ], + "minPos": [ + -250, + -22.5, + 0 + ], + "maxPos": [ + 250, + 22.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dfb4080e-eefd-4921-8bf8-5bf794a8a352@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dfb4080e-eefd-4921-8bf8-5bf794a8a352@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal5.png b/assets/resources/i18nSprite2/it/Normal5.png new file mode 100755 index 0000000..567dbd9 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal5.png differ diff --git a/assets/resources/i18nSprite2/it/Normal5.png.meta b/assets/resources/i18nSprite2/it/Normal5.png.meta new file mode 100644 index 0000000..a41a16e --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e72d7466-3ef8-4ac2-b1d5-2d61d1edc34c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e72d7466-3ef8-4ac2-b1d5-2d61d1edc34c@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e72d7466-3ef8-4ac2-b1d5-2d61d1edc34c", + "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": "e72d7466-3ef8-4ac2-b1d5-2d61d1edc34c@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 130, + "height": 28, + "rawWidth": 134, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -65, + -14, + 0, + 65, + -14, + 0, + -65, + 14, + 0, + 65, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 132, + 30, + 2, + 2, + 132, + 2 + ], + "nuv": [ + 0.014925373134328358, + 0.0625, + 0.9850746268656716, + 0.0625, + 0.014925373134328358, + 0.9375, + 0.9850746268656716, + 0.9375 + ], + "minPos": [ + -65, + -14, + 0 + ], + "maxPos": [ + 65, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e72d7466-3ef8-4ac2-b1d5-2d61d1edc34c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e72d7466-3ef8-4ac2-b1d5-2d61d1edc34c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal6.png b/assets/resources/i18nSprite2/it/Normal6.png new file mode 100755 index 0000000..89a8952 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal6.png differ diff --git a/assets/resources/i18nSprite2/it/Normal6.png.meta b/assets/resources/i18nSprite2/it/Normal6.png.meta new file mode 100644 index 0000000..a01a927 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "87100773-3c54-418f-8b48-c79404c95ec8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "87100773-3c54-418f-8b48-c79404c95ec8@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "87100773-3c54-418f-8b48-c79404c95ec8", + "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": "87100773-3c54-418f-8b48-c79404c95ec8@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 114, + "height": 43, + "rawWidth": 118, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -57, + -21.5, + 0, + 57, + -21.5, + 0, + -57, + 21.5, + 0, + 57, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 116, + 45, + 2, + 2, + 116, + 2 + ], + "nuv": [ + 0.01694915254237288, + 0.0425531914893617, + 0.9830508474576272, + 0.0425531914893617, + 0.01694915254237288, + 0.9574468085106383, + 0.9830508474576272, + 0.9574468085106383 + ], + "minPos": [ + -57, + -21.5, + 0 + ], + "maxPos": [ + 57, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "87100773-3c54-418f-8b48-c79404c95ec8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "87100773-3c54-418f-8b48-c79404c95ec8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal7.png b/assets/resources/i18nSprite2/it/Normal7.png new file mode 100755 index 0000000..e71accd Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal7.png differ diff --git a/assets/resources/i18nSprite2/it/Normal7.png.meta b/assets/resources/i18nSprite2/it/Normal7.png.meta new file mode 100644 index 0000000..e6bf571 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ca0ff06-b22f-4ca0-99d8-f722ff280745", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ca0ff06-b22f-4ca0-99d8-f722ff280745@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ca0ff06-b22f-4ca0-99d8-f722ff280745", + "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": "9ca0ff06-b22f-4ca0-99d8-f722ff280745@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 278, + "height": 43, + "rawWidth": 282, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -139, + -21.5, + 0, + 139, + -21.5, + 0, + -139, + 21.5, + 0, + 139, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 280, + 45, + 2, + 2, + 280, + 2 + ], + "nuv": [ + 0.0070921985815602835, + 0.0425531914893617, + 0.9929078014184397, + 0.0425531914893617, + 0.0070921985815602835, + 0.9574468085106383, + 0.9929078014184397, + 0.9574468085106383 + ], + "minPos": [ + -139, + -21.5, + 0 + ], + "maxPos": [ + 139, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ca0ff06-b22f-4ca0-99d8-f722ff280745@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ca0ff06-b22f-4ca0-99d8-f722ff280745@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal8.png b/assets/resources/i18nSprite2/it/Normal8.png new file mode 100755 index 0000000..f59b52e Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal8.png differ diff --git a/assets/resources/i18nSprite2/it/Normal8.png.meta b/assets/resources/i18nSprite2/it/Normal8.png.meta new file mode 100644 index 0000000..cbfa26c --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ca64748a-58a9-422c-9c61-0b151445404e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ca64748a-58a9-422c-9c61-0b151445404e@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ca64748a-58a9-422c-9c61-0b151445404e", + "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": "ca64748a-58a9-422c-9c61-0b151445404e@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 999, + "height": 45, + "rawWidth": 1003, + "rawHeight": 49, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -499.5, + -22.5, + 0, + 499.5, + -22.5, + 0, + -499.5, + 22.5, + 0, + 499.5, + 22.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 47, + 1001, + 47, + 2, + 2, + 1001, + 2 + ], + "nuv": [ + 0.0019940179461615153, + 0.04081632653061224, + 0.9980059820538385, + 0.04081632653061224, + 0.0019940179461615153, + 0.9591836734693877, + 0.9980059820538385, + 0.9591836734693877 + ], + "minPos": [ + -499.5, + -22.5, + 0 + ], + "maxPos": [ + 499.5, + 22.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ca64748a-58a9-422c-9c61-0b151445404e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ca64748a-58a9-422c-9c61-0b151445404e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Normal9.png b/assets/resources/i18nSprite2/it/Normal9.png new file mode 100755 index 0000000..d9b5e6c Binary files /dev/null and b/assets/resources/i18nSprite2/it/Normal9.png differ diff --git a/assets/resources/i18nSprite2/it/Normal9.png.meta b/assets/resources/i18nSprite2/it/Normal9.png.meta new file mode 100644 index 0000000..e3fb49f --- /dev/null +++ b/assets/resources/i18nSprite2/it/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "18df4822-6828-4f98-88ab-848376d3abf4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "18df4822-6828-4f98-88ab-848376d3abf4@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "18df4822-6828-4f98-88ab-848376d3abf4", + "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": "18df4822-6828-4f98-88ab-848376d3abf4@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 622, + "height": 75, + "rawWidth": 622, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -311, + -37.5, + 0, + 311, + -37.5, + 0, + -311, + 37.5, + 0, + 311, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 622, + 75, + 0, + 0, + 622, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -311, + -37.5, + 0 + ], + "maxPos": [ + 311, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "18df4822-6828-4f98-88ab-848376d3abf4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "18df4822-6828-4f98-88ab-848376d3abf4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Win1.png b/assets/resources/i18nSprite2/it/Win1.png new file mode 100755 index 0000000..76c0b77 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Win1.png differ diff --git a/assets/resources/i18nSprite2/it/Win1.png.meta b/assets/resources/i18nSprite2/it/Win1.png.meta new file mode 100644 index 0000000..23bcb07 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "58c61594-cb67-4b5d-a995-7d45c0775a02", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "58c61594-cb67-4b5d-a995-7d45c0775a02@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "58c61594-cb67-4b5d-a995-7d45c0775a02", + "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": "58c61594-cb67-4b5d-a995-7d45c0775a02@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1005, + "height": 256, + "rawWidth": 1005, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -502.5, + -128, + 0, + 502.5, + -128, + 0, + -502.5, + 128, + 0, + 502.5, + 128, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 256, + 1005, + 256, + 0, + 0, + 1005, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -502.5, + -128, + 0 + ], + "maxPos": [ + 502.5, + 128, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "58c61594-cb67-4b5d-a995-7d45c0775a02@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "58c61594-cb67-4b5d-a995-7d45c0775a02@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Win2.png b/assets/resources/i18nSprite2/it/Win2.png new file mode 100755 index 0000000..84e9b26 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Win2.png differ diff --git a/assets/resources/i18nSprite2/it/Win2.png.meta b/assets/resources/i18nSprite2/it/Win2.png.meta new file mode 100644 index 0000000..e1a167f --- /dev/null +++ b/assets/resources/i18nSprite2/it/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3665aae4-478c-46fd-8933-6f3683665978", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3665aae4-478c-46fd-8933-6f3683665978@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3665aae4-478c-46fd-8933-6f3683665978", + "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": "3665aae4-478c-46fd-8933-6f3683665978@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1015, + "height": 288, + "rawWidth": 1015, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -507.5, + -144, + 0, + 507.5, + -144, + 0, + -507.5, + 144, + 0, + 507.5, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 1015, + 288, + 0, + 0, + 1015, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -507.5, + -144, + 0 + ], + "maxPos": [ + 507.5, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3665aae4-478c-46fd-8933-6f3683665978@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3665aae4-478c-46fd-8933-6f3683665978@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/Win3.png b/assets/resources/i18nSprite2/it/Win3.png new file mode 100755 index 0000000..ca763b6 Binary files /dev/null and b/assets/resources/i18nSprite2/it/Win3.png differ diff --git a/assets/resources/i18nSprite2/it/Win3.png.meta b/assets/resources/i18nSprite2/it/Win3.png.meta new file mode 100644 index 0000000..8d89e34 --- /dev/null +++ b/assets/resources/i18nSprite2/it/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "27aeee7c-940a-449e-99d6-6a86749d3304", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "27aeee7c-940a-449e-99d6-6a86749d3304@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "27aeee7c-940a-449e-99d6-6a86749d3304", + "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": "27aeee7c-940a-449e-99d6-6a86749d3304@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 817, + "height": 467, + "rawWidth": 817, + "rawHeight": 467, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -408.5, + -233.5, + 0, + 408.5, + -233.5, + 0, + -408.5, + 233.5, + 0, + 408.5, + 233.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 467, + 817, + 467, + 0, + 0, + 817, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -408.5, + -233.5, + 0 + ], + "maxPos": [ + 408.5, + 233.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "27aeee7c-940a-449e-99d6-6a86749d3304@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "27aeee7c-940a-449e-99d6-6a86749d3304@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/logo1.png b/assets/resources/i18nSprite2/it/logo1.png new file mode 100755 index 0000000..b2c5843 Binary files /dev/null and b/assets/resources/i18nSprite2/it/logo1.png differ diff --git a/assets/resources/i18nSprite2/it/logo1.png.meta b/assets/resources/i18nSprite2/it/logo1.png.meta new file mode 100644 index 0000000..0c7e817 --- /dev/null +++ b/assets/resources/i18nSprite2/it/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6cf21c13-bc8c-4582-bd81-db8d5ae3dfad", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6cf21c13-bc8c-4582-bd81-db8d5ae3dfad@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6cf21c13-bc8c-4582-bd81-db8d5ae3dfad", + "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": "6cf21c13-bc8c-4582-bd81-db8d5ae3dfad@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 993, + "height": 240, + "rawWidth": 993, + "rawHeight": 240, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -496.5, + -120, + 0, + 496.5, + -120, + 0, + -496.5, + 120, + 0, + 496.5, + 120, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 240, + 993, + 240, + 0, + 0, + 993, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -496.5, + -120, + 0 + ], + "maxPos": [ + 496.5, + 120, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6cf21c13-bc8c-4582-bd81-db8d5ae3dfad@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6cf21c13-bc8c-4582-bd81-db8d5ae3dfad@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/it/zxksctter.png b/assets/resources/i18nSprite2/it/zxksctter.png new file mode 100755 index 0000000..118f546 Binary files /dev/null and b/assets/resources/i18nSprite2/it/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/it/zxksctter.png.meta b/assets/resources/i18nSprite2/it/zxksctter.png.meta new file mode 100644 index 0000000..b4e561f --- /dev/null +++ b/assets/resources/i18nSprite2/it/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "63351a97-4bd0-4198-ae60-bfadc9ce7f06", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "63351a97-4bd0-4198-ae60-bfadc9ce7f06@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "63351a97-4bd0-4198-ae60-bfadc9ce7f06", + "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": "63351a97-4bd0-4198-ae60-bfadc9ce7f06@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 266, + "height": 94, + "rawWidth": 270, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -133, + -47, + 0, + 133, + -47, + 0, + -133, + 47, + 0, + 133, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 96, + 268, + 96, + 2, + 2, + 268, + 2 + ], + "nuv": [ + 0.007407407407407408, + 0.02040816326530612, + 0.9925925925925926, + 0.02040816326530612, + 0.007407407407407408, + 0.9795918367346939, + 0.9925925925925926, + 0.9795918367346939 + ], + "minPos": [ + -133, + -47, + 0 + ], + "maxPos": [ + 133, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "63351a97-4bd0-4198-ae60-bfadc9ce7f06@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "63351a97-4bd0-4198-ae60-bfadc9ce7f06@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja.meta b/assets/resources/i18nSprite2/ja.meta new file mode 100644 index 0000000..9733c5d --- /dev/null +++ b/assets/resources/i18nSprite2/ja.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "f7d93416-722e-49d4-8eaf-71c9ef3d3eaf", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/ja/Buy1.png b/assets/resources/i18nSprite2/ja/Buy1.png new file mode 100755 index 0000000..e1d883d Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Buy1.png differ diff --git a/assets/resources/i18nSprite2/ja/Buy1.png.meta b/assets/resources/i18nSprite2/ja/Buy1.png.meta new file mode 100644 index 0000000..f658468 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a13e4118-4494-4e43-8730-6ebcde686ff7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a13e4118-4494-4e43-8730-6ebcde686ff7@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a13e4118-4494-4e43-8730-6ebcde686ff7", + "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": "a13e4118-4494-4e43-8730-6ebcde686ff7@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 858, + "height": 172, + "rawWidth": 858, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -429, + -86, + 0, + 429, + -86, + 0, + -429, + 86, + 0, + 429, + 86, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 172, + 858, + 172, + 0, + 0, + 858, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -429, + -86, + 0 + ], + "maxPos": [ + 429, + 86, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a13e4118-4494-4e43-8730-6ebcde686ff7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a13e4118-4494-4e43-8730-6ebcde686ff7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Buy2.png b/assets/resources/i18nSprite2/ja/Buy2.png new file mode 100755 index 0000000..c8809e1 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Buy2.png differ diff --git a/assets/resources/i18nSprite2/ja/Buy2.png.meta b/assets/resources/i18nSprite2/ja/Buy2.png.meta new file mode 100644 index 0000000..a9b16d5 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d017b1d9-a860-441c-b145-6c0231cd464c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d017b1d9-a860-441c-b145-6c0231cd464c@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d017b1d9-a860-441c-b145-6c0231cd464c", + "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": "d017b1d9-a860-441c-b145-6c0231cd464c@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 91, + "rawWidth": 182, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -91, + -45.5, + 0, + 91, + -45.5, + 0, + -91, + 45.5, + 0, + 91, + 45.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 91, + 182, + 91, + 0, + 0, + 182, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -91, + -45.5, + 0 + ], + "maxPos": [ + 91, + 45.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d017b1d9-a860-441c-b145-6c0231cd464c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d017b1d9-a860-441c-b145-6c0231cd464c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Buy4.png b/assets/resources/i18nSprite2/ja/Buy4.png new file mode 100755 index 0000000..d814926 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Buy4.png differ diff --git a/assets/resources/i18nSprite2/ja/Buy4.png.meta b/assets/resources/i18nSprite2/ja/Buy4.png.meta new file mode 100644 index 0000000..7d41eb7 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "57e976a6-51c0-4e4b-84b7-ab927803a61d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "57e976a6-51c0-4e4b-84b7-ab927803a61d@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "57e976a6-51c0-4e4b-84b7-ab927803a61d", + "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": "57e976a6-51c0-4e4b-84b7-ab927803a61d@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 140, + "height": 76, + "rawWidth": 140, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -70, + -38, + 0, + 70, + -38, + 0, + -70, + 38, + 0, + 70, + 38, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 76, + 140, + 76, + 0, + 0, + 140, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -70, + -38, + 0 + ], + "maxPos": [ + 70, + 38, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "57e976a6-51c0-4e4b-84b7-ab927803a61d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "57e976a6-51c0-4e4b-84b7-ab927803a61d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Buy5.png b/assets/resources/i18nSprite2/ja/Buy5.png new file mode 100755 index 0000000..f218ccb Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Buy5.png differ diff --git a/assets/resources/i18nSprite2/ja/Buy5.png.meta b/assets/resources/i18nSprite2/ja/Buy5.png.meta new file mode 100644 index 0000000..38259fc --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "054506af-cb53-4d27-97f1-7dc8764087c6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "054506af-cb53-4d27-97f1-7dc8764087c6@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "054506af-cb53-4d27-97f1-7dc8764087c6", + "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": "054506af-cb53-4d27-97f1-7dc8764087c6@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 144, + "height": 63, + "rawWidth": 148, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -72, + -31.5, + 0, + 72, + -31.5, + 0, + -72, + 31.5, + 0, + 72, + 31.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 65, + 146, + 65, + 2, + 2, + 146, + 2 + ], + "nuv": [ + 0.013513513513513514, + 0.029850746268656716, + 0.9864864864864865, + 0.029850746268656716, + 0.013513513513513514, + 0.9701492537313433, + 0.9864864864864865, + 0.9701492537313433 + ], + "minPos": [ + -72, + -31.5, + 0 + ], + "maxPos": [ + 72, + 31.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "054506af-cb53-4d27-97f1-7dc8764087c6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "054506af-cb53-4d27-97f1-7dc8764087c6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Buy8.png b/assets/resources/i18nSprite2/ja/Buy8.png new file mode 100755 index 0000000..8c6ee18 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Buy8.png differ diff --git a/assets/resources/i18nSprite2/ja/Buy8.png.meta b/assets/resources/i18nSprite2/ja/Buy8.png.meta new file mode 100644 index 0000000..1bf1eb4 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "32bd2329-aa0c-4f92-abce-08f57606c41e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "32bd2329-aa0c-4f92-abce-08f57606c41e@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "32bd2329-aa0c-4f92-abce-08f57606c41e", + "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": "32bd2329-aa0c-4f92-abce-08f57606c41e@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 295, + "height": 72, + "rawWidth": 295, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -147.5, + -36, + 0, + 147.5, + -36, + 0, + -147.5, + 36, + 0, + 147.5, + 36, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 72, + 295, + 72, + 0, + 0, + 295, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -147.5, + -36, + 0 + ], + "maxPos": [ + 147.5, + 36, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "32bd2329-aa0c-4f92-abce-08f57606c41e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "32bd2329-aa0c-4f92-abce-08f57606c41e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FREELoading.png b/assets/resources/i18nSprite2/ja/FREELoading.png new file mode 100755 index 0000000..e91464f Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/ja/FREELoading.png.meta b/assets/resources/i18nSprite2/ja/FREELoading.png.meta new file mode 100644 index 0000000..bc26ba1 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "905db5c7-3dd8-487a-8a06-e49ab5194e4e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "905db5c7-3dd8-487a-8a06-e49ab5194e4e@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "905db5c7-3dd8-487a-8a06-e49ab5194e4e", + "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": "905db5c7-3dd8-487a-8a06-e49ab5194e4e@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 939, + "height": 254, + "rawWidth": 939, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -469.5, + -127, + 0, + 469.5, + -127, + 0, + -469.5, + 127, + 0, + 469.5, + 127, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 254, + 939, + 254, + 0, + 0, + 939, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -469.5, + -127, + 0 + ], + "maxPos": [ + 469.5, + 127, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "905db5c7-3dd8-487a-8a06-e49ab5194e4e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "905db5c7-3dd8-487a-8a06-e49ab5194e4e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FREELoading1.png b/assets/resources/i18nSprite2/ja/FREELoading1.png new file mode 100755 index 0000000..4fa1376 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/ja/FREELoading1.png.meta b/assets/resources/i18nSprite2/ja/FREELoading1.png.meta new file mode 100644 index 0000000..cd275f6 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c4a42a3f-7af7-442c-a726-8d6bc46cc401", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4a42a3f-7af7-442c-a726-8d6bc46cc401@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4a42a3f-7af7-442c-a726-8d6bc46cc401", + "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": "c4a42a3f-7af7-442c-a726-8d6bc46cc401@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 934, + "height": 124, + "rawWidth": 938, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -467, + -62, + 0, + 467, + -62, + 0, + -467, + 62, + 0, + 467, + 62, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 126, + 936, + 126, + 2, + 2, + 936, + 2 + ], + "nuv": [ + 0.0021321961620469083, + 0.015625, + 0.997867803837953, + 0.015625, + 0.0021321961620469083, + 0.984375, + 0.997867803837953, + 0.984375 + ], + "minPos": [ + -467, + -62, + 0 + ], + "maxPos": [ + 467, + 62, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4a42a3f-7af7-442c-a726-8d6bc46cc401@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4a42a3f-7af7-442c-a726-8d6bc46cc401@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FREELoading2.png b/assets/resources/i18nSprite2/ja/FREELoading2.png new file mode 100755 index 0000000..ea5492b Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/ja/FREELoading2.png.meta b/assets/resources/i18nSprite2/ja/FREELoading2.png.meta new file mode 100644 index 0000000..d7b8349 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4a8c154b-ec3c-4951-b139-90c72929e6eb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4a8c154b-ec3c-4951-b139-90c72929e6eb@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4a8c154b-ec3c-4951-b139-90c72929e6eb", + "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": "4a8c154b-ec3c-4951-b139-90c72929e6eb@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 165, + "height": 89, + "rawWidth": 165, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -82.5, + -44.5, + 0, + 82.5, + -44.5, + 0, + -82.5, + 44.5, + 0, + 82.5, + 44.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 89, + 165, + 89, + 0, + 0, + 165, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -82.5, + -44.5, + 0 + ], + "maxPos": [ + 82.5, + 44.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4a8c154b-ec3c-4951-b139-90c72929e6eb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4a8c154b-ec3c-4951-b139-90c72929e6eb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FREESPIN2.png b/assets/resources/i18nSprite2/ja/FREESPIN2.png new file mode 100755 index 0000000..7111598 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/ja/FREESPIN2.png.meta b/assets/resources/i18nSprite2/ja/FREESPIN2.png.meta new file mode 100644 index 0000000..937cb66 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d8481f59-c9b5-4035-95a3-996abc5434b3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8481f59-c9b5-4035-95a3-996abc5434b3@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8481f59-c9b5-4035-95a3-996abc5434b3", + "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": "d8481f59-c9b5-4035-95a3-996abc5434b3@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1031, + "height": 75, + "rawWidth": 1031, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -515.5, + -37.5, + 0, + 515.5, + -37.5, + 0, + -515.5, + 37.5, + 0, + 515.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 1031, + 75, + 0, + 0, + 1031, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -515.5, + -37.5, + 0 + ], + "maxPos": [ + 515.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8481f59-c9b5-4035-95a3-996abc5434b3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8481f59-c9b5-4035-95a3-996abc5434b3@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FREESPIN4.png b/assets/resources/i18nSprite2/ja/FREESPIN4.png new file mode 100755 index 0000000..729e6c0 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/ja/FREESPIN4.png.meta b/assets/resources/i18nSprite2/ja/FREESPIN4.png.meta new file mode 100644 index 0000000..6905f4f --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "38def876-5bd7-40ef-b6c4-93775575e0d4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "38def876-5bd7-40ef-b6c4-93775575e0d4@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "38def876-5bd7-40ef-b6c4-93775575e0d4", + "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": "38def876-5bd7-40ef-b6c4-93775575e0d4@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 240, + "height": 88, + "rawWidth": 240, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -120, + -44, + 0, + 120, + -44, + 0, + -120, + 44, + 0, + 120, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 240, + 88, + 0, + 0, + 240, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -120, + -44, + 0 + ], + "maxPos": [ + 120, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "38def876-5bd7-40ef-b6c4-93775575e0d4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "38def876-5bd7-40ef-b6c4-93775575e0d4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FREESPIN5.png b/assets/resources/i18nSprite2/ja/FREESPIN5.png new file mode 100755 index 0000000..10c355e Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/ja/FREESPIN5.png.meta b/assets/resources/i18nSprite2/ja/FREESPIN5.png.meta new file mode 100644 index 0000000..932c781 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f3056b58-b4b0-477f-90b9-059ae21ffca2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f3056b58-b4b0-477f-90b9-059ae21ffca2@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f3056b58-b4b0-477f-90b9-059ae21ffca2", + "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": "f3056b58-b4b0-477f-90b9-059ae21ffca2@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 883, + "height": 280, + "rawWidth": 883, + "rawHeight": 280, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -441.5, + -140, + 0, + 441.5, + -140, + 0, + -441.5, + 140, + 0, + 441.5, + 140, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 280, + 883, + 280, + 0, + 0, + 883, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -441.5, + -140, + 0 + ], + "maxPos": [ + 441.5, + 140, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f3056b58-b4b0-477f-90b9-059ae21ffca2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f3056b58-b4b0-477f-90b9-059ae21ffca2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/FSFS.png b/assets/resources/i18nSprite2/ja/FSFS.png new file mode 100755 index 0000000..153a47d Binary files /dev/null and b/assets/resources/i18nSprite2/ja/FSFS.png differ diff --git a/assets/resources/i18nSprite2/ja/FSFS.png.meta b/assets/resources/i18nSprite2/ja/FSFS.png.meta new file mode 100644 index 0000000..dc98c59 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c097bd4-97d0-4ffd-b101-a31c22ac57b0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c097bd4-97d0-4ffd-b101-a31c22ac57b0@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c097bd4-97d0-4ffd-b101-a31c22ac57b0", + "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": "7c097bd4-97d0-4ffd-b101-a31c22ac57b0@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 563, + "height": 152, + "rawWidth": 563, + "rawHeight": 152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -281.5, + -76, + 0, + 281.5, + -76, + 0, + -281.5, + 76, + 0, + 281.5, + 76, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 152, + 563, + 152, + 0, + 0, + 563, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -281.5, + -76, + 0 + ], + "maxPos": [ + 281.5, + 76, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c097bd4-97d0-4ffd-b101-a31c22ac57b0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c097bd4-97d0-4ffd-b101-a31c22ac57b0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Free.png b/assets/resources/i18nSprite2/ja/Free.png new file mode 100755 index 0000000..771418c Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Free.png differ diff --git a/assets/resources/i18nSprite2/ja/Free.png.meta b/assets/resources/i18nSprite2/ja/Free.png.meta new file mode 100644 index 0000000..7e23a50 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b83b249e-90eb-4854-a0da-41e5e2b1e30c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b83b249e-90eb-4854-a0da-41e5e2b1e30c@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b83b249e-90eb-4854-a0da-41e5e2b1e30c", + "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": "b83b249e-90eb-4854-a0da-41e5e2b1e30c@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 492, + "height": 172, + "rawWidth": 492, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -246, + -86, + 0, + 246, + -86, + 0, + -246, + 86, + 0, + 246, + 86, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 172, + 492, + 172, + 0, + 0, + 492, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -246, + -86, + 0 + ], + "maxPos": [ + 246, + 86, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b83b249e-90eb-4854-a0da-41e5e2b1e30c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b83b249e-90eb-4854-a0da-41e5e2b1e30c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Free1.png b/assets/resources/i18nSprite2/ja/Free1.png new file mode 100755 index 0000000..2956f82 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Free1.png differ diff --git a/assets/resources/i18nSprite2/ja/Free1.png.meta b/assets/resources/i18nSprite2/ja/Free1.png.meta new file mode 100644 index 0000000..3baf55b --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9f0019e8-4efe-4b39-9bbc-55cbd4b10be7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9f0019e8-4efe-4b39-9bbc-55cbd4b10be7@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9f0019e8-4efe-4b39-9bbc-55cbd4b10be7", + "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": "9f0019e8-4efe-4b39-9bbc-55cbd4b10be7@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 404, + "height": 172, + "rawWidth": 404, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -202, + -86, + 0, + 202, + -86, + 0, + -202, + 86, + 0, + 202, + 86, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 172, + 404, + 172, + 0, + 0, + 404, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -202, + -86, + 0 + ], + "maxPos": [ + 202, + 86, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9f0019e8-4efe-4b39-9bbc-55cbd4b10be7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9f0019e8-4efe-4b39-9bbc-55cbd4b10be7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal1.png b/assets/resources/i18nSprite2/ja/Normal1.png new file mode 100755 index 0000000..054c94f Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal1.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal1.png.meta b/assets/resources/i18nSprite2/ja/Normal1.png.meta new file mode 100644 index 0000000..df00ce6 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2c45aeb1-302a-417e-af0f-84ea39c5ce76", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2c45aeb1-302a-417e-af0f-84ea39c5ce76@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2c45aeb1-302a-417e-af0f-84ea39c5ce76", + "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": "2c45aeb1-302a-417e-af0f-84ea39c5ce76@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 800, + "height": 50, + "rawWidth": 804, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -400, + -25, + 0, + 400, + -25, + 0, + -400, + 25, + 0, + 400, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 52, + 802, + 52, + 2, + 2, + 802, + 2 + ], + "nuv": [ + 0.0024875621890547263, + 0.037037037037037035, + 0.9975124378109452, + 0.037037037037037035, + 0.0024875621890547263, + 0.9629629629629629, + 0.9975124378109452, + 0.9629629629629629 + ], + "minPos": [ + -400, + -25, + 0 + ], + "maxPos": [ + 400, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2c45aeb1-302a-417e-af0f-84ea39c5ce76@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2c45aeb1-302a-417e-af0f-84ea39c5ce76@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal10.png b/assets/resources/i18nSprite2/ja/Normal10.png new file mode 100755 index 0000000..f68f4d8 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal10.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal10.png.meta b/assets/resources/i18nSprite2/ja/Normal10.png.meta new file mode 100644 index 0000000..6c269f4 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6fe5d4c9-5e4a-4185-9352-1093afa7c108", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6fe5d4c9-5e4a-4185-9352-1093afa7c108@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6fe5d4c9-5e4a-4185-9352-1093afa7c108", + "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": "6fe5d4c9-5e4a-4185-9352-1093afa7c108@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 636, + "height": 51, + "rawWidth": 640, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -318, + -25.5, + 0, + 318, + -25.5, + 0, + -318, + 25.5, + 0, + 318, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 638, + 53, + 2, + 2, + 638, + 2 + ], + "nuv": [ + 0.003125, + 0.03636363636363636, + 0.996875, + 0.03636363636363636, + 0.003125, + 0.9636363636363636, + 0.996875, + 0.9636363636363636 + ], + "minPos": [ + -318, + -25.5, + 0 + ], + "maxPos": [ + 318, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6fe5d4c9-5e4a-4185-9352-1093afa7c108@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6fe5d4c9-5e4a-4185-9352-1093afa7c108@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal11.png b/assets/resources/i18nSprite2/ja/Normal11.png new file mode 100755 index 0000000..7ab5543 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal11.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal11.png.meta b/assets/resources/i18nSprite2/ja/Normal11.png.meta new file mode 100644 index 0000000..d61f830 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5d3651c2-8670-4782-a534-db77b519b0e1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5d3651c2-8670-4782-a534-db77b519b0e1@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5d3651c2-8670-4782-a534-db77b519b0e1", + "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": "5d3651c2-8670-4782-a534-db77b519b0e1@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1006, + "height": 78, + "rawWidth": 1006, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -503, + -39, + 0, + 503, + -39, + 0, + -503, + 39, + 0, + 503, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 1006, + 78, + 0, + 0, + 1006, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -503, + -39, + 0 + ], + "maxPos": [ + 503, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5d3651c2-8670-4782-a534-db77b519b0e1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5d3651c2-8670-4782-a534-db77b519b0e1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal2.png b/assets/resources/i18nSprite2/ja/Normal2.png new file mode 100755 index 0000000..18016d9 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal2.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal2.png.meta b/assets/resources/i18nSprite2/ja/Normal2.png.meta new file mode 100644 index 0000000..5e645c1 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e2b78753-2e1c-4f35-ad2a-de25f5ac9d1f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e2b78753-2e1c-4f35-ad2a-de25f5ac9d1f@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e2b78753-2e1c-4f35-ad2a-de25f5ac9d1f", + "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": "e2b78753-2e1c-4f35-ad2a-de25f5ac9d1f@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 269, + "height": 51, + "rawWidth": 273, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -134.5, + -25.5, + 0, + 134.5, + -25.5, + 0, + -134.5, + 25.5, + 0, + 134.5, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 271, + 53, + 2, + 2, + 271, + 2 + ], + "nuv": [ + 0.007326007326007326, + 0.03636363636363636, + 0.9926739926739927, + 0.03636363636363636, + 0.007326007326007326, + 0.9636363636363636, + 0.9926739926739927, + 0.9636363636363636 + ], + "minPos": [ + -134.5, + -25.5, + 0 + ], + "maxPos": [ + 134.5, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e2b78753-2e1c-4f35-ad2a-de25f5ac9d1f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e2b78753-2e1c-4f35-ad2a-de25f5ac9d1f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal3.png b/assets/resources/i18nSprite2/ja/Normal3.png new file mode 100755 index 0000000..e919863 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal3.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal3.png.meta b/assets/resources/i18nSprite2/ja/Normal3.png.meta new file mode 100644 index 0000000..2d9e328 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e4d4a0ed-0ecf-4545-b7e0-2fe1b0b51b41", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e4d4a0ed-0ecf-4545-b7e0-2fe1b0b51b41@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e4d4a0ed-0ecf-4545-b7e0-2fe1b0b51b41", + "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": "e4d4a0ed-0ecf-4545-b7e0-2fe1b0b51b41@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 413, + "height": 49, + "rawWidth": 417, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -206.5, + -24.5, + 0, + 206.5, + -24.5, + 0, + -206.5, + 24.5, + 0, + 206.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 415, + 51, + 2, + 2, + 415, + 2 + ], + "nuv": [ + 0.004796163069544364, + 0.03773584905660377, + 0.9952038369304557, + 0.03773584905660377, + 0.004796163069544364, + 0.9622641509433962, + 0.9952038369304557, + 0.9622641509433962 + ], + "minPos": [ + -206.5, + -24.5, + 0 + ], + "maxPos": [ + 206.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e4d4a0ed-0ecf-4545-b7e0-2fe1b0b51b41@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e4d4a0ed-0ecf-4545-b7e0-2fe1b0b51b41@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal4.png b/assets/resources/i18nSprite2/ja/Normal4.png new file mode 100755 index 0000000..6b29685 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal4.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal4.png.meta b/assets/resources/i18nSprite2/ja/Normal4.png.meta new file mode 100644 index 0000000..73f3a7c --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "08b6d69b-6ee3-4f74-97c6-2bcc0878d8b6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "08b6d69b-6ee3-4f74-97c6-2bcc0878d8b6@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "08b6d69b-6ee3-4f74-97c6-2bcc0878d8b6", + "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": "08b6d69b-6ee3-4f74-97c6-2bcc0878d8b6@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 422, + "height": 51, + "rawWidth": 426, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -211, + -25.5, + 0, + 211, + -25.5, + 0, + -211, + 25.5, + 0, + 211, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 424, + 53, + 2, + 2, + 424, + 2 + ], + "nuv": [ + 0.004694835680751174, + 0.03636363636363636, + 0.9953051643192489, + 0.03636363636363636, + 0.004694835680751174, + 0.9636363636363636, + 0.9953051643192489, + 0.9636363636363636 + ], + "minPos": [ + -211, + -25.5, + 0 + ], + "maxPos": [ + 211, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "08b6d69b-6ee3-4f74-97c6-2bcc0878d8b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "08b6d69b-6ee3-4f74-97c6-2bcc0878d8b6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal5.png b/assets/resources/i18nSprite2/ja/Normal5.png new file mode 100755 index 0000000..d062282 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal5.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal5.png.meta b/assets/resources/i18nSprite2/ja/Normal5.png.meta new file mode 100644 index 0000000..463eaf1 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "519beca4-0c43-469f-8d90-7ec748e5072c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "519beca4-0c43-469f-8d90-7ec748e5072c@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "519beca4-0c43-469f-8d90-7ec748e5072c", + "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": "519beca4-0c43-469f-8d90-7ec748e5072c@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 88, + "height": 31, + "rawWidth": 92, + "rawHeight": 35, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -44, + -15.5, + 0, + 44, + -15.5, + 0, + -44, + 15.5, + 0, + 44, + 15.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 33, + 90, + 33, + 2, + 2, + 90, + 2 + ], + "nuv": [ + 0.021739130434782608, + 0.05714285714285714, + 0.9782608695652174, + 0.05714285714285714, + 0.021739130434782608, + 0.9428571428571428, + 0.9782608695652174, + 0.9428571428571428 + ], + "minPos": [ + -44, + -15.5, + 0 + ], + "maxPos": [ + 44, + 15.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "519beca4-0c43-469f-8d90-7ec748e5072c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "519beca4-0c43-469f-8d90-7ec748e5072c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal6.png b/assets/resources/i18nSprite2/ja/Normal6.png new file mode 100755 index 0000000..056d45b Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal6.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal6.png.meta b/assets/resources/i18nSprite2/ja/Normal6.png.meta new file mode 100644 index 0000000..6852acf --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f1ae2af9-5868-4851-a59c-062d2865d123", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f1ae2af9-5868-4851-a59c-062d2865d123@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f1ae2af9-5868-4851-a59c-062d2865d123", + "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": "f1ae2af9-5868-4851-a59c-062d2865d123@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 112, + "height": 56, + "rawWidth": 116, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56, + -28, + 0, + 56, + -28, + 0, + -56, + 28, + 0, + 56, + 28, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 58, + 114, + 58, + 2, + 2, + 114, + 2 + ], + "nuv": [ + 0.017241379310344827, + 0.03333333333333333, + 0.9827586206896551, + 0.03333333333333333, + 0.017241379310344827, + 0.9666666666666667, + 0.9827586206896551, + 0.9666666666666667 + ], + "minPos": [ + -56, + -28, + 0 + ], + "maxPos": [ + 56, + 28, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f1ae2af9-5868-4851-a59c-062d2865d123@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f1ae2af9-5868-4851-a59c-062d2865d123@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal7.png b/assets/resources/i18nSprite2/ja/Normal7.png new file mode 100755 index 0000000..d171f04 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal7.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal7.png.meta b/assets/resources/i18nSprite2/ja/Normal7.png.meta new file mode 100644 index 0000000..3e72f03 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f21d01a-c09c-486f-a496-da0de0effb2a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f21d01a-c09c-486f-a496-da0de0effb2a@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f21d01a-c09c-486f-a496-da0de0effb2a", + "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": "4f21d01a-c09c-486f-a496-da0de0effb2a@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 226, + "height": 57, + "rawWidth": 230, + "rawHeight": 61, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -113, + -28.5, + 0, + 113, + -28.5, + 0, + -113, + 28.5, + 0, + 113, + 28.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 59, + 228, + 59, + 2, + 2, + 228, + 2 + ], + "nuv": [ + 0.008695652173913044, + 0.03278688524590164, + 0.991304347826087, + 0.03278688524590164, + 0.008695652173913044, + 0.9672131147540983, + 0.991304347826087, + 0.9672131147540983 + ], + "minPos": [ + -113, + -28.5, + 0 + ], + "maxPos": [ + 113, + 28.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f21d01a-c09c-486f-a496-da0de0effb2a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f21d01a-c09c-486f-a496-da0de0effb2a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal8.png b/assets/resources/i18nSprite2/ja/Normal8.png new file mode 100755 index 0000000..b893c91 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal8.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal8.png.meta b/assets/resources/i18nSprite2/ja/Normal8.png.meta new file mode 100644 index 0000000..12c4896 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9d0a1f7a-4e4f-4a4f-903c-f18418b73716", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9d0a1f7a-4e4f-4a4f-903c-f18418b73716@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9d0a1f7a-4e4f-4a4f-903c-f18418b73716", + "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": "9d0a1f7a-4e4f-4a4f-903c-f18418b73716@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 968, + "height": 49, + "rawWidth": 972, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -484, + -24.5, + 0, + 484, + -24.5, + 0, + -484, + 24.5, + 0, + 484, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 970, + 51, + 2, + 2, + 970, + 2 + ], + "nuv": [ + 0.00205761316872428, + 0.03773584905660377, + 0.9979423868312757, + 0.03773584905660377, + 0.00205761316872428, + 0.9622641509433962, + 0.9979423868312757, + 0.9622641509433962 + ], + "minPos": [ + -484, + -24.5, + 0 + ], + "maxPos": [ + 484, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9d0a1f7a-4e4f-4a4f-903c-f18418b73716@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9d0a1f7a-4e4f-4a4f-903c-f18418b73716@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Normal9.png b/assets/resources/i18nSprite2/ja/Normal9.png new file mode 100755 index 0000000..8ba647d Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Normal9.png differ diff --git a/assets/resources/i18nSprite2/ja/Normal9.png.meta b/assets/resources/i18nSprite2/ja/Normal9.png.meta new file mode 100644 index 0000000..366ee20 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4804e75f-90f0-4361-b2eb-f618ba19e029", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4804e75f-90f0-4361-b2eb-f618ba19e029@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4804e75f-90f0-4361-b2eb-f618ba19e029", + "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": "4804e75f-90f0-4361-b2eb-f618ba19e029@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 850, + "height": 75, + "rawWidth": 850, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -425, + -37.5, + 0, + 425, + -37.5, + 0, + -425, + 37.5, + 0, + 425, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 850, + 75, + 0, + 0, + 850, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -425, + -37.5, + 0 + ], + "maxPos": [ + 425, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4804e75f-90f0-4361-b2eb-f618ba19e029@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4804e75f-90f0-4361-b2eb-f618ba19e029@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Win1.png b/assets/resources/i18nSprite2/ja/Win1.png new file mode 100755 index 0000000..1977793 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Win1.png differ diff --git a/assets/resources/i18nSprite2/ja/Win1.png.meta b/assets/resources/i18nSprite2/ja/Win1.png.meta new file mode 100644 index 0000000..23e0abf --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5cfde1e6-3e8a-43fe-8afe-2aabecfdd372", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5cfde1e6-3e8a-43fe-8afe-2aabecfdd372@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5cfde1e6-3e8a-43fe-8afe-2aabecfdd372", + "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": "5cfde1e6-3e8a-43fe-8afe-2aabecfdd372@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 601, + "height": 258, + "rawWidth": 601, + "rawHeight": 258, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -300.5, + -129, + 0, + 300.5, + -129, + 0, + -300.5, + 129, + 0, + 300.5, + 129, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 258, + 601, + 258, + 0, + 0, + 601, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -300.5, + -129, + 0 + ], + "maxPos": [ + 300.5, + 129, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5cfde1e6-3e8a-43fe-8afe-2aabecfdd372@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5cfde1e6-3e8a-43fe-8afe-2aabecfdd372@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Win2.png b/assets/resources/i18nSprite2/ja/Win2.png new file mode 100755 index 0000000..ba3922d Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Win2.png differ diff --git a/assets/resources/i18nSprite2/ja/Win2.png.meta b/assets/resources/i18nSprite2/ja/Win2.png.meta new file mode 100644 index 0000000..751570e --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bdb33133-e44f-4fdc-be78-584eae721e31", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bdb33133-e44f-4fdc-be78-584eae721e31@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bdb33133-e44f-4fdc-be78-584eae721e31", + "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": "bdb33133-e44f-4fdc-be78-584eae721e31@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 815, + "height": 270, + "rawWidth": 815, + "rawHeight": 270, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -407.5, + -135, + 0, + 407.5, + -135, + 0, + -407.5, + 135, + 0, + 407.5, + 135, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 270, + 815, + 270, + 0, + 0, + 815, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -407.5, + -135, + 0 + ], + "maxPos": [ + 407.5, + 135, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bdb33133-e44f-4fdc-be78-584eae721e31@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bdb33133-e44f-4fdc-be78-584eae721e31@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/Win3.png b/assets/resources/i18nSprite2/ja/Win3.png new file mode 100755 index 0000000..4ab17c7 Binary files /dev/null and b/assets/resources/i18nSprite2/ja/Win3.png differ diff --git a/assets/resources/i18nSprite2/ja/Win3.png.meta b/assets/resources/i18nSprite2/ja/Win3.png.meta new file mode 100644 index 0000000..b1a2f36 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ecf0a787-0103-4669-9b4a-5ff8bdac2376", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ecf0a787-0103-4669-9b4a-5ff8bdac2376@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ecf0a787-0103-4669-9b4a-5ff8bdac2376", + "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": "ecf0a787-0103-4669-9b4a-5ff8bdac2376@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1018, + "height": 230, + "rawWidth": 1018, + "rawHeight": 230, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509, + -115, + 0, + 509, + -115, + 0, + -509, + 115, + 0, + 509, + 115, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 230, + 1018, + 230, + 0, + 0, + 1018, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509, + -115, + 0 + ], + "maxPos": [ + 509, + 115, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ecf0a787-0103-4669-9b4a-5ff8bdac2376@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ecf0a787-0103-4669-9b4a-5ff8bdac2376@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/logo1.png b/assets/resources/i18nSprite2/ja/logo1.png new file mode 100755 index 0000000..2146c6b Binary files /dev/null and b/assets/resources/i18nSprite2/ja/logo1.png differ diff --git a/assets/resources/i18nSprite2/ja/logo1.png.meta b/assets/resources/i18nSprite2/ja/logo1.png.meta new file mode 100644 index 0000000..08048ea --- /dev/null +++ b/assets/resources/i18nSprite2/ja/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ff512d0-4c5c-48be-88e5-9442c8dc5180", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ff512d0-4c5c-48be-88e5-9442c8dc5180@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ff512d0-4c5c-48be-88e5-9442c8dc5180", + "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": "9ff512d0-4c5c-48be-88e5-9442c8dc5180@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 895, + "height": 237, + "rawWidth": 895, + "rawHeight": 237, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -447.5, + -118.5, + 0, + 447.5, + -118.5, + 0, + -447.5, + 118.5, + 0, + 447.5, + 118.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 237, + 895, + 237, + 0, + 0, + 895, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -447.5, + -118.5, + 0 + ], + "maxPos": [ + 447.5, + 118.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ff512d0-4c5c-48be-88e5-9442c8dc5180@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ff512d0-4c5c-48be-88e5-9442c8dc5180@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ja/zxksctter.png b/assets/resources/i18nSprite2/ja/zxksctter.png new file mode 100755 index 0000000..648146e Binary files /dev/null and b/assets/resources/i18nSprite2/ja/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/ja/zxksctter.png.meta b/assets/resources/i18nSprite2/ja/zxksctter.png.meta new file mode 100644 index 0000000..80dc605 --- /dev/null +++ b/assets/resources/i18nSprite2/ja/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e9049db5-99b0-45bb-8372-e37d538b8781", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e9049db5-99b0-45bb-8372-e37d538b8781@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e9049db5-99b0-45bb-8372-e37d538b8781", + "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": "e9049db5-99b0-45bb-8372-e37d538b8781@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 266, + "height": 125, + "rawWidth": 270, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -133, + -62.5, + 0, + 133, + -62.5, + 0, + -133, + 62.5, + 0, + 133, + 62.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 127, + 268, + 127, + 2, + 2, + 268, + 2 + ], + "nuv": [ + 0.007407407407407408, + 0.015503875968992248, + 0.9925925925925926, + 0.015503875968992248, + 0.007407407407407408, + 0.9844961240310077, + 0.9925925925925926, + 0.9844961240310077 + ], + "minPos": [ + -133, + -62.5, + 0 + ], + "maxPos": [ + 133, + 62.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e9049db5-99b0-45bb-8372-e37d538b8781@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e9049db5-99b0-45bb-8372-e37d538b8781@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko.meta b/assets/resources/i18nSprite2/ko.meta new file mode 100644 index 0000000..f8a90cc --- /dev/null +++ b/assets/resources/i18nSprite2/ko.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "da4a73a7-c816-4c90-8877-652d9753d2eb", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/ko/Buy1.png b/assets/resources/i18nSprite2/ko/Buy1.png new file mode 100755 index 0000000..f1d1a1f Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Buy1.png differ diff --git a/assets/resources/i18nSprite2/ko/Buy1.png.meta b/assets/resources/i18nSprite2/ko/Buy1.png.meta new file mode 100644 index 0000000..268ff04 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2025ca69-9443-47b2-b7cf-413a525166a7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2025ca69-9443-47b2-b7cf-413a525166a7@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2025ca69-9443-47b2-b7cf-413a525166a7", + "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": "2025ca69-9443-47b2-b7cf-413a525166a7@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 871, + "height": 116, + "rawWidth": 871, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -435.5, + -58, + 0, + 435.5, + -58, + 0, + -435.5, + 58, + 0, + 435.5, + 58, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 116, + 871, + 116, + 0, + 0, + 871, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -435.5, + -58, + 0 + ], + "maxPos": [ + 435.5, + 58, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2025ca69-9443-47b2-b7cf-413a525166a7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2025ca69-9443-47b2-b7cf-413a525166a7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Buy2.png b/assets/resources/i18nSprite2/ko/Buy2.png new file mode 100755 index 0000000..458a9d5 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Buy2.png differ diff --git a/assets/resources/i18nSprite2/ko/Buy2.png.meta b/assets/resources/i18nSprite2/ko/Buy2.png.meta new file mode 100644 index 0000000..bf9cb8b --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5df75af1-9504-48e1-ae18-ffae985644f2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5df75af1-9504-48e1-ae18-ffae985644f2@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5df75af1-9504-48e1-ae18-ffae985644f2", + "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": "5df75af1-9504-48e1-ae18-ffae985644f2@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 192, + "height": 55, + "rawWidth": 192, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -96, + -27.5, + 0, + 96, + -27.5, + 0, + -96, + 27.5, + 0, + 96, + 27.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 55, + 192, + 55, + 0, + 0, + 192, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -96, + -27.5, + 0 + ], + "maxPos": [ + 96, + 27.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5df75af1-9504-48e1-ae18-ffae985644f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5df75af1-9504-48e1-ae18-ffae985644f2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Buy4.png b/assets/resources/i18nSprite2/ko/Buy4.png new file mode 100755 index 0000000..3651eff Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Buy4.png differ diff --git a/assets/resources/i18nSprite2/ko/Buy4.png.meta b/assets/resources/i18nSprite2/ko/Buy4.png.meta new file mode 100644 index 0000000..5e9168a --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f21762b4-1065-4832-b6c2-3d84b4ec22a8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f21762b4-1065-4832-b6c2-3d84b4ec22a8@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f21762b4-1065-4832-b6c2-3d84b4ec22a8", + "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": "f21762b4-1065-4832-b6c2-3d84b4ec22a8@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 175, + "height": 95, + "rawWidth": 175, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87.5, + -47.5, + 0, + 87.5, + -47.5, + 0, + -87.5, + 47.5, + 0, + 87.5, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 95, + 175, + 95, + 0, + 0, + 175, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87.5, + -47.5, + 0 + ], + "maxPos": [ + 87.5, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f21762b4-1065-4832-b6c2-3d84b4ec22a8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f21762b4-1065-4832-b6c2-3d84b4ec22a8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Buy5.png b/assets/resources/i18nSprite2/ko/Buy5.png new file mode 100755 index 0000000..a189572 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Buy5.png differ diff --git a/assets/resources/i18nSprite2/ko/Buy5.png.meta b/assets/resources/i18nSprite2/ko/Buy5.png.meta new file mode 100644 index 0000000..f164d4b --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "eb80a2e6-e12c-4736-9607-cdb44b8c322f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "eb80a2e6-e12c-4736-9607-cdb44b8c322f@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "eb80a2e6-e12c-4736-9607-cdb44b8c322f", + "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": "eb80a2e6-e12c-4736-9607-cdb44b8c322f@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 118, + "height": 67, + "rawWidth": 122, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -59, + -33.5, + 0, + 59, + -33.5, + 0, + -59, + 33.5, + 0, + 59, + 33.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 69, + 120, + 69, + 2, + 2, + 120, + 2 + ], + "nuv": [ + 0.01639344262295082, + 0.028169014084507043, + 0.9836065573770492, + 0.028169014084507043, + 0.01639344262295082, + 0.971830985915493, + 0.9836065573770492, + 0.971830985915493 + ], + "minPos": [ + -59, + -33.5, + 0 + ], + "maxPos": [ + 59, + 33.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "eb80a2e6-e12c-4736-9607-cdb44b8c322f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "eb80a2e6-e12c-4736-9607-cdb44b8c322f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Buy8.png b/assets/resources/i18nSprite2/ko/Buy8.png new file mode 100755 index 0000000..c02e1d1 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Buy8.png differ diff --git a/assets/resources/i18nSprite2/ko/Buy8.png.meta b/assets/resources/i18nSprite2/ko/Buy8.png.meta new file mode 100644 index 0000000..ce2d6b0 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "82839eef-60a8-4390-9421-81a7aeb25327", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "82839eef-60a8-4390-9421-81a7aeb25327@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "82839eef-60a8-4390-9421-81a7aeb25327", + "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": "82839eef-60a8-4390-9421-81a7aeb25327@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 168, + "height": 94, + "rawWidth": 168, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -84, + -47, + 0, + 84, + -47, + 0, + -84, + 47, + 0, + 84, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 94, + 168, + 94, + 0, + 0, + 168, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -84, + -47, + 0 + ], + "maxPos": [ + 84, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "82839eef-60a8-4390-9421-81a7aeb25327@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "82839eef-60a8-4390-9421-81a7aeb25327@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FREELoading.png b/assets/resources/i18nSprite2/ko/FREELoading.png new file mode 100755 index 0000000..9adf884 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/ko/FREELoading.png.meta b/assets/resources/i18nSprite2/ko/FREELoading.png.meta new file mode 100644 index 0000000..ba22c45 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d7e6d6f8-d41a-4995-aab0-b28427097775", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d7e6d6f8-d41a-4995-aab0-b28427097775@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d7e6d6f8-d41a-4995-aab0-b28427097775", + "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": "d7e6d6f8-d41a-4995-aab0-b28427097775@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 837, + "height": 291, + "rawWidth": 837, + "rawHeight": 291, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -418.5, + -145.5, + 0, + 418.5, + -145.5, + 0, + -418.5, + 145.5, + 0, + 418.5, + 145.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 291, + 837, + 291, + 0, + 0, + 837, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -418.5, + -145.5, + 0 + ], + "maxPos": [ + 418.5, + 145.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d7e6d6f8-d41a-4995-aab0-b28427097775@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d7e6d6f8-d41a-4995-aab0-b28427097775@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FREELoading1.png b/assets/resources/i18nSprite2/ko/FREELoading1.png new file mode 100755 index 0000000..d6925e0 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/ko/FREELoading1.png.meta b/assets/resources/i18nSprite2/ko/FREELoading1.png.meta new file mode 100644 index 0000000..3f87e9a --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13a80fa9-f7b8-46cd-9b94-54df577c4eea", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13a80fa9-f7b8-46cd-9b94-54df577c4eea@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13a80fa9-f7b8-46cd-9b94-54df577c4eea", + "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": "13a80fa9-f7b8-46cd-9b94-54df577c4eea@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 900, + "height": 130, + "rawWidth": 904, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -450, + -65, + 0, + 450, + -65, + 0, + -450, + 65, + 0, + 450, + 65, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 132, + 902, + 132, + 2, + 2, + 902, + 2 + ], + "nuv": [ + 0.0022123893805309734, + 0.014925373134328358, + 0.9977876106194691, + 0.014925373134328358, + 0.0022123893805309734, + 0.9850746268656716, + 0.9977876106194691, + 0.9850746268656716 + ], + "minPos": [ + -450, + -65, + 0 + ], + "maxPos": [ + 450, + 65, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13a80fa9-f7b8-46cd-9b94-54df577c4eea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13a80fa9-f7b8-46cd-9b94-54df577c4eea@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FREELoading2.png b/assets/resources/i18nSprite2/ko/FREELoading2.png new file mode 100755 index 0000000..bf5db0d Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/ko/FREELoading2.png.meta b/assets/resources/i18nSprite2/ko/FREELoading2.png.meta new file mode 100644 index 0000000..48eb839 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8a51395c-1aab-4872-aaa0-5b7aea4d3ff0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8a51395c-1aab-4872-aaa0-5b7aea4d3ff0@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8a51395c-1aab-4872-aaa0-5b7aea4d3ff0", + "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": "8a51395c-1aab-4872-aaa0-5b7aea4d3ff0@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 175, + "height": 95, + "rawWidth": 175, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -87.5, + -47.5, + 0, + 87.5, + -47.5, + 0, + -87.5, + 47.5, + 0, + 87.5, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 95, + 175, + 95, + 0, + 0, + 175, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -87.5, + -47.5, + 0 + ], + "maxPos": [ + 87.5, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8a51395c-1aab-4872-aaa0-5b7aea4d3ff0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8a51395c-1aab-4872-aaa0-5b7aea4d3ff0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FREESPIN2.png b/assets/resources/i18nSprite2/ko/FREESPIN2.png new file mode 100755 index 0000000..1a6de60 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/ko/FREESPIN2.png.meta b/assets/resources/i18nSprite2/ko/FREESPIN2.png.meta new file mode 100644 index 0000000..bdc466d --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a7d891f1-c85b-47af-8627-0a813f19c2a2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a7d891f1-c85b-47af-8627-0a813f19c2a2@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a7d891f1-c85b-47af-8627-0a813f19c2a2", + "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": "a7d891f1-c85b-47af-8627-0a813f19c2a2@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 879, + "height": 75, + "rawWidth": 879, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -439.5, + -37.5, + 0, + 439.5, + -37.5, + 0, + -439.5, + 37.5, + 0, + 439.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 879, + 75, + 0, + 0, + 879, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -439.5, + -37.5, + 0 + ], + "maxPos": [ + 439.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a7d891f1-c85b-47af-8627-0a813f19c2a2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a7d891f1-c85b-47af-8627-0a813f19c2a2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FREESPIN4.png b/assets/resources/i18nSprite2/ko/FREESPIN4.png new file mode 100755 index 0000000..416f8ff Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/ko/FREESPIN4.png.meta b/assets/resources/i18nSprite2/ko/FREESPIN4.png.meta new file mode 100644 index 0000000..18bb1fe --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13b272af-b3c8-44a2-b9ce-66488438ba96", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13b272af-b3c8-44a2-b9ce-66488438ba96@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13b272af-b3c8-44a2-b9ce-66488438ba96", + "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": "13b272af-b3c8-44a2-b9ce-66488438ba96@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 334, + "height": 94, + "rawWidth": 334, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -167, + -47, + 0, + 167, + -47, + 0, + -167, + 47, + 0, + 167, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 94, + 334, + 94, + 0, + 0, + 334, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -167, + -47, + 0 + ], + "maxPos": [ + 167, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13b272af-b3c8-44a2-b9ce-66488438ba96@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13b272af-b3c8-44a2-b9ce-66488438ba96@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FREESPIN5.png b/assets/resources/i18nSprite2/ko/FREESPIN5.png new file mode 100755 index 0000000..23a7687 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/ko/FREESPIN5.png.meta b/assets/resources/i18nSprite2/ko/FREESPIN5.png.meta new file mode 100644 index 0000000..da1a178 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e214a6e6-661f-44af-b95d-bef8a07c025d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e214a6e6-661f-44af-b95d-bef8a07c025d@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e214a6e6-661f-44af-b95d-bef8a07c025d", + "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": "e214a6e6-661f-44af-b95d-bef8a07c025d@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 655, + "height": 292, + "rawWidth": 655, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -327.5, + -146, + 0, + 327.5, + -146, + 0, + -327.5, + 146, + 0, + 327.5, + 146, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 292, + 655, + 292, + 0, + 0, + 655, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -327.5, + -146, + 0 + ], + "maxPos": [ + 327.5, + 146, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e214a6e6-661f-44af-b95d-bef8a07c025d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e214a6e6-661f-44af-b95d-bef8a07c025d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/FSFS.png b/assets/resources/i18nSprite2/ko/FSFS.png new file mode 100755 index 0000000..540da17 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/FSFS.png differ diff --git a/assets/resources/i18nSprite2/ko/FSFS.png.meta b/assets/resources/i18nSprite2/ko/FSFS.png.meta new file mode 100644 index 0000000..539efb6 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ac647fd2-4a30-4d3c-afc3-fb10de844e6f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ac647fd2-4a30-4d3c-afc3-fb10de844e6f@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ac647fd2-4a30-4d3c-afc3-fb10de844e6f", + "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": "ac647fd2-4a30-4d3c-afc3-fb10de844e6f@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 502, + "height": 175, + "rawWidth": 502, + "rawHeight": 175, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -251, + -87.5, + 0, + 251, + -87.5, + 0, + -251, + 87.5, + 0, + 251, + 87.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 175, + 502, + 175, + 0, + 0, + 502, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -251, + -87.5, + 0 + ], + "maxPos": [ + 251, + 87.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ac647fd2-4a30-4d3c-afc3-fb10de844e6f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ac647fd2-4a30-4d3c-afc3-fb10de844e6f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Free.png b/assets/resources/i18nSprite2/ko/Free.png new file mode 100755 index 0000000..7b3ef25 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Free.png differ diff --git a/assets/resources/i18nSprite2/ko/Free.png.meta b/assets/resources/i18nSprite2/ko/Free.png.meta new file mode 100644 index 0000000..1826bb9 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ef2770c1-ed4e-4335-aa6b-4b76b3c0f10c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ef2770c1-ed4e-4335-aa6b-4b76b3c0f10c@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ef2770c1-ed4e-4335-aa6b-4b76b3c0f10c", + "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": "ef2770c1-ed4e-4335-aa6b-4b76b3c0f10c@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 363, + "height": 199, + "rawWidth": 363, + "rawHeight": 199, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -181.5, + -99.5, + 0, + 181.5, + -99.5, + 0, + -181.5, + 99.5, + 0, + 181.5, + 99.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 199, + 363, + 199, + 0, + 0, + 363, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -181.5, + -99.5, + 0 + ], + "maxPos": [ + 181.5, + 99.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ef2770c1-ed4e-4335-aa6b-4b76b3c0f10c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ef2770c1-ed4e-4335-aa6b-4b76b3c0f10c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Free1.png b/assets/resources/i18nSprite2/ko/Free1.png new file mode 100755 index 0000000..dddb298 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Free1.png differ diff --git a/assets/resources/i18nSprite2/ko/Free1.png.meta b/assets/resources/i18nSprite2/ko/Free1.png.meta new file mode 100644 index 0000000..fd91533 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f32b016c-8936-41ef-9b61-a0f0d5893bc9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f32b016c-8936-41ef-9b61-a0f0d5893bc9@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f32b016c-8936-41ef-9b61-a0f0d5893bc9", + "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": "f32b016c-8936-41ef-9b61-a0f0d5893bc9@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 363, + "height": 199, + "rawWidth": 363, + "rawHeight": 199, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -181.5, + -99.5, + 0, + 181.5, + -99.5, + 0, + -181.5, + 99.5, + 0, + 181.5, + 99.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 199, + 363, + 199, + 0, + 0, + 363, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -181.5, + -99.5, + 0 + ], + "maxPos": [ + 181.5, + 99.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f32b016c-8936-41ef-9b61-a0f0d5893bc9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f32b016c-8936-41ef-9b61-a0f0d5893bc9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal1.png b/assets/resources/i18nSprite2/ko/Normal1.png new file mode 100755 index 0000000..09b5372 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal1.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal1.png.meta b/assets/resources/i18nSprite2/ko/Normal1.png.meta new file mode 100644 index 0000000..5c9a772 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "61b6d9f7-3c0e-41c3-aa48-89f1aec66661", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "61b6d9f7-3c0e-41c3-aa48-89f1aec66661@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "61b6d9f7-3c0e-41c3-aa48-89f1aec66661", + "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": "61b6d9f7-3c0e-41c3-aa48-89f1aec66661@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 730, + "height": 47, + "rawWidth": 730, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -365, + -23.5, + 0, + 365, + -23.5, + 0, + -365, + 23.5, + 0, + 365, + 23.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 47, + 730, + 47, + 0, + 0, + 730, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -365, + -23.5, + 0 + ], + "maxPos": [ + 365, + 23.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "61b6d9f7-3c0e-41c3-aa48-89f1aec66661@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "61b6d9f7-3c0e-41c3-aa48-89f1aec66661@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal10.png b/assets/resources/i18nSprite2/ko/Normal10.png new file mode 100755 index 0000000..7b3f40b Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal10.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal10.png.meta b/assets/resources/i18nSprite2/ko/Normal10.png.meta new file mode 100644 index 0000000..9f5aa77 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dc90af68-0199-439d-8445-82d353d18e25", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dc90af68-0199-439d-8445-82d353d18e25@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dc90af68-0199-439d-8445-82d353d18e25", + "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": "dc90af68-0199-439d-8445-82d353d18e25@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 800, + "height": 53, + "rawWidth": 804, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -400, + -26.5, + 0, + 400, + -26.5, + 0, + -400, + 26.5, + 0, + 400, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 802, + 55, + 2, + 2, + 802, + 2 + ], + "nuv": [ + 0.0024875621890547263, + 0.03508771929824561, + 0.9975124378109452, + 0.03508771929824561, + 0.0024875621890547263, + 0.9649122807017544, + 0.9975124378109452, + 0.9649122807017544 + ], + "minPos": [ + -400, + -26.5, + 0 + ], + "maxPos": [ + 400, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dc90af68-0199-439d-8445-82d353d18e25@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dc90af68-0199-439d-8445-82d353d18e25@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal11.png b/assets/resources/i18nSprite2/ko/Normal11.png new file mode 100755 index 0000000..1efdc4b Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal11.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal11.png.meta b/assets/resources/i18nSprite2/ko/Normal11.png.meta new file mode 100644 index 0000000..aa796da --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f1dfca5e-b951-4707-814d-2432693732c0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f1dfca5e-b951-4707-814d-2432693732c0@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f1dfca5e-b951-4707-814d-2432693732c0", + "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": "f1dfca5e-b951-4707-814d-2432693732c0@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 923, + "height": 78, + "rawWidth": 923, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -461.5, + -39, + 0, + 461.5, + -39, + 0, + -461.5, + 39, + 0, + 461.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 923, + 78, + 0, + 0, + 923, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -461.5, + -39, + 0 + ], + "maxPos": [ + 461.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f1dfca5e-b951-4707-814d-2432693732c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f1dfca5e-b951-4707-814d-2432693732c0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal2.png b/assets/resources/i18nSprite2/ko/Normal2.png new file mode 100755 index 0000000..6cf6ce1 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal2.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal2.png.meta b/assets/resources/i18nSprite2/ko/Normal2.png.meta new file mode 100644 index 0000000..b8c96ae --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "32bead37-a7f3-4a32-ab4b-05ec72d92754", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "32bead37-a7f3-4a32-ab4b-05ec72d92754@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "32bead37-a7f3-4a32-ab4b-05ec72d92754", + "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": "32bead37-a7f3-4a32-ab4b-05ec72d92754@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 268, + "height": 47, + "rawWidth": 268, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -134, + -23.5, + 0, + 134, + -23.5, + 0, + -134, + 23.5, + 0, + 134, + 23.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 47, + 268, + 47, + 0, + 0, + 268, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -134, + -23.5, + 0 + ], + "maxPos": [ + 134, + 23.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "32bead37-a7f3-4a32-ab4b-05ec72d92754@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "32bead37-a7f3-4a32-ab4b-05ec72d92754@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal3.png b/assets/resources/i18nSprite2/ko/Normal3.png new file mode 100755 index 0000000..e0315ba Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal3.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal3.png.meta b/assets/resources/i18nSprite2/ko/Normal3.png.meta new file mode 100644 index 0000000..8a1677c --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "91748dae-84ee-4867-aceb-8203d125bab3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "91748dae-84ee-4867-aceb-8203d125bab3@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "91748dae-84ee-4867-aceb-8203d125bab3", + "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": "91748dae-84ee-4867-aceb-8203d125bab3@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 397, + "height": 47, + "rawWidth": 401, + "rawHeight": 51, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -198.5, + -23.5, + 0, + 198.5, + -23.5, + 0, + -198.5, + 23.5, + 0, + 198.5, + 23.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 49, + 399, + 49, + 2, + 2, + 399, + 2 + ], + "nuv": [ + 0.004987531172069825, + 0.0392156862745098, + 0.9950124688279302, + 0.0392156862745098, + 0.004987531172069825, + 0.9607843137254902, + 0.9950124688279302, + 0.9607843137254902 + ], + "minPos": [ + -198.5, + -23.5, + 0 + ], + "maxPos": [ + 198.5, + 23.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "91748dae-84ee-4867-aceb-8203d125bab3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "91748dae-84ee-4867-aceb-8203d125bab3@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal4.png b/assets/resources/i18nSprite2/ko/Normal4.png new file mode 100755 index 0000000..ee42d4c Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal4.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal4.png.meta b/assets/resources/i18nSprite2/ko/Normal4.png.meta new file mode 100644 index 0000000..34dad90 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4ae03290-9767-43cc-91f5-bb4c03aeda2b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4ae03290-9767-43cc-91f5-bb4c03aeda2b@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4ae03290-9767-43cc-91f5-bb4c03aeda2b", + "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": "4ae03290-9767-43cc-91f5-bb4c03aeda2b@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 343, + "height": 47, + "rawWidth": 347, + "rawHeight": 51, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -171.5, + -23.5, + 0, + 171.5, + -23.5, + 0, + -171.5, + 23.5, + 0, + 171.5, + 23.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 49, + 345, + 49, + 2, + 2, + 345, + 2 + ], + "nuv": [ + 0.005763688760806916, + 0.0392156862745098, + 0.9942363112391931, + 0.0392156862745098, + 0.005763688760806916, + 0.9607843137254902, + 0.9942363112391931, + 0.9607843137254902 + ], + "minPos": [ + -171.5, + -23.5, + 0 + ], + "maxPos": [ + 171.5, + 23.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4ae03290-9767-43cc-91f5-bb4c03aeda2b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4ae03290-9767-43cc-91f5-bb4c03aeda2b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal5.png b/assets/resources/i18nSprite2/ko/Normal5.png new file mode 100755 index 0000000..4001f81 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal5.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal5.png.meta b/assets/resources/i18nSprite2/ko/Normal5.png.meta new file mode 100644 index 0000000..004f178 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f6bc5e2e-aa48-406c-8fe2-1a1f286ddf28", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f6bc5e2e-aa48-406c-8fe2-1a1f286ddf28@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f6bc5e2e-aa48-406c-8fe2-1a1f286ddf28", + "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": "f6bc5e2e-aa48-406c-8fe2-1a1f286ddf28@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 57, + "height": 32, + "rawWidth": 61, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28.5, + -16, + 0, + 28.5, + -16, + 0, + -28.5, + 16, + 0, + 28.5, + 16, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 34, + 59, + 34, + 2, + 2, + 59, + 2 + ], + "nuv": [ + 0.03278688524590164, + 0.05555555555555555, + 0.9672131147540983, + 0.05555555555555555, + 0.03278688524590164, + 0.9444444444444444, + 0.9672131147540983, + 0.9444444444444444 + ], + "minPos": [ + -28.5, + -16, + 0 + ], + "maxPos": [ + 28.5, + 16, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6bc5e2e-aa48-406c-8fe2-1a1f286ddf28@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f6bc5e2e-aa48-406c-8fe2-1a1f286ddf28@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal6.png b/assets/resources/i18nSprite2/ko/Normal6.png new file mode 100755 index 0000000..5f942e9 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal6.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal6.png.meta b/assets/resources/i18nSprite2/ko/Normal6.png.meta new file mode 100644 index 0000000..ca37ae2 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a74cd18-1994-47d2-b43b-2ed10d4e0995", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a74cd18-1994-47d2-b43b-2ed10d4e0995@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a74cd18-1994-47d2-b43b-2ed10d4e0995", + "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": "9a74cd18-1994-47d2-b43b-2ed10d4e0995@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 89, + "height": 52, + "rawWidth": 93, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -44.5, + -26, + 0, + 44.5, + -26, + 0, + -44.5, + 26, + 0, + 44.5, + 26, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 54, + 91, + 54, + 2, + 2, + 91, + 2 + ], + "nuv": [ + 0.021505376344086023, + 0.03571428571428571, + 0.978494623655914, + 0.03571428571428571, + 0.021505376344086023, + 0.9642857142857143, + 0.978494623655914, + 0.9642857142857143 + ], + "minPos": [ + -44.5, + -26, + 0 + ], + "maxPos": [ + 44.5, + 26, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a74cd18-1994-47d2-b43b-2ed10d4e0995@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a74cd18-1994-47d2-b43b-2ed10d4e0995@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal7.png b/assets/resources/i18nSprite2/ko/Normal7.png new file mode 100755 index 0000000..c7a9a50 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal7.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal7.png.meta b/assets/resources/i18nSprite2/ko/Normal7.png.meta new file mode 100644 index 0000000..4b8c814 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3f399dc-405e-4d8a-a3c8-3ad83d5af319", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3f399dc-405e-4d8a-a3c8-3ad83d5af319@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3f399dc-405e-4d8a-a3c8-3ad83d5af319", + "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": "d3f399dc-405e-4d8a-a3c8-3ad83d5af319@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 158, + "height": 55, + "rawWidth": 162, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -79, + -27.5, + 0, + 79, + -27.5, + 0, + -79, + 27.5, + 0, + 79, + 27.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 57, + 160, + 57, + 2, + 2, + 160, + 2 + ], + "nuv": [ + 0.012345679012345678, + 0.03389830508474576, + 0.9876543209876543, + 0.03389830508474576, + 0.012345679012345678, + 0.9661016949152542, + 0.9876543209876543, + 0.9661016949152542 + ], + "minPos": [ + -79, + -27.5, + 0 + ], + "maxPos": [ + 79, + 27.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3f399dc-405e-4d8a-a3c8-3ad83d5af319@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3f399dc-405e-4d8a-a3c8-3ad83d5af319@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal8.png b/assets/resources/i18nSprite2/ko/Normal8.png new file mode 100755 index 0000000..8477174 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal8.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal8.png.meta b/assets/resources/i18nSprite2/ko/Normal8.png.meta new file mode 100644 index 0000000..e17050d --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "91356cbf-dbc2-418f-8181-f1d2b43cfdca", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "91356cbf-dbc2-418f-8181-f1d2b43cfdca@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "91356cbf-dbc2-418f-8181-f1d2b43cfdca", + "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": "91356cbf-dbc2-418f-8181-f1d2b43cfdca@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1029, + "height": 52, + "rawWidth": 1033, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -514.5, + -26, + 0, + 514.5, + -26, + 0, + -514.5, + 26, + 0, + 514.5, + 26, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 54, + 1031, + 54, + 2, + 2, + 1031, + 2 + ], + "nuv": [ + 0.001936108422071636, + 0.03571428571428571, + 0.9980638915779284, + 0.03571428571428571, + 0.001936108422071636, + 0.9642857142857143, + 0.9980638915779284, + 0.9642857142857143 + ], + "minPos": [ + -514.5, + -26, + 0 + ], + "maxPos": [ + 514.5, + 26, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "91356cbf-dbc2-418f-8181-f1d2b43cfdca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "91356cbf-dbc2-418f-8181-f1d2b43cfdca@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Normal9.png b/assets/resources/i18nSprite2/ko/Normal9.png new file mode 100755 index 0000000..bf8892a Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Normal9.png differ diff --git a/assets/resources/i18nSprite2/ko/Normal9.png.meta b/assets/resources/i18nSprite2/ko/Normal9.png.meta new file mode 100644 index 0000000..02ea724 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d2e3b54a-b100-4c79-a70a-4fb4a5c6008d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d2e3b54a-b100-4c79-a70a-4fb4a5c6008d@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d2e3b54a-b100-4c79-a70a-4fb4a5c6008d", + "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": "d2e3b54a-b100-4c79-a70a-4fb4a5c6008d@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 540, + "height": 75, + "rawWidth": 540, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -270, + -37.5, + 0, + 270, + -37.5, + 0, + -270, + 37.5, + 0, + 270, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 540, + 75, + 0, + 0, + 540, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -270, + -37.5, + 0 + ], + "maxPos": [ + 270, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d2e3b54a-b100-4c79-a70a-4fb4a5c6008d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d2e3b54a-b100-4c79-a70a-4fb4a5c6008d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Win1.png b/assets/resources/i18nSprite2/ko/Win1.png new file mode 100755 index 0000000..2c25070 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Win1.png differ diff --git a/assets/resources/i18nSprite2/ko/Win1.png.meta b/assets/resources/i18nSprite2/ko/Win1.png.meta new file mode 100644 index 0000000..68076b7 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5042cf3a-9e2d-444a-acca-db15faf69c51", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5042cf3a-9e2d-444a-acca-db15faf69c51@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5042cf3a-9e2d-444a-acca-db15faf69c51", + "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": "5042cf3a-9e2d-444a-acca-db15faf69c51@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 928, + "height": 301, + "rawWidth": 928, + "rawHeight": 301, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -464, + -150.5, + 0, + 464, + -150.5, + 0, + -464, + 150.5, + 0, + 464, + 150.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 301, + 928, + 301, + 0, + 0, + 928, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -464, + -150.5, + 0 + ], + "maxPos": [ + 464, + 150.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5042cf3a-9e2d-444a-acca-db15faf69c51@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5042cf3a-9e2d-444a-acca-db15faf69c51@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Win2.png b/assets/resources/i18nSprite2/ko/Win2.png new file mode 100755 index 0000000..c20d9b6 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Win2.png differ diff --git a/assets/resources/i18nSprite2/ko/Win2.png.meta b/assets/resources/i18nSprite2/ko/Win2.png.meta new file mode 100644 index 0000000..615467f --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "62d4cdb2-00f7-460e-aa9a-7ea9bd122b17", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "62d4cdb2-00f7-460e-aa9a-7ea9bd122b17@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "62d4cdb2-00f7-460e-aa9a-7ea9bd122b17", + "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": "62d4cdb2-00f7-460e-aa9a-7ea9bd122b17@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 941, + "height": 300, + "rawWidth": 941, + "rawHeight": 300, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -470.5, + -150, + 0, + 470.5, + -150, + 0, + -470.5, + 150, + 0, + 470.5, + 150, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 300, + 941, + 300, + 0, + 0, + 941, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -470.5, + -150, + 0 + ], + "maxPos": [ + 470.5, + 150, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "62d4cdb2-00f7-460e-aa9a-7ea9bd122b17@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "62d4cdb2-00f7-460e-aa9a-7ea9bd122b17@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/Win3.png b/assets/resources/i18nSprite2/ko/Win3.png new file mode 100755 index 0000000..765a880 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/Win3.png differ diff --git a/assets/resources/i18nSprite2/ko/Win3.png.meta b/assets/resources/i18nSprite2/ko/Win3.png.meta new file mode 100644 index 0000000..a6f4ed0 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a44f4b7e-3cde-42a7-a6b5-31b428178026", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a44f4b7e-3cde-42a7-a6b5-31b428178026@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a44f4b7e-3cde-42a7-a6b5-31b428178026", + "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": "a44f4b7e-3cde-42a7-a6b5-31b428178026@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1008, + "height": 256, + "rawWidth": 1008, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -504, + -128, + 0, + 504, + -128, + 0, + -504, + 128, + 0, + 504, + 128, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 256, + 1008, + 256, + 0, + 0, + 1008, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -504, + -128, + 0 + ], + "maxPos": [ + 504, + 128, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a44f4b7e-3cde-42a7-a6b5-31b428178026@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a44f4b7e-3cde-42a7-a6b5-31b428178026@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/logo1.png b/assets/resources/i18nSprite2/ko/logo1.png new file mode 100755 index 0000000..2533364 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/logo1.png differ diff --git a/assets/resources/i18nSprite2/ko/logo1.png.meta b/assets/resources/i18nSprite2/ko/logo1.png.meta new file mode 100644 index 0000000..bc3a957 --- /dev/null +++ b/assets/resources/i18nSprite2/ko/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ba094c33-4642-4ffa-be00-934071f6e620", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ba094c33-4642-4ffa-be00-934071f6e620@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ba094c33-4642-4ffa-be00-934071f6e620", + "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": "ba094c33-4642-4ffa-be00-934071f6e620@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 971, + "height": 328, + "rawWidth": 971, + "rawHeight": 328, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -485.5, + -164, + 0, + 485.5, + -164, + 0, + -485.5, + 164, + 0, + 485.5, + 164, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 328, + 971, + 328, + 0, + 0, + 971, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -485.5, + -164, + 0 + ], + "maxPos": [ + 485.5, + 164, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ba094c33-4642-4ffa-be00-934071f6e620@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ba094c33-4642-4ffa-be00-934071f6e620@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ko/zxksctter.png b/assets/resources/i18nSprite2/ko/zxksctter.png new file mode 100755 index 0000000..8580076 Binary files /dev/null and b/assets/resources/i18nSprite2/ko/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/ko/zxksctter.png.meta b/assets/resources/i18nSprite2/ko/zxksctter.png.meta new file mode 100644 index 0000000..ecf1e4b --- /dev/null +++ b/assets/resources/i18nSprite2/ko/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df52311f-7a90-49e6-b1ae-4b130961f85d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df52311f-7a90-49e6-b1ae-4b130961f85d@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df52311f-7a90-49e6-b1ae-4b130961f85d", + "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": "df52311f-7a90-49e6-b1ae-4b130961f85d@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 255, + "height": 129, + "rawWidth": 259, + "rawHeight": 133, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -127.5, + -64.5, + 0, + 127.5, + -64.5, + 0, + -127.5, + 64.5, + 0, + 127.5, + 64.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 131, + 257, + 131, + 2, + 2, + 257, + 2 + ], + "nuv": [ + 0.007722007722007722, + 0.015037593984962405, + 0.9922779922779923, + 0.015037593984962405, + 0.007722007722007722, + 0.9849624060150376, + 0.9922779922779923, + 0.9849624060150376 + ], + "minPos": [ + -127.5, + -64.5, + 0 + ], + "maxPos": [ + 127.5, + 64.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df52311f-7a90-49e6-b1ae-4b130961f85d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df52311f-7a90-49e6-b1ae-4b130961f85d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my.meta b/assets/resources/i18nSprite2/my.meta new file mode 100644 index 0000000..0cad2a9 --- /dev/null +++ b/assets/resources/i18nSprite2/my.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e9b8ce2b-5a93-452c-8f33-df3920582b4a", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/my/Buy1.png b/assets/resources/i18nSprite2/my/Buy1.png new file mode 100755 index 0000000..c9271d7 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Buy1.png differ diff --git a/assets/resources/i18nSprite2/my/Buy1.png.meta b/assets/resources/i18nSprite2/my/Buy1.png.meta new file mode 100644 index 0000000..e0a43bc --- /dev/null +++ b/assets/resources/i18nSprite2/my/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "77168332-2f15-42b5-917c-e2a14eb39d59", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "77168332-2f15-42b5-917c-e2a14eb39d59@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "77168332-2f15-42b5-917c-e2a14eb39d59", + "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": "77168332-2f15-42b5-917c-e2a14eb39d59@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 882, + "height": 193, + "rawWidth": 882, + "rawHeight": 193, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -441, + -96.5, + 0, + 441, + -96.5, + 0, + -441, + 96.5, + 0, + 441, + 96.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 193, + 882, + 193, + 0, + 0, + 882, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -441, + -96.5, + 0 + ], + "maxPos": [ + 441, + 96.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "77168332-2f15-42b5-917c-e2a14eb39d59@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "77168332-2f15-42b5-917c-e2a14eb39d59@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Buy2.png b/assets/resources/i18nSprite2/my/Buy2.png new file mode 100755 index 0000000..86112d8 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Buy2.png differ diff --git a/assets/resources/i18nSprite2/my/Buy2.png.meta b/assets/resources/i18nSprite2/my/Buy2.png.meta new file mode 100644 index 0000000..eaceb11 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6aeb3cc3-c729-4bb5-ab7b-f0caed8f9540", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6aeb3cc3-c729-4bb5-ab7b-f0caed8f9540@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6aeb3cc3-c729-4bb5-ab7b-f0caed8f9540", + "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": "6aeb3cc3-c729-4bb5-ab7b-f0caed8f9540@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 171, + "height": 124, + "rawWidth": 171, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -85.5, + -62, + 0, + 85.5, + -62, + 0, + -85.5, + 62, + 0, + 85.5, + 62, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 124, + 171, + 124, + 0, + 0, + 171, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -85.5, + -62, + 0 + ], + "maxPos": [ + 85.5, + 62, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6aeb3cc3-c729-4bb5-ab7b-f0caed8f9540@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6aeb3cc3-c729-4bb5-ab7b-f0caed8f9540@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Buy4.png b/assets/resources/i18nSprite2/my/Buy4.png new file mode 100755 index 0000000..10e0db0 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Buy4.png differ diff --git a/assets/resources/i18nSprite2/my/Buy4.png.meta b/assets/resources/i18nSprite2/my/Buy4.png.meta new file mode 100644 index 0000000..0d22608 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09cd01eb-f675-429d-b7bc-d3fb9154d29b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09cd01eb-f675-429d-b7bc-d3fb9154d29b@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09cd01eb-f675-429d-b7bc-d3fb9154d29b", + "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": "09cd01eb-f675-429d-b7bc-d3fb9154d29b@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 234, + "height": 83, + "rawWidth": 234, + "rawHeight": 83, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -117, + -41.5, + 0, + 117, + -41.5, + 0, + -117, + 41.5, + 0, + 117, + 41.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 83, + 234, + 83, + 0, + 0, + 234, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -117, + -41.5, + 0 + ], + "maxPos": [ + 117, + 41.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09cd01eb-f675-429d-b7bc-d3fb9154d29b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09cd01eb-f675-429d-b7bc-d3fb9154d29b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Buy5.png b/assets/resources/i18nSprite2/my/Buy5.png new file mode 100755 index 0000000..98d2485 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Buy5.png differ diff --git a/assets/resources/i18nSprite2/my/Buy5.png.meta b/assets/resources/i18nSprite2/my/Buy5.png.meta new file mode 100644 index 0000000..6fdecad --- /dev/null +++ b/assets/resources/i18nSprite2/my/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "29ee6681-af35-4490-96fc-698150256235", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "29ee6681-af35-4490-96fc-698150256235@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "29ee6681-af35-4490-96fc-698150256235", + "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": "29ee6681-af35-4490-96fc-698150256235@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 243, + "height": 74, + "rawWidth": 247, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -121.5, + -37, + 0, + 121.5, + -37, + 0, + -121.5, + 37, + 0, + 121.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 76, + 245, + 76, + 2, + 2, + 245, + 2 + ], + "nuv": [ + 0.008097165991902834, + 0.02564102564102564, + 0.9919028340080972, + 0.02564102564102564, + 0.008097165991902834, + 0.9743589743589743, + 0.9919028340080972, + 0.9743589743589743 + ], + "minPos": [ + -121.5, + -37, + 0 + ], + "maxPos": [ + 121.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "29ee6681-af35-4490-96fc-698150256235@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "29ee6681-af35-4490-96fc-698150256235@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Buy8.png b/assets/resources/i18nSprite2/my/Buy8.png new file mode 100755 index 0000000..cb082cb Binary files /dev/null and b/assets/resources/i18nSprite2/my/Buy8.png differ diff --git a/assets/resources/i18nSprite2/my/Buy8.png.meta b/assets/resources/i18nSprite2/my/Buy8.png.meta new file mode 100644 index 0000000..e9e4045 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e28ac5bd-931f-41eb-8ca6-1d8f96741241", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e28ac5bd-931f-41eb-8ca6-1d8f96741241@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e28ac5bd-931f-41eb-8ca6-1d8f96741241", + "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": "e28ac5bd-931f-41eb-8ca6-1d8f96741241@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 272, + "height": 114, + "rawWidth": 272, + "rawHeight": 114, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -136, + -57, + 0, + 136, + -57, + 0, + -136, + 57, + 0, + 136, + 57, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 114, + 272, + 114, + 0, + 0, + 272, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -136, + -57, + 0 + ], + "maxPos": [ + 136, + 57, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e28ac5bd-931f-41eb-8ca6-1d8f96741241@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e28ac5bd-931f-41eb-8ca6-1d8f96741241@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FREELoading.png b/assets/resources/i18nSprite2/my/FREELoading.png new file mode 100755 index 0000000..9636773 Binary files /dev/null and b/assets/resources/i18nSprite2/my/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/my/FREELoading.png.meta b/assets/resources/i18nSprite2/my/FREELoading.png.meta new file mode 100644 index 0000000..0a2bff1 --- /dev/null +++ b/assets/resources/i18nSprite2/my/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "45f15d14-7b5e-4e82-8cf3-5c98ae03e4df", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "45f15d14-7b5e-4e82-8cf3-5c98ae03e4df@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "45f15d14-7b5e-4e82-8cf3-5c98ae03e4df", + "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": "45f15d14-7b5e-4e82-8cf3-5c98ae03e4df@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 987, + "height": 256, + "rawWidth": 987, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -493.5, + -128, + 0, + 493.5, + -128, + 0, + -493.5, + 128, + 0, + 493.5, + 128, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 256, + 987, + 256, + 0, + 0, + 987, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -493.5, + -128, + 0 + ], + "maxPos": [ + 493.5, + 128, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "45f15d14-7b5e-4e82-8cf3-5c98ae03e4df@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "45f15d14-7b5e-4e82-8cf3-5c98ae03e4df@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FREELoading1.png b/assets/resources/i18nSprite2/my/FREELoading1.png new file mode 100755 index 0000000..f57e0cf Binary files /dev/null and b/assets/resources/i18nSprite2/my/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/my/FREELoading1.png.meta b/assets/resources/i18nSprite2/my/FREELoading1.png.meta new file mode 100644 index 0000000..3461f1c --- /dev/null +++ b/assets/resources/i18nSprite2/my/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8f7c3c26-1e10-4a76-8fd2-8eca8c32ff7f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8f7c3c26-1e10-4a76-8fd2-8eca8c32ff7f@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8f7c3c26-1e10-4a76-8fd2-8eca8c32ff7f", + "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": "8f7c3c26-1e10-4a76-8fd2-8eca8c32ff7f@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 925, + "height": 138, + "rawWidth": 929, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -462.5, + -69, + 0, + 462.5, + -69, + 0, + -462.5, + 69, + 0, + 462.5, + 69, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 140, + 927, + 140, + 2, + 2, + 927, + 2 + ], + "nuv": [ + 0.002152852529601722, + 0.014084507042253521, + 0.9978471474703983, + 0.014084507042253521, + 0.002152852529601722, + 0.9859154929577465, + 0.9978471474703983, + 0.9859154929577465 + ], + "minPos": [ + -462.5, + -69, + 0 + ], + "maxPos": [ + 462.5, + 69, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8f7c3c26-1e10-4a76-8fd2-8eca8c32ff7f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8f7c3c26-1e10-4a76-8fd2-8eca8c32ff7f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FREELoading2.png b/assets/resources/i18nSprite2/my/FREELoading2.png new file mode 100755 index 0000000..a8b0261 Binary files /dev/null and b/assets/resources/i18nSprite2/my/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/my/FREELoading2.png.meta b/assets/resources/i18nSprite2/my/FREELoading2.png.meta new file mode 100644 index 0000000..55bfdad --- /dev/null +++ b/assets/resources/i18nSprite2/my/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6c71cadc-0094-4850-8b98-ead6f0177900", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6c71cadc-0094-4850-8b98-ead6f0177900@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6c71cadc-0094-4850-8b98-ead6f0177900", + "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": "6c71cadc-0094-4850-8b98-ead6f0177900@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 234, + "height": 83, + "rawWidth": 234, + "rawHeight": 83, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -117, + -41.5, + 0, + 117, + -41.5, + 0, + -117, + 41.5, + 0, + 117, + 41.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 83, + 234, + 83, + 0, + 0, + 234, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -117, + -41.5, + 0 + ], + "maxPos": [ + 117, + 41.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6c71cadc-0094-4850-8b98-ead6f0177900@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6c71cadc-0094-4850-8b98-ead6f0177900@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FREESPIN2.png b/assets/resources/i18nSprite2/my/FREESPIN2.png new file mode 100755 index 0000000..155a1d3 Binary files /dev/null and b/assets/resources/i18nSprite2/my/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/my/FREESPIN2.png.meta b/assets/resources/i18nSprite2/my/FREESPIN2.png.meta new file mode 100644 index 0000000..7b9907b --- /dev/null +++ b/assets/resources/i18nSprite2/my/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "714872ba-e017-40b7-bede-31475fbd4d7d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "714872ba-e017-40b7-bede-31475fbd4d7d@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "714872ba-e017-40b7-bede-31475fbd4d7d", + "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": "714872ba-e017-40b7-bede-31475fbd4d7d@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 827, + "height": 75, + "rawWidth": 827, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -413.5, + -37.5, + 0, + 413.5, + -37.5, + 0, + -413.5, + 37.5, + 0, + 413.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 827, + 75, + 0, + 0, + 827, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -413.5, + -37.5, + 0 + ], + "maxPos": [ + 413.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "714872ba-e017-40b7-bede-31475fbd4d7d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "714872ba-e017-40b7-bede-31475fbd4d7d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FREESPIN4.png b/assets/resources/i18nSprite2/my/FREESPIN4.png new file mode 100755 index 0000000..4e3f994 Binary files /dev/null and b/assets/resources/i18nSprite2/my/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/my/FREESPIN4.png.meta b/assets/resources/i18nSprite2/my/FREESPIN4.png.meta new file mode 100644 index 0000000..bb54d54 --- /dev/null +++ b/assets/resources/i18nSprite2/my/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d7c51512-b562-4260-9112-1769af0d7d9f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d7c51512-b562-4260-9112-1769af0d7d9f@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d7c51512-b562-4260-9112-1769af0d7d9f", + "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": "d7c51512-b562-4260-9112-1769af0d7d9f@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 296, + "height": 115, + "rawWidth": 296, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -148, + -57.5, + 0, + 148, + -57.5, + 0, + -148, + 57.5, + 0, + 148, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 296, + 115, + 0, + 0, + 296, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -148, + -57.5, + 0 + ], + "maxPos": [ + 148, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d7c51512-b562-4260-9112-1769af0d7d9f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d7c51512-b562-4260-9112-1769af0d7d9f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FREESPIN5.png b/assets/resources/i18nSprite2/my/FREESPIN5.png new file mode 100755 index 0000000..161cdd7 Binary files /dev/null and b/assets/resources/i18nSprite2/my/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/my/FREESPIN5.png.meta b/assets/resources/i18nSprite2/my/FREESPIN5.png.meta new file mode 100644 index 0000000..d6cf445 --- /dev/null +++ b/assets/resources/i18nSprite2/my/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aae13391-13cc-469b-a2d2-12d4d4677dda", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aae13391-13cc-469b-a2d2-12d4d4677dda@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aae13391-13cc-469b-a2d2-12d4d4677dda", + "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": "aae13391-13cc-469b-a2d2-12d4d4677dda@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 892, + "height": 285, + "rawWidth": 892, + "rawHeight": 285, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -446, + -142.5, + 0, + 446, + -142.5, + 0, + -446, + 142.5, + 0, + 446, + 142.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 285, + 892, + 285, + 0, + 0, + 892, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -446, + -142.5, + 0 + ], + "maxPos": [ + 446, + 142.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aae13391-13cc-469b-a2d2-12d4d4677dda@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aae13391-13cc-469b-a2d2-12d4d4677dda@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/FSFS.png b/assets/resources/i18nSprite2/my/FSFS.png new file mode 100755 index 0000000..37aab84 Binary files /dev/null and b/assets/resources/i18nSprite2/my/FSFS.png differ diff --git a/assets/resources/i18nSprite2/my/FSFS.png.meta b/assets/resources/i18nSprite2/my/FSFS.png.meta new file mode 100644 index 0000000..025ce67 --- /dev/null +++ b/assets/resources/i18nSprite2/my/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d10aa66b-e5b8-4a5b-b9bf-f8badd4fb7e0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d10aa66b-e5b8-4a5b-b9bf-f8badd4fb7e0@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d10aa66b-e5b8-4a5b-b9bf-f8badd4fb7e0", + "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": "d10aa66b-e5b8-4a5b-b9bf-f8badd4fb7e0@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 592, + "height": 154, + "rawWidth": 592, + "rawHeight": 154, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -296, + -77, + 0, + 296, + -77, + 0, + -296, + 77, + 0, + 296, + 77, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 154, + 592, + 154, + 0, + 0, + 592, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -296, + -77, + 0 + ], + "maxPos": [ + 296, + 77, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d10aa66b-e5b8-4a5b-b9bf-f8badd4fb7e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d10aa66b-e5b8-4a5b-b9bf-f8badd4fb7e0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Free.png b/assets/resources/i18nSprite2/my/Free.png new file mode 100755 index 0000000..08effcf Binary files /dev/null and b/assets/resources/i18nSprite2/my/Free.png differ diff --git a/assets/resources/i18nSprite2/my/Free.png.meta b/assets/resources/i18nSprite2/my/Free.png.meta new file mode 100644 index 0000000..5a4bec3 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b09067c9-8d5f-4646-a407-d253141e0da8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b09067c9-8d5f-4646-a407-d253141e0da8@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b09067c9-8d5f-4646-a407-d253141e0da8", + "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": "b09067c9-8d5f-4646-a407-d253141e0da8@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 557, + "height": 232, + "rawWidth": 557, + "rawHeight": 232, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -278.5, + -116, + 0, + 278.5, + -116, + 0, + -278.5, + 116, + 0, + 278.5, + 116, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 232, + 557, + 232, + 0, + 0, + 557, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -278.5, + -116, + 0 + ], + "maxPos": [ + 278.5, + 116, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b09067c9-8d5f-4646-a407-d253141e0da8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b09067c9-8d5f-4646-a407-d253141e0da8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Free1.png b/assets/resources/i18nSprite2/my/Free1.png new file mode 100755 index 0000000..ee8ade3 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Free1.png differ diff --git a/assets/resources/i18nSprite2/my/Free1.png.meta b/assets/resources/i18nSprite2/my/Free1.png.meta new file mode 100644 index 0000000..35ddc63 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8c481a14-4fe8-4c25-a2a5-7c151cecef20", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8c481a14-4fe8-4c25-a2a5-7c151cecef20@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8c481a14-4fe8-4c25-a2a5-7c151cecef20", + "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": "8c481a14-4fe8-4c25-a2a5-7c151cecef20@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 403, + "height": 231, + "rawWidth": 403, + "rawHeight": 231, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -201.5, + -115.5, + 0, + 201.5, + -115.5, + 0, + -201.5, + 115.5, + 0, + 201.5, + 115.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 231, + 403, + 231, + 0, + 0, + 403, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -201.5, + -115.5, + 0 + ], + "maxPos": [ + 201.5, + 115.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8c481a14-4fe8-4c25-a2a5-7c151cecef20@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8c481a14-4fe8-4c25-a2a5-7c151cecef20@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal1.png b/assets/resources/i18nSprite2/my/Normal1.png new file mode 100755 index 0000000..cb68fa3 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal1.png differ diff --git a/assets/resources/i18nSprite2/my/Normal1.png.meta b/assets/resources/i18nSprite2/my/Normal1.png.meta new file mode 100644 index 0000000..8f090d8 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9298f904-e920-46a6-b5d1-3fe71bda3673", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9298f904-e920-46a6-b5d1-3fe71bda3673@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9298f904-e920-46a6-b5d1-3fe71bda3673", + "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": "9298f904-e920-46a6-b5d1-3fe71bda3673@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 551, + "height": 61, + "rawWidth": 555, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -275.5, + -30.5, + 0, + 275.5, + -30.5, + 0, + -275.5, + 30.5, + 0, + 275.5, + 30.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 63, + 553, + 63, + 2, + 2, + 553, + 2 + ], + "nuv": [ + 0.0036036036036036037, + 0.03076923076923077, + 0.9963963963963964, + 0.03076923076923077, + 0.0036036036036036037, + 0.9692307692307692, + 0.9963963963963964, + 0.9692307692307692 + ], + "minPos": [ + -275.5, + -30.5, + 0 + ], + "maxPos": [ + 275.5, + 30.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9298f904-e920-46a6-b5d1-3fe71bda3673@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9298f904-e920-46a6-b5d1-3fe71bda3673@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal10.png b/assets/resources/i18nSprite2/my/Normal10.png new file mode 100755 index 0000000..5822aad Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal10.png differ diff --git a/assets/resources/i18nSprite2/my/Normal10.png.meta b/assets/resources/i18nSprite2/my/Normal10.png.meta new file mode 100644 index 0000000..0bd41b3 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "864d9f80-431a-4f0a-8670-072a1e8f2c9c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "864d9f80-431a-4f0a-8670-072a1e8f2c9c@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "864d9f80-431a-4f0a-8670-072a1e8f2c9c", + "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": "864d9f80-431a-4f0a-8670-072a1e8f2c9c@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 638, + "height": 66, + "rawWidth": 642, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -319, + -33, + 0, + 319, + -33, + 0, + -319, + 33, + 0, + 319, + 33, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 68, + 640, + 68, + 2, + 2, + 640, + 2 + ], + "nuv": [ + 0.003115264797507788, + 0.02857142857142857, + 0.9968847352024922, + 0.02857142857142857, + 0.003115264797507788, + 0.9714285714285714, + 0.9968847352024922, + 0.9714285714285714 + ], + "minPos": [ + -319, + -33, + 0 + ], + "maxPos": [ + 319, + 33, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "864d9f80-431a-4f0a-8670-072a1e8f2c9c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "864d9f80-431a-4f0a-8670-072a1e8f2c9c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal11.png b/assets/resources/i18nSprite2/my/Normal11.png new file mode 100755 index 0000000..df1066b Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal11.png differ diff --git a/assets/resources/i18nSprite2/my/Normal11.png.meta b/assets/resources/i18nSprite2/my/Normal11.png.meta new file mode 100644 index 0000000..ef8bce6 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "743253b7-618a-44f0-af50-41bc0ee5aad0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "743253b7-618a-44f0-af50-41bc0ee5aad0@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "743253b7-618a-44f0-af50-41bc0ee5aad0", + "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": "743253b7-618a-44f0-af50-41bc0ee5aad0@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 648, + "height": 78, + "rawWidth": 648, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -324, + -39, + 0, + 324, + -39, + 0, + -324, + 39, + 0, + 324, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 648, + 78, + 0, + 0, + 648, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -324, + -39, + 0 + ], + "maxPos": [ + 324, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "743253b7-618a-44f0-af50-41bc0ee5aad0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "743253b7-618a-44f0-af50-41bc0ee5aad0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal2.png b/assets/resources/i18nSprite2/my/Normal2.png new file mode 100755 index 0000000..5ca67c2 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal2.png differ diff --git a/assets/resources/i18nSprite2/my/Normal2.png.meta b/assets/resources/i18nSprite2/my/Normal2.png.meta new file mode 100644 index 0000000..ea4fa5c --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c211ac8-9cb9-4989-b67c-b52c0f94d044", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c211ac8-9cb9-4989-b67c-b52c0f94d044@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c211ac8-9cb9-4989-b67c-b52c0f94d044", + "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": "7c211ac8-9cb9-4989-b67c-b52c0f94d044@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 258, + "height": 43, + "rawWidth": 262, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -129, + -21.5, + 0, + 129, + -21.5, + 0, + -129, + 21.5, + 0, + 129, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 260, + 45, + 2, + 2, + 260, + 2 + ], + "nuv": [ + 0.007633587786259542, + 0.0425531914893617, + 0.9923664122137404, + 0.0425531914893617, + 0.007633587786259542, + 0.9574468085106383, + 0.9923664122137404, + 0.9574468085106383 + ], + "minPos": [ + -129, + -21.5, + 0 + ], + "maxPos": [ + 129, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c211ac8-9cb9-4989-b67c-b52c0f94d044@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c211ac8-9cb9-4989-b67c-b52c0f94d044@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal3.png b/assets/resources/i18nSprite2/my/Normal3.png new file mode 100755 index 0000000..d50affe Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal3.png differ diff --git a/assets/resources/i18nSprite2/my/Normal3.png.meta b/assets/resources/i18nSprite2/my/Normal3.png.meta new file mode 100644 index 0000000..a3bc0cc --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fc39be70-3ed1-4c87-8487-1f47109159c1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fc39be70-3ed1-4c87-8487-1f47109159c1@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fc39be70-3ed1-4c87-8487-1f47109159c1", + "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": "fc39be70-3ed1-4c87-8487-1f47109159c1@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 492, + "height": 64, + "rawWidth": 496, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -246, + -32, + 0, + 246, + -32, + 0, + -246, + 32, + 0, + 246, + 32, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 66, + 494, + 66, + 2, + 2, + 494, + 2 + ], + "nuv": [ + 0.004032258064516129, + 0.029411764705882353, + 0.9959677419354839, + 0.029411764705882353, + 0.004032258064516129, + 0.9705882352941176, + 0.9959677419354839, + 0.9705882352941176 + ], + "minPos": [ + -246, + -32, + 0 + ], + "maxPos": [ + 246, + 32, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fc39be70-3ed1-4c87-8487-1f47109159c1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fc39be70-3ed1-4c87-8487-1f47109159c1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal4.png b/assets/resources/i18nSprite2/my/Normal4.png new file mode 100755 index 0000000..2783db2 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal4.png differ diff --git a/assets/resources/i18nSprite2/my/Normal4.png.meta b/assets/resources/i18nSprite2/my/Normal4.png.meta new file mode 100644 index 0000000..154c3a6 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "293432e3-3cd1-4676-8f08-8587ca5fabaa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "293432e3-3cd1-4676-8f08-8587ca5fabaa@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "293432e3-3cd1-4676-8f08-8587ca5fabaa", + "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": "293432e3-3cd1-4676-8f08-8587ca5fabaa@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 475, + "height": 68, + "rawWidth": 479, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -237.5, + -34, + 0, + 237.5, + -34, + 0, + -237.5, + 34, + 0, + 237.5, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 70, + 477, + 70, + 2, + 2, + 477, + 2 + ], + "nuv": [ + 0.0041753653444676405, + 0.027777777777777776, + 0.9958246346555324, + 0.027777777777777776, + 0.0041753653444676405, + 0.9722222222222222, + 0.9958246346555324, + 0.9722222222222222 + ], + "minPos": [ + -237.5, + -34, + 0 + ], + "maxPos": [ + 237.5, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "293432e3-3cd1-4676-8f08-8587ca5fabaa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "293432e3-3cd1-4676-8f08-8587ca5fabaa@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal5.png b/assets/resources/i18nSprite2/my/Normal5.png new file mode 100755 index 0000000..32b6e94 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal5.png differ diff --git a/assets/resources/i18nSprite2/my/Normal5.png.meta b/assets/resources/i18nSprite2/my/Normal5.png.meta new file mode 100644 index 0000000..b05ac39 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7173c1eb-01b2-4b90-a134-8cc31ac8d798", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7173c1eb-01b2-4b90-a134-8cc31ac8d798@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7173c1eb-01b2-4b90-a134-8cc31ac8d798", + "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": "7173c1eb-01b2-4b90-a134-8cc31ac8d798@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 129, + "height": 31, + "rawWidth": 133, + "rawHeight": 35, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -64.5, + -15.5, + 0, + 64.5, + -15.5, + 0, + -64.5, + 15.5, + 0, + 64.5, + 15.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 33, + 131, + 33, + 2, + 2, + 131, + 2 + ], + "nuv": [ + 0.015037593984962405, + 0.05714285714285714, + 0.9849624060150376, + 0.05714285714285714, + 0.015037593984962405, + 0.9428571428571428, + 0.9849624060150376, + 0.9428571428571428 + ], + "minPos": [ + -64.5, + -15.5, + 0 + ], + "maxPos": [ + 64.5, + 15.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7173c1eb-01b2-4b90-a134-8cc31ac8d798@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7173c1eb-01b2-4b90-a134-8cc31ac8d798@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal6.png b/assets/resources/i18nSprite2/my/Normal6.png new file mode 100755 index 0000000..44420ae Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal6.png differ diff --git a/assets/resources/i18nSprite2/my/Normal6.png.meta b/assets/resources/i18nSprite2/my/Normal6.png.meta new file mode 100644 index 0000000..93667dc --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c5225903-1336-4cf4-a03f-3d79a27fac00", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c5225903-1336-4cf4-a03f-3d79a27fac00@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c5225903-1336-4cf4-a03f-3d79a27fac00", + "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": "c5225903-1336-4cf4-a03f-3d79a27fac00@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 127, + "height": 67, + "rawWidth": 131, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -63.5, + -33.5, + 0, + 63.5, + -33.5, + 0, + -63.5, + 33.5, + 0, + 63.5, + 33.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 69, + 129, + 69, + 2, + 2, + 129, + 2 + ], + "nuv": [ + 0.015267175572519083, + 0.028169014084507043, + 0.9847328244274809, + 0.028169014084507043, + 0.015267175572519083, + 0.971830985915493, + 0.9847328244274809, + 0.971830985915493 + ], + "minPos": [ + -63.5, + -33.5, + 0 + ], + "maxPos": [ + 63.5, + 33.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c5225903-1336-4cf4-a03f-3d79a27fac00@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c5225903-1336-4cf4-a03f-3d79a27fac00@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal7.png b/assets/resources/i18nSprite2/my/Normal7.png new file mode 100755 index 0000000..e31299f Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal7.png differ diff --git a/assets/resources/i18nSprite2/my/Normal7.png.meta b/assets/resources/i18nSprite2/my/Normal7.png.meta new file mode 100644 index 0000000..01ec9cb --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d01ae914-f7fc-4c5a-aee8-9f8d7572b49d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d01ae914-f7fc-4c5a-aee8-9f8d7572b49d@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d01ae914-f7fc-4c5a-aee8-9f8d7572b49d", + "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": "d01ae914-f7fc-4c5a-aee8-9f8d7572b49d@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 302, + "height": 70, + "rawWidth": 306, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -151, + -35, + 0, + 151, + -35, + 0, + -151, + 35, + 0, + 151, + 35, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 72, + 304, + 72, + 2, + 2, + 304, + 2 + ], + "nuv": [ + 0.006535947712418301, + 0.02702702702702703, + 0.9934640522875817, + 0.02702702702702703, + 0.006535947712418301, + 0.972972972972973, + 0.9934640522875817, + 0.972972972972973 + ], + "minPos": [ + -151, + -35, + 0 + ], + "maxPos": [ + 151, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d01ae914-f7fc-4c5a-aee8-9f8d7572b49d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d01ae914-f7fc-4c5a-aee8-9f8d7572b49d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal8.png b/assets/resources/i18nSprite2/my/Normal8.png new file mode 100755 index 0000000..5307d2e Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal8.png differ diff --git a/assets/resources/i18nSprite2/my/Normal8.png.meta b/assets/resources/i18nSprite2/my/Normal8.png.meta new file mode 100644 index 0000000..bd6bd93 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b56384db-41d9-4600-a947-e0d9e08e405c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b56384db-41d9-4600-a947-e0d9e08e405c@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b56384db-41d9-4600-a947-e0d9e08e405c", + "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": "b56384db-41d9-4600-a947-e0d9e08e405c@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1254, + "height": 68, + "rawWidth": 1258, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -627, + -34, + 0, + 627, + -34, + 0, + -627, + 34, + 0, + 627, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 70, + 1256, + 70, + 2, + 2, + 1256, + 2 + ], + "nuv": [ + 0.001589825119236884, + 0.027777777777777776, + 0.9984101748807631, + 0.027777777777777776, + 0.001589825119236884, + 0.9722222222222222, + 0.9984101748807631, + 0.9722222222222222 + ], + "minPos": [ + -627, + -34, + 0 + ], + "maxPos": [ + 627, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b56384db-41d9-4600-a947-e0d9e08e405c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b56384db-41d9-4600-a947-e0d9e08e405c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Normal9.png b/assets/resources/i18nSprite2/my/Normal9.png new file mode 100755 index 0000000..d44a7b5 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Normal9.png differ diff --git a/assets/resources/i18nSprite2/my/Normal9.png.meta b/assets/resources/i18nSprite2/my/Normal9.png.meta new file mode 100644 index 0000000..0f00e6f --- /dev/null +++ b/assets/resources/i18nSprite2/my/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "baa94012-20ea-41bb-bad1-0892255fc0e7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "baa94012-20ea-41bb-bad1-0892255fc0e7@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "baa94012-20ea-41bb-bad1-0892255fc0e7", + "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": "baa94012-20ea-41bb-bad1-0892255fc0e7@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 531, + "height": 75, + "rawWidth": 531, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -265.5, + -37.5, + 0, + 265.5, + -37.5, + 0, + -265.5, + 37.5, + 0, + 265.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 531, + 75, + 0, + 0, + 531, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -265.5, + -37.5, + 0 + ], + "maxPos": [ + 265.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "baa94012-20ea-41bb-bad1-0892255fc0e7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "baa94012-20ea-41bb-bad1-0892255fc0e7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Win1.png b/assets/resources/i18nSprite2/my/Win1.png new file mode 100755 index 0000000..24450cb Binary files /dev/null and b/assets/resources/i18nSprite2/my/Win1.png differ diff --git a/assets/resources/i18nSprite2/my/Win1.png.meta b/assets/resources/i18nSprite2/my/Win1.png.meta new file mode 100644 index 0000000..32201fe --- /dev/null +++ b/assets/resources/i18nSprite2/my/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "238bd1bd-8bfc-49ad-8f8d-03e68c71616b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "238bd1bd-8bfc-49ad-8f8d-03e68c71616b@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "238bd1bd-8bfc-49ad-8f8d-03e68c71616b", + "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": "238bd1bd-8bfc-49ad-8f8d-03e68c71616b@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 769, + "height": 475, + "rawWidth": 769, + "rawHeight": 475, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -384.5, + -237.5, + 0, + 384.5, + -237.5, + 0, + -384.5, + 237.5, + 0, + 384.5, + 237.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 475, + 769, + 475, + 0, + 0, + 769, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -384.5, + -237.5, + 0 + ], + "maxPos": [ + 384.5, + 237.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "238bd1bd-8bfc-49ad-8f8d-03e68c71616b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "238bd1bd-8bfc-49ad-8f8d-03e68c71616b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Win2.png b/assets/resources/i18nSprite2/my/Win2.png new file mode 100755 index 0000000..9b26832 Binary files /dev/null and b/assets/resources/i18nSprite2/my/Win2.png differ diff --git a/assets/resources/i18nSprite2/my/Win2.png.meta b/assets/resources/i18nSprite2/my/Win2.png.meta new file mode 100644 index 0000000..0bc4062 --- /dev/null +++ b/assets/resources/i18nSprite2/my/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b6928f44-0dce-45ce-9e5b-0faf98a48b71", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b6928f44-0dce-45ce-9e5b-0faf98a48b71@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b6928f44-0dce-45ce-9e5b-0faf98a48b71", + "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": "b6928f44-0dce-45ce-9e5b-0faf98a48b71@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 949, + "height": 309, + "rawWidth": 949, + "rawHeight": 309, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -474.5, + -154.5, + 0, + 474.5, + -154.5, + 0, + -474.5, + 154.5, + 0, + 474.5, + 154.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 309, + 949, + 309, + 0, + 0, + 949, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -474.5, + -154.5, + 0 + ], + "maxPos": [ + 474.5, + 154.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b6928f44-0dce-45ce-9e5b-0faf98a48b71@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b6928f44-0dce-45ce-9e5b-0faf98a48b71@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/Win3.png b/assets/resources/i18nSprite2/my/Win3.png new file mode 100755 index 0000000..f8ee13f Binary files /dev/null and b/assets/resources/i18nSprite2/my/Win3.png differ diff --git a/assets/resources/i18nSprite2/my/Win3.png.meta b/assets/resources/i18nSprite2/my/Win3.png.meta new file mode 100644 index 0000000..ea6951d --- /dev/null +++ b/assets/resources/i18nSprite2/my/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "863eb060-2a24-44a3-a89b-a051d619afd2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "863eb060-2a24-44a3-a89b-a051d619afd2@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "863eb060-2a24-44a3-a89b-a051d619afd2", + "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": "863eb060-2a24-44a3-a89b-a051d619afd2@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1012, + "height": 281, + "rawWidth": 1012, + "rawHeight": 281, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -506, + -140.5, + 0, + 506, + -140.5, + 0, + -506, + 140.5, + 0, + 506, + 140.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 281, + 1012, + 281, + 0, + 0, + 1012, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -506, + -140.5, + 0 + ], + "maxPos": [ + 506, + 140.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "863eb060-2a24-44a3-a89b-a051d619afd2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "863eb060-2a24-44a3-a89b-a051d619afd2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/logo1.png b/assets/resources/i18nSprite2/my/logo1.png new file mode 100755 index 0000000..ff35c7d Binary files /dev/null and b/assets/resources/i18nSprite2/my/logo1.png differ diff --git a/assets/resources/i18nSprite2/my/logo1.png.meta b/assets/resources/i18nSprite2/my/logo1.png.meta new file mode 100644 index 0000000..1afe360 --- /dev/null +++ b/assets/resources/i18nSprite2/my/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d891e9f0-f9cc-422b-94ba-1d433bfd8310", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d891e9f0-f9cc-422b-94ba-1d433bfd8310@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d891e9f0-f9cc-422b-94ba-1d433bfd8310", + "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": "d891e9f0-f9cc-422b-94ba-1d433bfd8310@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1045, + "height": 245, + "rawWidth": 1045, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -522.5, + -122.5, + 0, + 522.5, + -122.5, + 0, + -522.5, + 122.5, + 0, + 522.5, + 122.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 245, + 1045, + 245, + 0, + 0, + 1045, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -522.5, + -122.5, + 0 + ], + "maxPos": [ + 522.5, + 122.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d891e9f0-f9cc-422b-94ba-1d433bfd8310@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d891e9f0-f9cc-422b-94ba-1d433bfd8310@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/my/zxksctter.png b/assets/resources/i18nSprite2/my/zxksctter.png new file mode 100755 index 0000000..aaf17d1 Binary files /dev/null and b/assets/resources/i18nSprite2/my/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/my/zxksctter.png.meta b/assets/resources/i18nSprite2/my/zxksctter.png.meta new file mode 100644 index 0000000..93d1dd1 --- /dev/null +++ b/assets/resources/i18nSprite2/my/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ed9a74ae-3315-4815-bacd-95c213c32d7a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ed9a74ae-3315-4815-bacd-95c213c32d7a@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ed9a74ae-3315-4815-bacd-95c213c32d7a", + "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": "ed9a74ae-3315-4815-bacd-95c213c32d7a@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 264, + "height": 162, + "rawWidth": 268, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -132, + -81, + 0, + 132, + -81, + 0, + -132, + 81, + 0, + 132, + 81, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 164, + 266, + 164, + 2, + 2, + 266, + 2 + ], + "nuv": [ + 0.007462686567164179, + 0.012048192771084338, + 0.9925373134328358, + 0.012048192771084338, + 0.007462686567164179, + 0.9879518072289156, + 0.9925373134328358, + 0.9879518072289156 + ], + "minPos": [ + -132, + -81, + 0 + ], + "maxPos": [ + 132, + 81, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ed9a74ae-3315-4815-bacd-95c213c32d7a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ed9a74ae-3315-4815-bacd-95c213c32d7a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl.meta b/assets/resources/i18nSprite2/nl.meta new file mode 100644 index 0000000..d35a367 --- /dev/null +++ b/assets/resources/i18nSprite2/nl.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "ab83105e-5cc9-4c73-95bb-6654c1f3d39a", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/nl/Buy1.png b/assets/resources/i18nSprite2/nl/Buy1.png new file mode 100755 index 0000000..99873be Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Buy1.png differ diff --git a/assets/resources/i18nSprite2/nl/Buy1.png.meta b/assets/resources/i18nSprite2/nl/Buy1.png.meta new file mode 100644 index 0000000..7dd5c98 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fb3a2ca9-1439-4bd4-89cc-9e631bfdc0ba", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fb3a2ca9-1439-4bd4-89cc-9e631bfdc0ba@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fb3a2ca9-1439-4bd4-89cc-9e631bfdc0ba", + "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": "fb3a2ca9-1439-4bd4-89cc-9e631bfdc0ba@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 880, + "height": 177, + "rawWidth": 880, + "rawHeight": 177, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -440, + -88.5, + 0, + 440, + -88.5, + 0, + -440, + 88.5, + 0, + 440, + 88.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 177, + 880, + 177, + 0, + 0, + 880, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -440, + -88.5, + 0 + ], + "maxPos": [ + 440, + 88.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fb3a2ca9-1439-4bd4-89cc-9e631bfdc0ba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fb3a2ca9-1439-4bd4-89cc-9e631bfdc0ba@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Buy2.png b/assets/resources/i18nSprite2/nl/Buy2.png new file mode 100755 index 0000000..882d9ec Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Buy2.png differ diff --git a/assets/resources/i18nSprite2/nl/Buy2.png.meta b/assets/resources/i18nSprite2/nl/Buy2.png.meta new file mode 100644 index 0000000..941f837 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "78cbe419-d0aa-46e7-9689-90f52ed8a00b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "78cbe419-d0aa-46e7-9689-90f52ed8a00b@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "78cbe419-d0aa-46e7-9689-90f52ed8a00b", + "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": "78cbe419-d0aa-46e7-9689-90f52ed8a00b@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 219, + "height": 98, + "rawWidth": 219, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -109.5, + -49, + 0, + 109.5, + -49, + 0, + -109.5, + 49, + 0, + 109.5, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 98, + 219, + 98, + 0, + 0, + 219, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -109.5, + -49, + 0 + ], + "maxPos": [ + 109.5, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "78cbe419-d0aa-46e7-9689-90f52ed8a00b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "78cbe419-d0aa-46e7-9689-90f52ed8a00b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Buy4.png b/assets/resources/i18nSprite2/nl/Buy4.png new file mode 100755 index 0000000..eb0c7a8 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Buy4.png differ diff --git a/assets/resources/i18nSprite2/nl/Buy4.png.meta b/assets/resources/i18nSprite2/nl/Buy4.png.meta new file mode 100644 index 0000000..6314abb --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c0c3f8f1-0dd1-40cd-9014-5e9faf940e1f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c0c3f8f1-0dd1-40cd-9014-5e9faf940e1f@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c0c3f8f1-0dd1-40cd-9014-5e9faf940e1f", + "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": "c0c3f8f1-0dd1-40cd-9014-5e9faf940e1f@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 199, + "height": 74, + "rawWidth": 199, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -99.5, + -37, + 0, + 99.5, + -37, + 0, + -99.5, + 37, + 0, + 99.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 74, + 199, + 74, + 0, + 0, + 199, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -99.5, + -37, + 0 + ], + "maxPos": [ + 99.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c0c3f8f1-0dd1-40cd-9014-5e9faf940e1f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c0c3f8f1-0dd1-40cd-9014-5e9faf940e1f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Buy5.png b/assets/resources/i18nSprite2/nl/Buy5.png new file mode 100755 index 0000000..8c7ce0a Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Buy5.png differ diff --git a/assets/resources/i18nSprite2/nl/Buy5.png.meta b/assets/resources/i18nSprite2/nl/Buy5.png.meta new file mode 100644 index 0000000..fc4b50f --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "144a9cbe-2610-4183-9623-6733ce93b4f6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "144a9cbe-2610-4183-9623-6733ce93b4f6@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "144a9cbe-2610-4183-9623-6733ce93b4f6", + "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": "144a9cbe-2610-4183-9623-6733ce93b4f6@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 239, + "height": 67, + "rawWidth": 243, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119.5, + -33.5, + 0, + 119.5, + -33.5, + 0, + -119.5, + 33.5, + 0, + 119.5, + 33.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 69, + 241, + 69, + 2, + 2, + 241, + 2 + ], + "nuv": [ + 0.00823045267489712, + 0.028169014084507043, + 0.9917695473251029, + 0.028169014084507043, + 0.00823045267489712, + 0.971830985915493, + 0.9917695473251029, + 0.971830985915493 + ], + "minPos": [ + -119.5, + -33.5, + 0 + ], + "maxPos": [ + 119.5, + 33.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "144a9cbe-2610-4183-9623-6733ce93b4f6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "144a9cbe-2610-4183-9623-6733ce93b4f6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Buy8.png b/assets/resources/i18nSprite2/nl/Buy8.png new file mode 100755 index 0000000..f84b1fc Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Buy8.png differ diff --git a/assets/resources/i18nSprite2/nl/Buy8.png.meta b/assets/resources/i18nSprite2/nl/Buy8.png.meta new file mode 100644 index 0000000..e4e24fd --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0a932e03-8c7f-4935-8c76-d159554dc9e1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0a932e03-8c7f-4935-8c76-d159554dc9e1@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0a932e03-8c7f-4935-8c76-d159554dc9e1", + "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": "0a932e03-8c7f-4935-8c76-d159554dc9e1@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 333, + "height": 73, + "rawWidth": 333, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -166.5, + -36.5, + 0, + 166.5, + -36.5, + 0, + -166.5, + 36.5, + 0, + 166.5, + 36.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 73, + 333, + 73, + 0, + 0, + 333, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -166.5, + -36.5, + 0 + ], + "maxPos": [ + 166.5, + 36.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0a932e03-8c7f-4935-8c76-d159554dc9e1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0a932e03-8c7f-4935-8c76-d159554dc9e1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FREELoading.png b/assets/resources/i18nSprite2/nl/FREELoading.png new file mode 100755 index 0000000..e281a9b Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/nl/FREELoading.png.meta b/assets/resources/i18nSprite2/nl/FREELoading.png.meta new file mode 100644 index 0000000..47b6efe --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4a5d2302-5a12-47de-940d-937c09ca049f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4a5d2302-5a12-47de-940d-937c09ca049f@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4a5d2302-5a12-47de-940d-937c09ca049f", + "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": "4a5d2302-5a12-47de-940d-937c09ca049f@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 996, + "height": 245, + "rawWidth": 996, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -498, + -122.5, + 0, + 498, + -122.5, + 0, + -498, + 122.5, + 0, + 498, + 122.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 245, + 996, + 245, + 0, + 0, + 996, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -498, + -122.5, + 0 + ], + "maxPos": [ + 498, + 122.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4a5d2302-5a12-47de-940d-937c09ca049f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4a5d2302-5a12-47de-940d-937c09ca049f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FREELoading1.png b/assets/resources/i18nSprite2/nl/FREELoading1.png new file mode 100755 index 0000000..4c01bb9 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/nl/FREELoading1.png.meta b/assets/resources/i18nSprite2/nl/FREELoading1.png.meta new file mode 100644 index 0000000..5120d52 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "10830b45-6f46-43ad-ba14-0b2abc867e14", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "10830b45-6f46-43ad-ba14-0b2abc867e14@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "10830b45-6f46-43ad-ba14-0b2abc867e14", + "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": "10830b45-6f46-43ad-ba14-0b2abc867e14@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 939, + "height": 131, + "rawWidth": 943, + "rawHeight": 135, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -469.5, + -65.5, + 0, + 469.5, + -65.5, + 0, + -469.5, + 65.5, + 0, + 469.5, + 65.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 133, + 941, + 133, + 2, + 2, + 941, + 2 + ], + "nuv": [ + 0.0021208907741251328, + 0.014814814814814815, + 0.9978791092258749, + 0.014814814814814815, + 0.0021208907741251328, + 0.9851851851851852, + 0.9978791092258749, + 0.9851851851851852 + ], + "minPos": [ + -469.5, + -65.5, + 0 + ], + "maxPos": [ + 469.5, + 65.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "10830b45-6f46-43ad-ba14-0b2abc867e14@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "10830b45-6f46-43ad-ba14-0b2abc867e14@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FREELoading2.png b/assets/resources/i18nSprite2/nl/FREELoading2.png new file mode 100755 index 0000000..48b1e2a Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/nl/FREELoading2.png.meta b/assets/resources/i18nSprite2/nl/FREELoading2.png.meta new file mode 100644 index 0000000..5ded1b3 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2ae5cef3-eeed-4b6f-9001-b803f2b41877", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2ae5cef3-eeed-4b6f-9001-b803f2b41877@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2ae5cef3-eeed-4b6f-9001-b803f2b41877", + "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": "2ae5cef3-eeed-4b6f-9001-b803f2b41877@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 81, + "rawWidth": 224, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -40.5, + 0, + 112, + -40.5, + 0, + -112, + 40.5, + 0, + 112, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 224, + 81, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -40.5, + 0 + ], + "maxPos": [ + 112, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2ae5cef3-eeed-4b6f-9001-b803f2b41877@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2ae5cef3-eeed-4b6f-9001-b803f2b41877@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FREESPIN2.png b/assets/resources/i18nSprite2/nl/FREESPIN2.png new file mode 100755 index 0000000..e012391 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/nl/FREESPIN2.png.meta b/assets/resources/i18nSprite2/nl/FREESPIN2.png.meta new file mode 100644 index 0000000..acb3d2e --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "66998daf-e6d0-40cf-8f7c-754aef7baf70", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "66998daf-e6d0-40cf-8f7c-754aef7baf70@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "66998daf-e6d0-40cf-8f7c-754aef7baf70", + "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": "66998daf-e6d0-40cf-8f7c-754aef7baf70@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 635, + "height": 75, + "rawWidth": 635, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -317.5, + -37.5, + 0, + 317.5, + -37.5, + 0, + -317.5, + 37.5, + 0, + 317.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 635, + 75, + 0, + 0, + 635, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -317.5, + -37.5, + 0 + ], + "maxPos": [ + 317.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "66998daf-e6d0-40cf-8f7c-754aef7baf70@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "66998daf-e6d0-40cf-8f7c-754aef7baf70@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FREESPIN4.png b/assets/resources/i18nSprite2/nl/FREESPIN4.png new file mode 100755 index 0000000..8a309a6 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/nl/FREESPIN4.png.meta b/assets/resources/i18nSprite2/nl/FREESPIN4.png.meta new file mode 100644 index 0000000..6323ed0 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fa34503a-f1fe-4b31-8c92-60f5d6b0a3fa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fa34503a-f1fe-4b31-8c92-60f5d6b0a3fa@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fa34503a-f1fe-4b31-8c92-60f5d6b0a3fa", + "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": "fa34503a-f1fe-4b31-8c92-60f5d6b0a3fa@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 407, + "height": 82, + "rawWidth": 407, + "rawHeight": 82, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -203.5, + -41, + 0, + 203.5, + -41, + 0, + -203.5, + 41, + 0, + 203.5, + 41, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 82, + 407, + 82, + 0, + 0, + 407, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -203.5, + -41, + 0 + ], + "maxPos": [ + 203.5, + 41, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fa34503a-f1fe-4b31-8c92-60f5d6b0a3fa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fa34503a-f1fe-4b31-8c92-60f5d6b0a3fa@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FREESPIN5.png b/assets/resources/i18nSprite2/nl/FREESPIN5.png new file mode 100755 index 0000000..65633a5 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/nl/FREESPIN5.png.meta b/assets/resources/i18nSprite2/nl/FREESPIN5.png.meta new file mode 100644 index 0000000..6332bbd --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "afead688-88f8-4b9b-a9ea-f246bac4e963", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "afead688-88f8-4b9b-a9ea-f246bac4e963@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "afead688-88f8-4b9b-a9ea-f246bac4e963", + "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": "afead688-88f8-4b9b-a9ea-f246bac4e963@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1031, + "height": 242, + "rawWidth": 1031, + "rawHeight": 242, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -515.5, + -121, + 0, + 515.5, + -121, + 0, + -515.5, + 121, + 0, + 515.5, + 121, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 242, + 1031, + 242, + 0, + 0, + 1031, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -515.5, + -121, + 0 + ], + "maxPos": [ + 515.5, + 121, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afead688-88f8-4b9b-a9ea-f246bac4e963@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "afead688-88f8-4b9b-a9ea-f246bac4e963@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/FSFS.png b/assets/resources/i18nSprite2/nl/FSFS.png new file mode 100755 index 0000000..1160b75 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/FSFS.png differ diff --git a/assets/resources/i18nSprite2/nl/FSFS.png.meta b/assets/resources/i18nSprite2/nl/FSFS.png.meta new file mode 100644 index 0000000..6d3bc0e --- /dev/null +++ b/assets/resources/i18nSprite2/nl/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3682ba22-5d10-40f9-9840-5fe99d9d1b8a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3682ba22-5d10-40f9-9840-5fe99d9d1b8a@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3682ba22-5d10-40f9-9840-5fe99d9d1b8a", + "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": "3682ba22-5d10-40f9-9840-5fe99d9d1b8a@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 598, + "height": 147, + "rawWidth": 598, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -299, + -73.5, + 0, + 299, + -73.5, + 0, + -299, + 73.5, + 0, + 299, + 73.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 147, + 598, + 147, + 0, + 0, + 598, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -299, + -73.5, + 0 + ], + "maxPos": [ + 299, + 73.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3682ba22-5d10-40f9-9840-5fe99d9d1b8a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3682ba22-5d10-40f9-9840-5fe99d9d1b8a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Free.png b/assets/resources/i18nSprite2/nl/Free.png new file mode 100755 index 0000000..6936709 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Free.png differ diff --git a/assets/resources/i18nSprite2/nl/Free.png.meta b/assets/resources/i18nSprite2/nl/Free.png.meta new file mode 100644 index 0000000..a14c47b --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "904e598f-ab39-4756-8d90-09a7abd7e7f5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "904e598f-ab39-4756-8d90-09a7abd7e7f5@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "904e598f-ab39-4756-8d90-09a7abd7e7f5", + "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": "904e598f-ab39-4756-8d90-09a7abd7e7f5@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 557, + "height": 165, + "rawWidth": 557, + "rawHeight": 165, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -278.5, + -82.5, + 0, + 278.5, + -82.5, + 0, + -278.5, + 82.5, + 0, + 278.5, + 82.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 165, + 557, + 165, + 0, + 0, + 557, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -278.5, + -82.5, + 0 + ], + "maxPos": [ + 278.5, + 82.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "904e598f-ab39-4756-8d90-09a7abd7e7f5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "904e598f-ab39-4756-8d90-09a7abd7e7f5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Free1.png b/assets/resources/i18nSprite2/nl/Free1.png new file mode 100755 index 0000000..90f5836 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Free1.png differ diff --git a/assets/resources/i18nSprite2/nl/Free1.png.meta b/assets/resources/i18nSprite2/nl/Free1.png.meta new file mode 100644 index 0000000..c65ec6a --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "920fa653-d0c0-4be5-ada7-3e3298474f7c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "920fa653-d0c0-4be5-ada7-3e3298474f7c@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "920fa653-d0c0-4be5-ada7-3e3298474f7c", + "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": "920fa653-d0c0-4be5-ada7-3e3298474f7c@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 509, + "height": 165, + "rawWidth": 509, + "rawHeight": 165, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -254.5, + -82.5, + 0, + 254.5, + -82.5, + 0, + -254.5, + 82.5, + 0, + 254.5, + 82.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 165, + 509, + 165, + 0, + 0, + 509, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -254.5, + -82.5, + 0 + ], + "maxPos": [ + 254.5, + 82.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "920fa653-d0c0-4be5-ada7-3e3298474f7c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "920fa653-d0c0-4be5-ada7-3e3298474f7c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal1.png b/assets/resources/i18nSprite2/nl/Normal1.png new file mode 100755 index 0000000..0c92451 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal1.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal1.png.meta b/assets/resources/i18nSprite2/nl/Normal1.png.meta new file mode 100644 index 0000000..6a4177f --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b29882cd-7bfb-4144-bcd6-0c42ef7d66b7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b29882cd-7bfb-4144-bcd6-0c42ef7d66b7@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b29882cd-7bfb-4144-bcd6-0c42ef7d66b7", + "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": "b29882cd-7bfb-4144-bcd6-0c42ef7d66b7@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1124, + "height": 43, + "rawWidth": 1128, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -562, + -21.5, + 0, + 562, + -21.5, + 0, + -562, + 21.5, + 0, + 562, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 1126, + 45, + 2, + 2, + 1126, + 2 + ], + "nuv": [ + 0.0017730496453900709, + 0.0425531914893617, + 0.99822695035461, + 0.0425531914893617, + 0.0017730496453900709, + 0.9574468085106383, + 0.99822695035461, + 0.9574468085106383 + ], + "minPos": [ + -562, + -21.5, + 0 + ], + "maxPos": [ + 562, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b29882cd-7bfb-4144-bcd6-0c42ef7d66b7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b29882cd-7bfb-4144-bcd6-0c42ef7d66b7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal10.png b/assets/resources/i18nSprite2/nl/Normal10.png new file mode 100755 index 0000000..962497e Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal10.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal10.png.meta b/assets/resources/i18nSprite2/nl/Normal10.png.meta new file mode 100644 index 0000000..47a04c2 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "49849993-7e8d-4173-b5e4-23734784f410", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "49849993-7e8d-4173-b5e4-23734784f410@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "49849993-7e8d-4173-b5e4-23734784f410", + "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": "49849993-7e8d-4173-b5e4-23734784f410@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 480, + "height": 43, + "rawWidth": 484, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -240, + -21.5, + 0, + 240, + -21.5, + 0, + -240, + 21.5, + 0, + 240, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 482, + 45, + 2, + 2, + 482, + 2 + ], + "nuv": [ + 0.004132231404958678, + 0.0425531914893617, + 0.9958677685950413, + 0.0425531914893617, + 0.004132231404958678, + 0.9574468085106383, + 0.9958677685950413, + 0.9574468085106383 + ], + "minPos": [ + -240, + -21.5, + 0 + ], + "maxPos": [ + 240, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "49849993-7e8d-4173-b5e4-23734784f410@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "49849993-7e8d-4173-b5e4-23734784f410@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal11.png b/assets/resources/i18nSprite2/nl/Normal11.png new file mode 100755 index 0000000..cc257c8 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal11.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal11.png.meta b/assets/resources/i18nSprite2/nl/Normal11.png.meta new file mode 100644 index 0000000..d4913ad --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bcae615f-bfca-4141-ab13-96ccd7a9bc60", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bcae615f-bfca-4141-ab13-96ccd7a9bc60@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bcae615f-bfca-4141-ab13-96ccd7a9bc60", + "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": "bcae615f-bfca-4141-ab13-96ccd7a9bc60@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 845, + "height": 78, + "rawWidth": 845, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -422.5, + -39, + 0, + 422.5, + -39, + 0, + -422.5, + 39, + 0, + 422.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 845, + 78, + 0, + 0, + 845, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -422.5, + -39, + 0 + ], + "maxPos": [ + 422.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bcae615f-bfca-4141-ab13-96ccd7a9bc60@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bcae615f-bfca-4141-ab13-96ccd7a9bc60@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal2.png b/assets/resources/i18nSprite2/nl/Normal2.png new file mode 100755 index 0000000..b07bd77 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal2.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal2.png.meta b/assets/resources/i18nSprite2/nl/Normal2.png.meta new file mode 100644 index 0000000..193952e --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9c9257e0-9298-4906-9ca7-46cb55b2634f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9c9257e0-9298-4906-9ca7-46cb55b2634f@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9c9257e0-9298-4906-9ca7-46cb55b2634f", + "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": "9c9257e0-9298-4906-9ca7-46cb55b2634f@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 178, + "height": 43, + "rawWidth": 182, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -89, + -21.5, + 0, + 89, + -21.5, + 0, + -89, + 21.5, + 0, + 89, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 180, + 45, + 2, + 2, + 180, + 2 + ], + "nuv": [ + 0.01098901098901099, + 0.0425531914893617, + 0.989010989010989, + 0.0425531914893617, + 0.01098901098901099, + 0.9574468085106383, + 0.989010989010989, + 0.9574468085106383 + ], + "minPos": [ + -89, + -21.5, + 0 + ], + "maxPos": [ + 89, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9c9257e0-9298-4906-9ca7-46cb55b2634f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9c9257e0-9298-4906-9ca7-46cb55b2634f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal3.png b/assets/resources/i18nSprite2/nl/Normal3.png new file mode 100755 index 0000000..f48ee7f Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal3.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal3.png.meta b/assets/resources/i18nSprite2/nl/Normal3.png.meta new file mode 100644 index 0000000..e3918c6 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f7d24568-394f-400a-abbc-d5abb6abf6b0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f7d24568-394f-400a-abbc-d5abb6abf6b0@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f7d24568-394f-400a-abbc-d5abb6abf6b0", + "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": "f7d24568-394f-400a-abbc-d5abb6abf6b0@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 627, + "height": 49, + "rawWidth": 631, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -313.5, + -24.5, + 0, + 313.5, + -24.5, + 0, + -313.5, + 24.5, + 0, + 313.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 629, + 51, + 2, + 2, + 629, + 2 + ], + "nuv": [ + 0.003169572107765452, + 0.03773584905660377, + 0.9968304278922345, + 0.03773584905660377, + 0.003169572107765452, + 0.9622641509433962, + 0.9968304278922345, + 0.9622641509433962 + ], + "minPos": [ + -313.5, + -24.5, + 0 + ], + "maxPos": [ + 313.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f7d24568-394f-400a-abbc-d5abb6abf6b0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f7d24568-394f-400a-abbc-d5abb6abf6b0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal4.png b/assets/resources/i18nSprite2/nl/Normal4.png new file mode 100755 index 0000000..722310a Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal4.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal4.png.meta b/assets/resources/i18nSprite2/nl/Normal4.png.meta new file mode 100644 index 0000000..d727c2f --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e9317fd2-7efd-42ea-b8e8-4db3af518880", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e9317fd2-7efd-42ea-b8e8-4db3af518880@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e9317fd2-7efd-42ea-b8e8-4db3af518880", + "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": "e9317fd2-7efd-42ea-b8e8-4db3af518880@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 405, + "height": 43, + "rawWidth": 409, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -202.5, + -21.5, + 0, + 202.5, + -21.5, + 0, + -202.5, + 21.5, + 0, + 202.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 407, + 45, + 2, + 2, + 407, + 2 + ], + "nuv": [ + 0.004889975550122249, + 0.0425531914893617, + 0.9951100244498777, + 0.0425531914893617, + 0.004889975550122249, + 0.9574468085106383, + 0.9951100244498777, + 0.9574468085106383 + ], + "minPos": [ + -202.5, + -21.5, + 0 + ], + "maxPos": [ + 202.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e9317fd2-7efd-42ea-b8e8-4db3af518880@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e9317fd2-7efd-42ea-b8e8-4db3af518880@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal5.png b/assets/resources/i18nSprite2/nl/Normal5.png new file mode 100755 index 0000000..6e8b202 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal5.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal5.png.meta b/assets/resources/i18nSprite2/nl/Normal5.png.meta new file mode 100644 index 0000000..5b9594e --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e7fe295f-ba35-453b-a989-e2c26ba3d3f2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e7fe295f-ba35-453b-a989-e2c26ba3d3f2@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e7fe295f-ba35-453b-a989-e2c26ba3d3f2", + "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": "e7fe295f-ba35-453b-a989-e2c26ba3d3f2@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 84, + "height": 27, + "rawWidth": 88, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -42, + -13.5, + 0, + 42, + -13.5, + 0, + -42, + 13.5, + 0, + 42, + 13.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 29, + 86, + 29, + 2, + 2, + 86, + 2 + ], + "nuv": [ + 0.022727272727272728, + 0.06451612903225806, + 0.9772727272727273, + 0.06451612903225806, + 0.022727272727272728, + 0.9354838709677419, + 0.9772727272727273, + 0.9354838709677419 + ], + "minPos": [ + -42, + -13.5, + 0 + ], + "maxPos": [ + 42, + 13.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e7fe295f-ba35-453b-a989-e2c26ba3d3f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e7fe295f-ba35-453b-a989-e2c26ba3d3f2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal6.png b/assets/resources/i18nSprite2/nl/Normal6.png new file mode 100755 index 0000000..a706e90 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal6.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal6.png.meta b/assets/resources/i18nSprite2/nl/Normal6.png.meta new file mode 100644 index 0000000..2b11e54 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a4f46a54-8ea0-4db4-8730-2fc8670b4063", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a4f46a54-8ea0-4db4-8730-2fc8670b4063@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a4f46a54-8ea0-4db4-8730-2fc8670b4063", + "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": "a4f46a54-8ea0-4db4-8730-2fc8670b4063@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 140, + "height": 43, + "rawWidth": 144, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -70, + -21.5, + 0, + 70, + -21.5, + 0, + -70, + 21.5, + 0, + 70, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 142, + 45, + 2, + 2, + 142, + 2 + ], + "nuv": [ + 0.013888888888888888, + 0.0425531914893617, + 0.9861111111111112, + 0.0425531914893617, + 0.013888888888888888, + 0.9574468085106383, + 0.9861111111111112, + 0.9574468085106383 + ], + "minPos": [ + -70, + -21.5, + 0 + ], + "maxPos": [ + 70, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a4f46a54-8ea0-4db4-8730-2fc8670b4063@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a4f46a54-8ea0-4db4-8730-2fc8670b4063@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal7.png b/assets/resources/i18nSprite2/nl/Normal7.png new file mode 100755 index 0000000..1324146 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal7.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal7.png.meta b/assets/resources/i18nSprite2/nl/Normal7.png.meta new file mode 100644 index 0000000..204a8d1 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ff44ea6e-d605-4158-8821-ee2c0f87fb50", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ff44ea6e-d605-4158-8821-ee2c0f87fb50@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ff44ea6e-d605-4158-8821-ee2c0f87fb50", + "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": "ff44ea6e-d605-4158-8821-ee2c0f87fb50@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 302, + "height": 43, + "rawWidth": 306, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -151, + -21.5, + 0, + 151, + -21.5, + 0, + -151, + 21.5, + 0, + 151, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 304, + 45, + 2, + 2, + 304, + 2 + ], + "nuv": [ + 0.006535947712418301, + 0.0425531914893617, + 0.9934640522875817, + 0.0425531914893617, + 0.006535947712418301, + 0.9574468085106383, + 0.9934640522875817, + 0.9574468085106383 + ], + "minPos": [ + -151, + -21.5, + 0 + ], + "maxPos": [ + 151, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ff44ea6e-d605-4158-8821-ee2c0f87fb50@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ff44ea6e-d605-4158-8821-ee2c0f87fb50@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal8.png b/assets/resources/i18nSprite2/nl/Normal8.png new file mode 100755 index 0000000..c15ecba Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal8.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal8.png.meta b/assets/resources/i18nSprite2/nl/Normal8.png.meta new file mode 100644 index 0000000..69c3f7b --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7d544d67-438a-474e-87b6-29e7f579754e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7d544d67-438a-474e-87b6-29e7f579754e@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7d544d67-438a-474e-87b6-29e7f579754e", + "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": "7d544d67-438a-474e-87b6-29e7f579754e@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1344, + "height": 43, + "rawWidth": 1348, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -672, + -21.5, + 0, + 672, + -21.5, + 0, + -672, + 21.5, + 0, + 672, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 1346, + 45, + 2, + 2, + 1346, + 2 + ], + "nuv": [ + 0.001483679525222552, + 0.0425531914893617, + 0.9985163204747775, + 0.0425531914893617, + 0.001483679525222552, + 0.9574468085106383, + 0.9985163204747775, + 0.9574468085106383 + ], + "minPos": [ + -672, + -21.5, + 0 + ], + "maxPos": [ + 672, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7d544d67-438a-474e-87b6-29e7f579754e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7d544d67-438a-474e-87b6-29e7f579754e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Normal9.png b/assets/resources/i18nSprite2/nl/Normal9.png new file mode 100755 index 0000000..5db0791 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Normal9.png differ diff --git a/assets/resources/i18nSprite2/nl/Normal9.png.meta b/assets/resources/i18nSprite2/nl/Normal9.png.meta new file mode 100644 index 0000000..998cdb5 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a15a7a1-e46d-4967-b395-0bf5a954892d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a15a7a1-e46d-4967-b395-0bf5a954892d@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a15a7a1-e46d-4967-b395-0bf5a954892d", + "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": "9a15a7a1-e46d-4967-b395-0bf5a954892d@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 625, + "height": 75, + "rawWidth": 625, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -312.5, + -37.5, + 0, + 312.5, + -37.5, + 0, + -312.5, + 37.5, + 0, + 312.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 625, + 75, + 0, + 0, + 625, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -312.5, + -37.5, + 0 + ], + "maxPos": [ + 312.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a15a7a1-e46d-4967-b395-0bf5a954892d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a15a7a1-e46d-4967-b395-0bf5a954892d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Win1.png b/assets/resources/i18nSprite2/nl/Win1.png new file mode 100755 index 0000000..eb58b18 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Win1.png differ diff --git a/assets/resources/i18nSprite2/nl/Win1.png.meta b/assets/resources/i18nSprite2/nl/Win1.png.meta new file mode 100644 index 0000000..7bbc062 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "47a77af2-a8d1-4666-8a49-0223c06067ad", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "47a77af2-a8d1-4666-8a49-0223c06067ad@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "47a77af2-a8d1-4666-8a49-0223c06067ad", + "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": "47a77af2-a8d1-4666-8a49-0223c06067ad@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 974, + "height": 284, + "rawWidth": 974, + "rawHeight": 284, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -487, + -142, + 0, + 487, + -142, + 0, + -487, + 142, + 0, + 487, + 142, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 284, + 974, + 284, + 0, + 0, + 974, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -487, + -142, + 0 + ], + "maxPos": [ + 487, + 142, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "47a77af2-a8d1-4666-8a49-0223c06067ad@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "47a77af2-a8d1-4666-8a49-0223c06067ad@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Win2.png b/assets/resources/i18nSprite2/nl/Win2.png new file mode 100755 index 0000000..fb4f144 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Win2.png differ diff --git a/assets/resources/i18nSprite2/nl/Win2.png.meta b/assets/resources/i18nSprite2/nl/Win2.png.meta new file mode 100644 index 0000000..4081cfe --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f5b02d6-e1bd-4bf6-a76c-86643d22b95f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f5b02d6-e1bd-4bf6-a76c-86643d22b95f@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f5b02d6-e1bd-4bf6-a76c-86643d22b95f", + "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": "4f5b02d6-e1bd-4bf6-a76c-86643d22b95f@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1003, + "height": 309, + "rawWidth": 1003, + "rawHeight": 309, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -501.5, + -154.5, + 0, + 501.5, + -154.5, + 0, + -501.5, + 154.5, + 0, + 501.5, + 154.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 309, + 1003, + 309, + 0, + 0, + 1003, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -501.5, + -154.5, + 0 + ], + "maxPos": [ + 501.5, + 154.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f5b02d6-e1bd-4bf6-a76c-86643d22b95f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f5b02d6-e1bd-4bf6-a76c-86643d22b95f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/Win3.png b/assets/resources/i18nSprite2/nl/Win3.png new file mode 100755 index 0000000..58c13f3 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/Win3.png differ diff --git a/assets/resources/i18nSprite2/nl/Win3.png.meta b/assets/resources/i18nSprite2/nl/Win3.png.meta new file mode 100644 index 0000000..a7bf9f3 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ebc7c53e-1369-4bb1-a5e7-4152ba5f5ffe", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ebc7c53e-1369-4bb1-a5e7-4152ba5f5ffe@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ebc7c53e-1369-4bb1-a5e7-4152ba5f5ffe", + "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": "ebc7c53e-1369-4bb1-a5e7-4152ba5f5ffe@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 966, + "height": 453, + "rawWidth": 966, + "rawHeight": 453, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -483, + -226.5, + 0, + 483, + -226.5, + 0, + -483, + 226.5, + 0, + 483, + 226.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 453, + 966, + 453, + 0, + 0, + 966, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -483, + -226.5, + 0 + ], + "maxPos": [ + 483, + 226.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ebc7c53e-1369-4bb1-a5e7-4152ba5f5ffe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ebc7c53e-1369-4bb1-a5e7-4152ba5f5ffe@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/logo1.png b/assets/resources/i18nSprite2/nl/logo1.png new file mode 100755 index 0000000..321ae48 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/logo1.png differ diff --git a/assets/resources/i18nSprite2/nl/logo1.png.meta b/assets/resources/i18nSprite2/nl/logo1.png.meta new file mode 100644 index 0000000..7bec063 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d1c79324-b956-4233-8e28-b48cdf383457", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d1c79324-b956-4233-8e28-b48cdf383457@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d1c79324-b956-4233-8e28-b48cdf383457", + "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": "d1c79324-b956-4233-8e28-b48cdf383457@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1018, + "height": 368, + "rawWidth": 1018, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509, + -184, + 0, + 509, + -184, + 0, + -509, + 184, + 0, + 509, + 184, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 368, + 1018, + 368, + 0, + 0, + 1018, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509, + -184, + 0 + ], + "maxPos": [ + 509, + 184, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d1c79324-b956-4233-8e28-b48cdf383457@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d1c79324-b956-4233-8e28-b48cdf383457@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/nl/zxksctter.png b/assets/resources/i18nSprite2/nl/zxksctter.png new file mode 100755 index 0000000..88692a9 Binary files /dev/null and b/assets/resources/i18nSprite2/nl/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/nl/zxksctter.png.meta b/assets/resources/i18nSprite2/nl/zxksctter.png.meta new file mode 100644 index 0000000..65dbcd9 --- /dev/null +++ b/assets/resources/i18nSprite2/nl/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d8938281-dfdf-4bf2-b451-1b592ae0d6c9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8938281-dfdf-4bf2-b451-1b592ae0d6c9@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8938281-dfdf-4bf2-b451-1b592ae0d6c9", + "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": "d8938281-dfdf-4bf2-b451-1b592ae0d6c9@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 242, + "height": 123, + "rawWidth": 246, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -121, + -61.5, + 0, + 121, + -61.5, + 0, + -121, + 61.5, + 0, + 121, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 244, + 125, + 2, + 2, + 244, + 2 + ], + "nuv": [ + 0.008130081300813009, + 0.015748031496062992, + 0.991869918699187, + 0.015748031496062992, + 0.008130081300813009, + 0.984251968503937, + 0.991869918699187, + 0.984251968503937 + ], + "minPos": [ + -121, + -61.5, + 0 + ], + "maxPos": [ + 121, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8938281-dfdf-4bf2-b451-1b592ae0d6c9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8938281-dfdf-4bf2-b451-1b592ae0d6c9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt.meta b/assets/resources/i18nSprite2/pt.meta new file mode 100644 index 0000000..12a13e4 --- /dev/null +++ b/assets/resources/i18nSprite2/pt.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "05fc6709-3062-44aa-9cac-25b26fa1b042", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/pt/Buy1.png b/assets/resources/i18nSprite2/pt/Buy1.png new file mode 100755 index 0000000..34f4e05 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Buy1.png differ diff --git a/assets/resources/i18nSprite2/pt/Buy1.png.meta b/assets/resources/i18nSprite2/pt/Buy1.png.meta new file mode 100644 index 0000000..e9daca1 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e307e15-11a4-4dc3-b962-49fce75ba92d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e307e15-11a4-4dc3-b962-49fce75ba92d@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e307e15-11a4-4dc3-b962-49fce75ba92d", + "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": "6e307e15-11a4-4dc3-b962-49fce75ba92d@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 885, + "height": 166, + "rawWidth": 885, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -442.5, + -83, + 0, + 442.5, + -83, + 0, + -442.5, + 83, + 0, + 442.5, + 83, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 166, + 885, + 166, + 0, + 0, + 885, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -442.5, + -83, + 0 + ], + "maxPos": [ + 442.5, + 83, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e307e15-11a4-4dc3-b962-49fce75ba92d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e307e15-11a4-4dc3-b962-49fce75ba92d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Buy2.png b/assets/resources/i18nSprite2/pt/Buy2.png new file mode 100755 index 0000000..fe6390e Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Buy2.png differ diff --git a/assets/resources/i18nSprite2/pt/Buy2.png.meta b/assets/resources/i18nSprite2/pt/Buy2.png.meta new file mode 100644 index 0000000..2f0d7ae --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6b58dd3d-c0ef-4d33-9edb-6516bc1bfc45", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6b58dd3d-c0ef-4d33-9edb-6516bc1bfc45@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6b58dd3d-c0ef-4d33-9edb-6516bc1bfc45", + "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": "6b58dd3d-c0ef-4d33-9edb-6516bc1bfc45@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 214, + "height": 87, + "rawWidth": 214, + "rawHeight": 87, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -107, + -43.5, + 0, + 107, + -43.5, + 0, + -107, + 43.5, + 0, + 107, + 43.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 87, + 214, + 87, + 0, + 0, + 214, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -107, + -43.5, + 0 + ], + "maxPos": [ + 107, + 43.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6b58dd3d-c0ef-4d33-9edb-6516bc1bfc45@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6b58dd3d-c0ef-4d33-9edb-6516bc1bfc45@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Buy4.png b/assets/resources/i18nSprite2/pt/Buy4.png new file mode 100755 index 0000000..f5764c4 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Buy4.png differ diff --git a/assets/resources/i18nSprite2/pt/Buy4.png.meta b/assets/resources/i18nSprite2/pt/Buy4.png.meta new file mode 100644 index 0000000..5b30560 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2f9649a3-7f97-4771-b54d-a14c5d8d7796", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2f9649a3-7f97-4771-b54d-a14c5d8d7796@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2f9649a3-7f97-4771-b54d-a14c5d8d7796", + "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": "2f9649a3-7f97-4771-b54d-a14c5d8d7796@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 277, + "height": 75, + "rawWidth": 277, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -138.5, + -37.5, + 0, + 138.5, + -37.5, + 0, + -138.5, + 37.5, + 0, + 138.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 277, + 75, + 0, + 0, + 277, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -138.5, + -37.5, + 0 + ], + "maxPos": [ + 138.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2f9649a3-7f97-4771-b54d-a14c5d8d7796@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2f9649a3-7f97-4771-b54d-a14c5d8d7796@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Buy5.png b/assets/resources/i18nSprite2/pt/Buy5.png new file mode 100755 index 0000000..3e35236 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Buy5.png differ diff --git a/assets/resources/i18nSprite2/pt/Buy5.png.meta b/assets/resources/i18nSprite2/pt/Buy5.png.meta new file mode 100644 index 0000000..c23a2eb --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "24966c8b-f779-4e1c-b52a-4dedd2972a69", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24966c8b-f779-4e1c-b52a-4dedd2972a69@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24966c8b-f779-4e1c-b52a-4dedd2972a69", + "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": "24966c8b-f779-4e1c-b52a-4dedd2972a69@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 177, + "height": 55, + "rawWidth": 181, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -88.5, + -27.5, + 0, + 88.5, + -27.5, + 0, + -88.5, + 27.5, + 0, + 88.5, + 27.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 57, + 179, + 57, + 2, + 2, + 179, + 2 + ], + "nuv": [ + 0.011049723756906077, + 0.03389830508474576, + 0.988950276243094, + 0.03389830508474576, + 0.011049723756906077, + 0.9661016949152542, + 0.988950276243094, + 0.9661016949152542 + ], + "minPos": [ + -88.5, + -27.5, + 0 + ], + "maxPos": [ + 88.5, + 27.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24966c8b-f779-4e1c-b52a-4dedd2972a69@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24966c8b-f779-4e1c-b52a-4dedd2972a69@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Buy8.png b/assets/resources/i18nSprite2/pt/Buy8.png new file mode 100755 index 0000000..aadb936 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Buy8.png differ diff --git a/assets/resources/i18nSprite2/pt/Buy8.png.meta b/assets/resources/i18nSprite2/pt/Buy8.png.meta new file mode 100644 index 0000000..60e3d90 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "751083db-b739-46c8-830d-e5014926f5a6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "751083db-b739-46c8-830d-e5014926f5a6@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "751083db-b739-46c8-830d-e5014926f5a6", + "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": "751083db-b739-46c8-830d-e5014926f5a6@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 280, + "height": 77, + "rawWidth": 280, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -140, + -38.5, + 0, + 140, + -38.5, + 0, + -140, + 38.5, + 0, + 140, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 280, + 77, + 0, + 0, + 280, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -140, + -38.5, + 0 + ], + "maxPos": [ + 140, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "751083db-b739-46c8-830d-e5014926f5a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "751083db-b739-46c8-830d-e5014926f5a6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FREELoading.png b/assets/resources/i18nSprite2/pt/FREELoading.png new file mode 100755 index 0000000..b174ef1 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/pt/FREELoading.png.meta b/assets/resources/i18nSprite2/pt/FREELoading.png.meta new file mode 100644 index 0000000..f26fe00 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0ce41ba6-87e9-4d51-bce6-ad773d10c9ec", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0ce41ba6-87e9-4d51-bce6-ad773d10c9ec@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0ce41ba6-87e9-4d51-bce6-ad773d10c9ec", + "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": "0ce41ba6-87e9-4d51-bce6-ad773d10c9ec@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1017, + "height": 234, + "rawWidth": 1017, + "rawHeight": 234, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508.5, + -117, + 0, + 508.5, + -117, + 0, + -508.5, + 117, + 0, + 508.5, + 117, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 234, + 1017, + 234, + 0, + 0, + 1017, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508.5, + -117, + 0 + ], + "maxPos": [ + 508.5, + 117, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0ce41ba6-87e9-4d51-bce6-ad773d10c9ec@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0ce41ba6-87e9-4d51-bce6-ad773d10c9ec@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FREELoading1.png b/assets/resources/i18nSprite2/pt/FREELoading1.png new file mode 100755 index 0000000..be17991 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/pt/FREELoading1.png.meta b/assets/resources/i18nSprite2/pt/FREELoading1.png.meta new file mode 100644 index 0000000..aecd759 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1726254d-3e6a-4818-9357-367048d3977f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1726254d-3e6a-4818-9357-367048d3977f@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1726254d-3e6a-4818-9357-367048d3977f", + "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": "1726254d-3e6a-4818-9357-367048d3977f@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 941, + "height": 139, + "rawWidth": 945, + "rawHeight": 143, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -470.5, + -69.5, + 0, + 470.5, + -69.5, + 0, + -470.5, + 69.5, + 0, + 470.5, + 69.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 141, + 943, + 141, + 2, + 2, + 943, + 2 + ], + "nuv": [ + 0.0021164021164021165, + 0.013986013986013986, + 0.9978835978835979, + 0.013986013986013986, + 0.0021164021164021165, + 0.986013986013986, + 0.9978835978835979, + 0.986013986013986 + ], + "minPos": [ + -470.5, + -69.5, + 0 + ], + "maxPos": [ + 470.5, + 69.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1726254d-3e6a-4818-9357-367048d3977f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1726254d-3e6a-4818-9357-367048d3977f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FREELoading2.png b/assets/resources/i18nSprite2/pt/FREELoading2.png new file mode 100755 index 0000000..cf98138 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/pt/FREELoading2.png.meta b/assets/resources/i18nSprite2/pt/FREELoading2.png.meta new file mode 100644 index 0000000..560ee37 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0a70a5d0-3301-4f18-94e3-6567bc61ed6c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0a70a5d0-3301-4f18-94e3-6567bc61ed6c@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0a70a5d0-3301-4f18-94e3-6567bc61ed6c", + "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": "0a70a5d0-3301-4f18-94e3-6567bc61ed6c@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 320, + "height": 86, + "rawWidth": 320, + "rawHeight": 86, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -160, + -43, + 0, + 160, + -43, + 0, + -160, + 43, + 0, + 160, + 43, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 86, + 320, + 86, + 0, + 0, + 320, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -160, + -43, + 0 + ], + "maxPos": [ + 160, + 43, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0a70a5d0-3301-4f18-94e3-6567bc61ed6c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0a70a5d0-3301-4f18-94e3-6567bc61ed6c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FREESPIN2.png b/assets/resources/i18nSprite2/pt/FREESPIN2.png new file mode 100755 index 0000000..3f861b1 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/pt/FREESPIN2.png.meta b/assets/resources/i18nSprite2/pt/FREESPIN2.png.meta new file mode 100644 index 0000000..e0dfdbb --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0c07e03a-a216-4cf5-bffa-05a36f444f48", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0c07e03a-a216-4cf5-bffa-05a36f444f48@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0c07e03a-a216-4cf5-bffa-05a36f444f48", + "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": "0c07e03a-a216-4cf5-bffa-05a36f444f48@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 808, + "height": 75, + "rawWidth": 808, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -404, + -37.5, + 0, + 404, + -37.5, + 0, + -404, + 37.5, + 0, + 404, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 808, + 75, + 0, + 0, + 808, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -404, + -37.5, + 0 + ], + "maxPos": [ + 404, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0c07e03a-a216-4cf5-bffa-05a36f444f48@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0c07e03a-a216-4cf5-bffa-05a36f444f48@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FREESPIN4.png b/assets/resources/i18nSprite2/pt/FREESPIN4.png new file mode 100755 index 0000000..aea684a Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/pt/FREESPIN4.png.meta b/assets/resources/i18nSprite2/pt/FREESPIN4.png.meta new file mode 100644 index 0000000..f6a7ba5 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6fc18992-0503-43e0-8042-1c59920a7246", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6fc18992-0503-43e0-8042-1c59920a7246@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6fc18992-0503-43e0-8042-1c59920a7246", + "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": "6fc18992-0503-43e0-8042-1c59920a7246@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 333, + "height": 88, + "rawWidth": 333, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -166.5, + -44, + 0, + 166.5, + -44, + 0, + -166.5, + 44, + 0, + 166.5, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 333, + 88, + 0, + 0, + 333, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -166.5, + -44, + 0 + ], + "maxPos": [ + 166.5, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6fc18992-0503-43e0-8042-1c59920a7246@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6fc18992-0503-43e0-8042-1c59920a7246@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FREESPIN5.png b/assets/resources/i18nSprite2/pt/FREESPIN5.png new file mode 100755 index 0000000..7072f4f Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/pt/FREESPIN5.png.meta b/assets/resources/i18nSprite2/pt/FREESPIN5.png.meta new file mode 100644 index 0000000..07db798 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e6f4712f-2af1-48f3-a3d0-dd765458b8fc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e6f4712f-2af1-48f3-a3d0-dd765458b8fc@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e6f4712f-2af1-48f3-a3d0-dd765458b8fc", + "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": "e6f4712f-2af1-48f3-a3d0-dd765458b8fc@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1008, + "height": 243, + "rawWidth": 1008, + "rawHeight": 243, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -504, + -121.5, + 0, + 504, + -121.5, + 0, + -504, + 121.5, + 0, + 504, + 121.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 243, + 1008, + 243, + 0, + 0, + 1008, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -504, + -121.5, + 0 + ], + "maxPos": [ + 504, + 121.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e6f4712f-2af1-48f3-a3d0-dd765458b8fc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e6f4712f-2af1-48f3-a3d0-dd765458b8fc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/FSFS.png b/assets/resources/i18nSprite2/pt/FSFS.png new file mode 100755 index 0000000..58bae82 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/FSFS.png differ diff --git a/assets/resources/i18nSprite2/pt/FSFS.png.meta b/assets/resources/i18nSprite2/pt/FSFS.png.meta new file mode 100644 index 0000000..d34697e --- /dev/null +++ b/assets/resources/i18nSprite2/pt/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "59577a66-4127-41e5-87f6-04c10bd22ef4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "59577a66-4127-41e5-87f6-04c10bd22ef4@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "59577a66-4127-41e5-87f6-04c10bd22ef4", + "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": "59577a66-4127-41e5-87f6-04c10bd22ef4@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 610, + "height": 140, + "rawWidth": 610, + "rawHeight": 140, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -305, + -70, + 0, + 305, + -70, + 0, + -305, + 70, + 0, + 305, + 70, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 140, + 610, + 140, + 0, + 0, + 610, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -305, + -70, + 0 + ], + "maxPos": [ + 305, + 70, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "59577a66-4127-41e5-87f6-04c10bd22ef4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "59577a66-4127-41e5-87f6-04c10bd22ef4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Free.png b/assets/resources/i18nSprite2/pt/Free.png new file mode 100755 index 0000000..fe60a70 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Free.png differ diff --git a/assets/resources/i18nSprite2/pt/Free.png.meta b/assets/resources/i18nSprite2/pt/Free.png.meta new file mode 100644 index 0000000..f8f6b07 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7cc985ea-41d7-422e-944c-5fcfc54f0ca7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7cc985ea-41d7-422e-944c-5fcfc54f0ca7@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7cc985ea-41d7-422e-944c-5fcfc54f0ca7", + "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": "7cc985ea-41d7-422e-944c-5fcfc54f0ca7@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 578, + "height": 172, + "rawWidth": 578, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -289, + -86, + 0, + 289, + -86, + 0, + -289, + 86, + 0, + 289, + 86, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 172, + 578, + 172, + 0, + 0, + 578, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -289, + -86, + 0 + ], + "maxPos": [ + 289, + 86, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7cc985ea-41d7-422e-944c-5fcfc54f0ca7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7cc985ea-41d7-422e-944c-5fcfc54f0ca7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Free1.png b/assets/resources/i18nSprite2/pt/Free1.png new file mode 100755 index 0000000..79a6c49 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Free1.png differ diff --git a/assets/resources/i18nSprite2/pt/Free1.png.meta b/assets/resources/i18nSprite2/pt/Free1.png.meta new file mode 100644 index 0000000..3698389 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7809433f-0eed-4f9e-b485-a2926a529be2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7809433f-0eed-4f9e-b485-a2926a529be2@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7809433f-0eed-4f9e-b485-a2926a529be2", + "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": "7809433f-0eed-4f9e-b485-a2926a529be2@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 488, + "height": 173, + "rawWidth": 488, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -244, + -86.5, + 0, + 244, + -86.5, + 0, + -244, + 86.5, + 0, + 244, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 488, + 173, + 0, + 0, + 488, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -244, + -86.5, + 0 + ], + "maxPos": [ + 244, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7809433f-0eed-4f9e-b485-a2926a529be2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7809433f-0eed-4f9e-b485-a2926a529be2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal1.png b/assets/resources/i18nSprite2/pt/Normal1.png new file mode 100755 index 0000000..864a087 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal1.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal1.png.meta b/assets/resources/i18nSprite2/pt/Normal1.png.meta new file mode 100644 index 0000000..a80af92 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "86f10f61-dd65-419f-bbdb-8ee9245d3f69", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "86f10f61-dd65-419f-bbdb-8ee9245d3f69@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "86f10f61-dd65-419f-bbdb-8ee9245d3f69", + "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": "86f10f61-dd65-419f-bbdb-8ee9245d3f69@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 823, + "height": 49, + "rawWidth": 827, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -411.5, + -24.5, + 0, + 411.5, + -24.5, + 0, + -411.5, + 24.5, + 0, + 411.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 825, + 51, + 2, + 2, + 825, + 2 + ], + "nuv": [ + 0.0024183796856106408, + 0.03773584905660377, + 0.9975816203143894, + 0.03773584905660377, + 0.0024183796856106408, + 0.9622641509433962, + 0.9975816203143894, + 0.9622641509433962 + ], + "minPos": [ + -411.5, + -24.5, + 0 + ], + "maxPos": [ + 411.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "86f10f61-dd65-419f-bbdb-8ee9245d3f69@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "86f10f61-dd65-419f-bbdb-8ee9245d3f69@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal10.png b/assets/resources/i18nSprite2/pt/Normal10.png new file mode 100755 index 0000000..296f6bf Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal10.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal10.png.meta b/assets/resources/i18nSprite2/pt/Normal10.png.meta new file mode 100644 index 0000000..c64d69a --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e686114c-9227-4826-b61b-cd05dc758e9b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e686114c-9227-4826-b61b-cd05dc758e9b@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e686114c-9227-4826-b61b-cd05dc758e9b", + "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": "e686114c-9227-4826-b61b-cd05dc758e9b@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1050, + "height": 50, + "rawWidth": 1054, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -525, + -25, + 0, + 525, + -25, + 0, + -525, + 25, + 0, + 525, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 52, + 1052, + 52, + 2, + 2, + 1052, + 2 + ], + "nuv": [ + 0.0018975332068311196, + 0.037037037037037035, + 0.9981024667931688, + 0.037037037037037035, + 0.0018975332068311196, + 0.9629629629629629, + 0.9981024667931688, + 0.9629629629629629 + ], + "minPos": [ + -525, + -25, + 0 + ], + "maxPos": [ + 525, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e686114c-9227-4826-b61b-cd05dc758e9b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e686114c-9227-4826-b61b-cd05dc758e9b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal11.png b/assets/resources/i18nSprite2/pt/Normal11.png new file mode 100755 index 0000000..89e54cd Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal11.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal11.png.meta b/assets/resources/i18nSprite2/pt/Normal11.png.meta new file mode 100644 index 0000000..c712ee6 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bd6a1126-ba9d-4718-a4db-fb643a5696e7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bd6a1126-ba9d-4718-a4db-fb643a5696e7@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bd6a1126-ba9d-4718-a4db-fb643a5696e7", + "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": "bd6a1126-ba9d-4718-a4db-fb643a5696e7@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 768, + "height": 78, + "rawWidth": 768, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -384, + -39, + 0, + 384, + -39, + 0, + -384, + 39, + 0, + 384, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 768, + 78, + 0, + 0, + 768, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -384, + -39, + 0 + ], + "maxPos": [ + 384, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bd6a1126-ba9d-4718-a4db-fb643a5696e7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bd6a1126-ba9d-4718-a4db-fb643a5696e7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal2.png b/assets/resources/i18nSprite2/pt/Normal2.png new file mode 100755 index 0000000..f7b1f50 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal2.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal2.png.meta b/assets/resources/i18nSprite2/pt/Normal2.png.meta new file mode 100644 index 0000000..8541762 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9411d0e1-0df3-45e1-bfa5-a5040be55108", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9411d0e1-0df3-45e1-bfa5-a5040be55108@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9411d0e1-0df3-45e1-bfa5-a5040be55108", + "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": "9411d0e1-0df3-45e1-bfa5-a5040be55108@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 243, + "height": 43, + "rawWidth": 247, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -121.5, + -21.5, + 0, + 121.5, + -21.5, + 0, + -121.5, + 21.5, + 0, + 121.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 245, + 45, + 2, + 2, + 245, + 2 + ], + "nuv": [ + 0.008097165991902834, + 0.0425531914893617, + 0.9919028340080972, + 0.0425531914893617, + 0.008097165991902834, + 0.9574468085106383, + 0.9919028340080972, + 0.9574468085106383 + ], + "minPos": [ + -121.5, + -21.5, + 0 + ], + "maxPos": [ + 121.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9411d0e1-0df3-45e1-bfa5-a5040be55108@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9411d0e1-0df3-45e1-bfa5-a5040be55108@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal3.png b/assets/resources/i18nSprite2/pt/Normal3.png new file mode 100755 index 0000000..62ef877 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal3.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal3.png.meta b/assets/resources/i18nSprite2/pt/Normal3.png.meta new file mode 100644 index 0000000..c1f5788 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c640ec9d-5d17-486b-8989-d99562d0db6d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c640ec9d-5d17-486b-8989-d99562d0db6d@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c640ec9d-5d17-486b-8989-d99562d0db6d", + "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": "c640ec9d-5d17-486b-8989-d99562d0db6d@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 484, + "height": 49, + "rawWidth": 488, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -242, + -24.5, + 0, + 242, + -24.5, + 0, + -242, + 24.5, + 0, + 242, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 486, + 51, + 2, + 2, + 486, + 2 + ], + "nuv": [ + 0.004098360655737705, + 0.03773584905660377, + 0.9959016393442623, + 0.03773584905660377, + 0.004098360655737705, + 0.9622641509433962, + 0.9959016393442623, + 0.9622641509433962 + ], + "minPos": [ + -242, + -24.5, + 0 + ], + "maxPos": [ + 242, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c640ec9d-5d17-486b-8989-d99562d0db6d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c640ec9d-5d17-486b-8989-d99562d0db6d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal4.png b/assets/resources/i18nSprite2/pt/Normal4.png new file mode 100755 index 0000000..a3a137c Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal4.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal4.png.meta b/assets/resources/i18nSprite2/pt/Normal4.png.meta new file mode 100644 index 0000000..fce9ea2 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fd926a59-8aea-4528-98b0-c9b3e1c57476", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fd926a59-8aea-4528-98b0-c9b3e1c57476@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fd926a59-8aea-4528-98b0-c9b3e1c57476", + "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": "fd926a59-8aea-4528-98b0-c9b3e1c57476@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 501, + "height": 50, + "rawWidth": 505, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -250.5, + -25, + 0, + 250.5, + -25, + 0, + -250.5, + 25, + 0, + 250.5, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 52, + 503, + 52, + 2, + 2, + 503, + 2 + ], + "nuv": [ + 0.0039603960396039604, + 0.037037037037037035, + 0.996039603960396, + 0.037037037037037035, + 0.0039603960396039604, + 0.9629629629629629, + 0.996039603960396, + 0.9629629629629629 + ], + "minPos": [ + -250.5, + -25, + 0 + ], + "maxPos": [ + 250.5, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fd926a59-8aea-4528-98b0-c9b3e1c57476@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fd926a59-8aea-4528-98b0-c9b3e1c57476@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal5.png b/assets/resources/i18nSprite2/pt/Normal5.png new file mode 100755 index 0000000..6091878 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal5.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal5.png.meta b/assets/resources/i18nSprite2/pt/Normal5.png.meta new file mode 100644 index 0000000..836bed4 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a4597df-9a9e-4a62-bf9e-b4c186e320d1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a4597df-9a9e-4a62-bf9e-b4c186e320d1@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a4597df-9a9e-4a62-bf9e-b4c186e320d1", + "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": "9a4597df-9a9e-4a62-bf9e-b4c186e320d1@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 115, + "height": 28, + "rawWidth": 119, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -57.5, + -14, + 0, + 57.5, + -14, + 0, + -57.5, + 14, + 0, + 57.5, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 117, + 30, + 2, + 2, + 117, + 2 + ], + "nuv": [ + 0.01680672268907563, + 0.0625, + 0.9831932773109243, + 0.0625, + 0.01680672268907563, + 0.9375, + 0.9831932773109243, + 0.9375 + ], + "minPos": [ + -57.5, + -14, + 0 + ], + "maxPos": [ + 57.5, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a4597df-9a9e-4a62-bf9e-b4c186e320d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a4597df-9a9e-4a62-bf9e-b4c186e320d1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal6.png b/assets/resources/i18nSprite2/pt/Normal6.png new file mode 100755 index 0000000..c09dd13 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal6.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal6.png.meta b/assets/resources/i18nSprite2/pt/Normal6.png.meta new file mode 100644 index 0000000..1768598 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dc6b2d54-5bb3-476e-b4da-6b06fffec1a2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dc6b2d54-5bb3-476e-b4da-6b06fffec1a2@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dc6b2d54-5bb3-476e-b4da-6b06fffec1a2", + "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": "dc6b2d54-5bb3-476e-b4da-6b06fffec1a2@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 146, + "height": 43, + "rawWidth": 150, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -73, + -21.5, + 0, + 73, + -21.5, + 0, + -73, + 21.5, + 0, + 73, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 148, + 45, + 2, + 2, + 148, + 2 + ], + "nuv": [ + 0.013333333333333334, + 0.0425531914893617, + 0.9866666666666667, + 0.0425531914893617, + 0.013333333333333334, + 0.9574468085106383, + 0.9866666666666667, + 0.9574468085106383 + ], + "minPos": [ + -73, + -21.5, + 0 + ], + "maxPos": [ + 73, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dc6b2d54-5bb3-476e-b4da-6b06fffec1a2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dc6b2d54-5bb3-476e-b4da-6b06fffec1a2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal7.png b/assets/resources/i18nSprite2/pt/Normal7.png new file mode 100755 index 0000000..ee14a12 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal7.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal7.png.meta b/assets/resources/i18nSprite2/pt/Normal7.png.meta new file mode 100644 index 0000000..c6784c9 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "062c7b0d-dfbd-41a0-ab8d-f394937db760", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "062c7b0d-dfbd-41a0-ab8d-f394937db760@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "062c7b0d-dfbd-41a0-ab8d-f394937db760", + "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": "062c7b0d-dfbd-41a0-ab8d-f394937db760@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 283, + "height": 43, + "rawWidth": 287, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -141.5, + -21.5, + 0, + 141.5, + -21.5, + 0, + -141.5, + 21.5, + 0, + 141.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 285, + 45, + 2, + 2, + 285, + 2 + ], + "nuv": [ + 0.006968641114982578, + 0.0425531914893617, + 0.9930313588850174, + 0.0425531914893617, + 0.006968641114982578, + 0.9574468085106383, + 0.9930313588850174, + 0.9574468085106383 + ], + "minPos": [ + -141.5, + -21.5, + 0 + ], + "maxPos": [ + 141.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "062c7b0d-dfbd-41a0-ab8d-f394937db760@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "062c7b0d-dfbd-41a0-ab8d-f394937db760@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal8.png b/assets/resources/i18nSprite2/pt/Normal8.png new file mode 100755 index 0000000..93ef0c8 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal8.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal8.png.meta b/assets/resources/i18nSprite2/pt/Normal8.png.meta new file mode 100644 index 0000000..24b9cd2 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "89b9307c-756c-4d3f-b5ef-cfafe6855a40", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "89b9307c-756c-4d3f-b5ef-cfafe6855a40@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "89b9307c-756c-4d3f-b5ef-cfafe6855a40", + "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": "89b9307c-756c-4d3f-b5ef-cfafe6855a40@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1010, + "height": 52, + "rawWidth": 1014, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -505, + -26, + 0, + 505, + -26, + 0, + -505, + 26, + 0, + 505, + 26, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 54, + 1012, + 54, + 2, + 2, + 1012, + 2 + ], + "nuv": [ + 0.0019723865877712033, + 0.03571428571428571, + 0.9980276134122288, + 0.03571428571428571, + 0.0019723865877712033, + 0.9642857142857143, + 0.9980276134122288, + 0.9642857142857143 + ], + "minPos": [ + -505, + -26, + 0 + ], + "maxPos": [ + 505, + 26, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "89b9307c-756c-4d3f-b5ef-cfafe6855a40@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "89b9307c-756c-4d3f-b5ef-cfafe6855a40@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Normal9.png b/assets/resources/i18nSprite2/pt/Normal9.png new file mode 100755 index 0000000..ab6ee77 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Normal9.png differ diff --git a/assets/resources/i18nSprite2/pt/Normal9.png.meta b/assets/resources/i18nSprite2/pt/Normal9.png.meta new file mode 100644 index 0000000..9195135 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d8c3e7d1-89c2-493a-ae5b-e5aae84d3235", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8c3e7d1-89c2-493a-ae5b-e5aae84d3235@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8c3e7d1-89c2-493a-ae5b-e5aae84d3235", + "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": "d8c3e7d1-89c2-493a-ae5b-e5aae84d3235@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 588, + "height": 75, + "rawWidth": 588, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -294, + -37.5, + 0, + 294, + -37.5, + 0, + -294, + 37.5, + 0, + 294, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 588, + 75, + 0, + 0, + 588, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -294, + -37.5, + 0 + ], + "maxPos": [ + 294, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8c3e7d1-89c2-493a-ae5b-e5aae84d3235@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8c3e7d1-89c2-493a-ae5b-e5aae84d3235@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Win1.png b/assets/resources/i18nSprite2/pt/Win1.png new file mode 100755 index 0000000..6d4bd67 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Win1.png differ diff --git a/assets/resources/i18nSprite2/pt/Win1.png.meta b/assets/resources/i18nSprite2/pt/Win1.png.meta new file mode 100644 index 0000000..c1147a7 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44e82437-3fa1-4b2e-a9f7-92ae9059a527", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44e82437-3fa1-4b2e-a9f7-92ae9059a527@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44e82437-3fa1-4b2e-a9f7-92ae9059a527", + "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": "44e82437-3fa1-4b2e-a9f7-92ae9059a527@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1001, + "height": 255, + "rawWidth": 1001, + "rawHeight": 255, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -500.5, + -127.5, + 0, + 500.5, + -127.5, + 0, + -500.5, + 127.5, + 0, + 500.5, + 127.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 255, + 1001, + 255, + 0, + 0, + 1001, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -500.5, + -127.5, + 0 + ], + "maxPos": [ + 500.5, + 127.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44e82437-3fa1-4b2e-a9f7-92ae9059a527@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44e82437-3fa1-4b2e-a9f7-92ae9059a527@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Win2.png b/assets/resources/i18nSprite2/pt/Win2.png new file mode 100755 index 0000000..af12799 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Win2.png differ diff --git a/assets/resources/i18nSprite2/pt/Win2.png.meta b/assets/resources/i18nSprite2/pt/Win2.png.meta new file mode 100644 index 0000000..75e294f --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8c9c4ea0-6f3a-420b-ad16-852319d78b28", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8c9c4ea0-6f3a-420b-ad16-852319d78b28@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8c9c4ea0-6f3a-420b-ad16-852319d78b28", + "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": "8c9c4ea0-6f3a-420b-ad16-852319d78b28@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 970, + "height": 280, + "rawWidth": 970, + "rawHeight": 280, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -485, + -140, + 0, + 485, + -140, + 0, + -485, + 140, + 0, + 485, + 140, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 280, + 970, + 280, + 0, + 0, + 970, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -485, + -140, + 0 + ], + "maxPos": [ + 485, + 140, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8c9c4ea0-6f3a-420b-ad16-852319d78b28@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8c9c4ea0-6f3a-420b-ad16-852319d78b28@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/Win3.png b/assets/resources/i18nSprite2/pt/Win3.png new file mode 100755 index 0000000..0286038 Binary files /dev/null and b/assets/resources/i18nSprite2/pt/Win3.png differ diff --git a/assets/resources/i18nSprite2/pt/Win3.png.meta b/assets/resources/i18nSprite2/pt/Win3.png.meta new file mode 100644 index 0000000..c189b57 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8594d40f-8c65-4d2f-9d9c-0bbea0660e91", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8594d40f-8c65-4d2f-9d9c-0bbea0660e91@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8594d40f-8c65-4d2f-9d9c-0bbea0660e91", + "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": "8594d40f-8c65-4d2f-9d9c-0bbea0660e91@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 910, + "height": 436, + "rawWidth": 910, + "rawHeight": 436, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -455, + -218, + 0, + 455, + -218, + 0, + -455, + 218, + 0, + 455, + 218, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 436, + 910, + 436, + 0, + 0, + 910, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -455, + -218, + 0 + ], + "maxPos": [ + 455, + 218, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8594d40f-8c65-4d2f-9d9c-0bbea0660e91@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8594d40f-8c65-4d2f-9d9c-0bbea0660e91@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/logo1.png b/assets/resources/i18nSprite2/pt/logo1.png new file mode 100755 index 0000000..233f8af Binary files /dev/null and b/assets/resources/i18nSprite2/pt/logo1.png differ diff --git a/assets/resources/i18nSprite2/pt/logo1.png.meta b/assets/resources/i18nSprite2/pt/logo1.png.meta new file mode 100644 index 0000000..9598030 --- /dev/null +++ b/assets/resources/i18nSprite2/pt/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c92aee80-7ac1-49c2-90e5-078f0cb542df", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c92aee80-7ac1-49c2-90e5-078f0cb542df@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c92aee80-7ac1-49c2-90e5-078f0cb542df", + "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": "c92aee80-7ac1-49c2-90e5-078f0cb542df@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 945, + "height": 245, + "rawWidth": 945, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -472.5, + -122.5, + 0, + 472.5, + -122.5, + 0, + -472.5, + 122.5, + 0, + 472.5, + 122.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 245, + 945, + 245, + 0, + 0, + 945, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -472.5, + -122.5, + 0 + ], + "maxPos": [ + 472.5, + 122.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c92aee80-7ac1-49c2-90e5-078f0cb542df@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c92aee80-7ac1-49c2-90e5-078f0cb542df@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/pt/zxksctter.png b/assets/resources/i18nSprite2/pt/zxksctter.png new file mode 100755 index 0000000..2c416ef Binary files /dev/null and b/assets/resources/i18nSprite2/pt/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/pt/zxksctter.png.meta b/assets/resources/i18nSprite2/pt/zxksctter.png.meta new file mode 100644 index 0000000..ad345fa --- /dev/null +++ b/assets/resources/i18nSprite2/pt/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f212503e-67fd-4de5-b185-0ff644803923", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f212503e-67fd-4de5-b185-0ff644803923@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f212503e-67fd-4de5-b185-0ff644803923", + "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": "f212503e-67fd-4de5-b185-0ff644803923@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 248, + "height": 98, + "rawWidth": 252, + "rawHeight": 102, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -124, + -49, + 0, + 124, + -49, + 0, + -124, + 49, + 0, + 124, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 100, + 250, + 100, + 2, + 2, + 250, + 2 + ], + "nuv": [ + 0.007936507936507936, + 0.0196078431372549, + 0.9920634920634921, + 0.0196078431372549, + 0.007936507936507936, + 0.9803921568627451, + 0.9920634920634921, + 0.9803921568627451 + ], + "minPos": [ + -124, + -49, + 0 + ], + "maxPos": [ + 124, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f212503e-67fd-4de5-b185-0ff644803923@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f212503e-67fd-4de5-b185-0ff644803923@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro.meta b/assets/resources/i18nSprite2/ro.meta new file mode 100644 index 0000000..1b6f2e6 --- /dev/null +++ b/assets/resources/i18nSprite2/ro.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "1195e11b-e87a-429b-87aa-7ba90becdfb0", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/ro/Buy1.png b/assets/resources/i18nSprite2/ro/Buy1.png new file mode 100755 index 0000000..e603fdb Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Buy1.png differ diff --git a/assets/resources/i18nSprite2/ro/Buy1.png.meta b/assets/resources/i18nSprite2/ro/Buy1.png.meta new file mode 100644 index 0000000..1a28a05 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b5d33fc7-31e2-4a60-a377-8660f51b434b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b5d33fc7-31e2-4a60-a377-8660f51b434b@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b5d33fc7-31e2-4a60-a377-8660f51b434b", + "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": "b5d33fc7-31e2-4a60-a377-8660f51b434b@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 836, + "height": 111, + "rawWidth": 836, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -418, + -55.5, + 0, + 418, + -55.5, + 0, + -418, + 55.5, + 0, + 418, + 55.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 111, + 836, + 111, + 0, + 0, + 836, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -418, + -55.5, + 0 + ], + "maxPos": [ + 418, + 55.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b5d33fc7-31e2-4a60-a377-8660f51b434b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b5d33fc7-31e2-4a60-a377-8660f51b434b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Buy2.png b/assets/resources/i18nSprite2/ro/Buy2.png new file mode 100755 index 0000000..8e60051 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Buy2.png differ diff --git a/assets/resources/i18nSprite2/ro/Buy2.png.meta b/assets/resources/i18nSprite2/ro/Buy2.png.meta new file mode 100644 index 0000000..98e7483 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "441d6f4d-ef4c-46aa-aac7-5df2647c1f0b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "441d6f4d-ef4c-46aa-aac7-5df2647c1f0b@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "441d6f4d-ef4c-46aa-aac7-5df2647c1f0b", + "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": "441d6f4d-ef4c-46aa-aac7-5df2647c1f0b@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 226, + "height": 97, + "rawWidth": 226, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -113, + -48.5, + 0, + 113, + -48.5, + 0, + -113, + 48.5, + 0, + 113, + 48.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 97, + 226, + 97, + 0, + 0, + 226, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -113, + -48.5, + 0 + ], + "maxPos": [ + 113, + 48.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "441d6f4d-ef4c-46aa-aac7-5df2647c1f0b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "441d6f4d-ef4c-46aa-aac7-5df2647c1f0b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Buy4.png b/assets/resources/i18nSprite2/ro/Buy4.png new file mode 100755 index 0000000..2b64ba3 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Buy4.png differ diff --git a/assets/resources/i18nSprite2/ro/Buy4.png.meta b/assets/resources/i18nSprite2/ro/Buy4.png.meta new file mode 100644 index 0000000..e757f57 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d225abf4-d8db-4bca-81a5-4510d14048dc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d225abf4-d8db-4bca-81a5-4510d14048dc@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d225abf4-d8db-4bca-81a5-4510d14048dc", + "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": "d225abf4-d8db-4bca-81a5-4510d14048dc@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 269, + "height": 78, + "rawWidth": 269, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -134.5, + -39, + 0, + 134.5, + -39, + 0, + -134.5, + 39, + 0, + 134.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 269, + 78, + 0, + 0, + 269, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -134.5, + -39, + 0 + ], + "maxPos": [ + 134.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d225abf4-d8db-4bca-81a5-4510d14048dc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d225abf4-d8db-4bca-81a5-4510d14048dc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Buy5.png b/assets/resources/i18nSprite2/ro/Buy5.png new file mode 100755 index 0000000..ad06dd1 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Buy5.png differ diff --git a/assets/resources/i18nSprite2/ro/Buy5.png.meta b/assets/resources/i18nSprite2/ro/Buy5.png.meta new file mode 100644 index 0000000..90ddc1c --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04497ea9-2eb3-4f2c-a682-cb5106885744", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04497ea9-2eb3-4f2c-a682-cb5106885744@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04497ea9-2eb3-4f2c-a682-cb5106885744", + "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": "04497ea9-2eb3-4f2c-a682-cb5106885744@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 158, + "height": 59, + "rawWidth": 162, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -79, + -29.5, + 0, + 79, + -29.5, + 0, + -79, + 29.5, + 0, + 79, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 160, + 61, + 2, + 2, + 160, + 2 + ], + "nuv": [ + 0.012345679012345678, + 0.031746031746031744, + 0.9876543209876543, + 0.031746031746031744, + 0.012345679012345678, + 0.9682539682539683, + 0.9876543209876543, + 0.9682539682539683 + ], + "minPos": [ + -79, + -29.5, + 0 + ], + "maxPos": [ + 79, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04497ea9-2eb3-4f2c-a682-cb5106885744@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04497ea9-2eb3-4f2c-a682-cb5106885744@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Buy8.png b/assets/resources/i18nSprite2/ro/Buy8.png new file mode 100755 index 0000000..6020cc6 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Buy8.png differ diff --git a/assets/resources/i18nSprite2/ro/Buy8.png.meta b/assets/resources/i18nSprite2/ro/Buy8.png.meta new file mode 100644 index 0000000..f569a31 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "84ad43f6-f13a-45ce-9fe7-ac25c0d5a25d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "84ad43f6-f13a-45ce-9fe7-ac25c0d5a25d@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "84ad43f6-f13a-45ce-9fe7-ac25c0d5a25d", + "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": "84ad43f6-f13a-45ce-9fe7-ac25c0d5a25d@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 268, + "height": 77, + "rawWidth": 268, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -134, + -38.5, + 0, + 134, + -38.5, + 0, + -134, + 38.5, + 0, + 134, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 268, + 77, + 0, + 0, + 268, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -134, + -38.5, + 0 + ], + "maxPos": [ + 134, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "84ad43f6-f13a-45ce-9fe7-ac25c0d5a25d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "84ad43f6-f13a-45ce-9fe7-ac25c0d5a25d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FREELoading.png b/assets/resources/i18nSprite2/ro/FREELoading.png new file mode 100755 index 0000000..153b2f6 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/ro/FREELoading.png.meta b/assets/resources/i18nSprite2/ro/FREELoading.png.meta new file mode 100644 index 0000000..ba53c4a --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1785dc12-1fea-4dbc-98d0-0ad9727fde36", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1785dc12-1fea-4dbc-98d0-0ad9727fde36@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1785dc12-1fea-4dbc-98d0-0ad9727fde36", + "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": "1785dc12-1fea-4dbc-98d0-0ad9727fde36@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 982, + "height": 204, + "rawWidth": 982, + "rawHeight": 204, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -491, + -102, + 0, + 491, + -102, + 0, + -491, + 102, + 0, + 491, + 102, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 204, + 982, + 204, + 0, + 0, + 982, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -491, + -102, + 0 + ], + "maxPos": [ + 491, + 102, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1785dc12-1fea-4dbc-98d0-0ad9727fde36@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1785dc12-1fea-4dbc-98d0-0ad9727fde36@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FREELoading1.png b/assets/resources/i18nSprite2/ro/FREELoading1.png new file mode 100644 index 0000000..cd0529c Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/ro/FREELoading1.png.meta b/assets/resources/i18nSprite2/ro/FREELoading1.png.meta new file mode 100644 index 0000000..966d41e --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb6fa144-f03b-4aad-95b2-bd64b1fb2079", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb6fa144-f03b-4aad-95b2-bd64b1fb2079@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb6fa144-f03b-4aad-95b2-bd64b1fb2079", + "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": "cb6fa144-f03b-4aad-95b2-bd64b1fb2079@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 958, + "height": 142, + "rawWidth": 962, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -479, + -71, + 0, + 479, + -71, + 0, + -479, + 71, + 0, + 479, + 71, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 144, + 960, + 144, + 2, + 2, + 960, + 2 + ], + "nuv": [ + 0.002079002079002079, + 0.0136986301369863, + 0.997920997920998, + 0.0136986301369863, + 0.002079002079002079, + 0.9863013698630136, + 0.997920997920998, + 0.9863013698630136 + ], + "minPos": [ + -479, + -71, + 0 + ], + "maxPos": [ + 479, + 71, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb6fa144-f03b-4aad-95b2-bd64b1fb2079@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb6fa144-f03b-4aad-95b2-bd64b1fb2079@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FREELoading2.png b/assets/resources/i18nSprite2/ro/FREELoading2.png new file mode 100755 index 0000000..3ac3772 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/ro/FREELoading2.png.meta b/assets/resources/i18nSprite2/ro/FREELoading2.png.meta new file mode 100644 index 0000000..2bc0d01 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d1ed2943-8028-48cb-8536-9e840230e0ad", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d1ed2943-8028-48cb-8536-9e840230e0ad@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d1ed2943-8028-48cb-8536-9e840230e0ad", + "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": "d1ed2943-8028-48cb-8536-9e840230e0ad@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 310, + "height": 89, + "rawWidth": 310, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -155, + -44.5, + 0, + 155, + -44.5, + 0, + -155, + 44.5, + 0, + 155, + 44.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 89, + 310, + 89, + 0, + 0, + 310, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -155, + -44.5, + 0 + ], + "maxPos": [ + 155, + 44.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d1ed2943-8028-48cb-8536-9e840230e0ad@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d1ed2943-8028-48cb-8536-9e840230e0ad@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FREESPIN2.png b/assets/resources/i18nSprite2/ro/FREESPIN2.png new file mode 100755 index 0000000..d16760a Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/ro/FREESPIN2.png.meta b/assets/resources/i18nSprite2/ro/FREESPIN2.png.meta new file mode 100644 index 0000000..7872c6a --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d5c38106-1669-444f-9d41-4a7c2f49ae17", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d5c38106-1669-444f-9d41-4a7c2f49ae17@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d5c38106-1669-444f-9d41-4a7c2f49ae17", + "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": "d5c38106-1669-444f-9d41-4a7c2f49ae17@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 863, + "height": 75, + "rawWidth": 863, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -431.5, + -37.5, + 0, + 431.5, + -37.5, + 0, + -431.5, + 37.5, + 0, + 431.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 863, + 75, + 0, + 0, + 863, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -431.5, + -37.5, + 0 + ], + "maxPos": [ + 431.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d5c38106-1669-444f-9d41-4a7c2f49ae17@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d5c38106-1669-444f-9d41-4a7c2f49ae17@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FREESPIN4.png b/assets/resources/i18nSprite2/ro/FREESPIN4.png new file mode 100755 index 0000000..6963b1d Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/ro/FREESPIN4.png.meta b/assets/resources/i18nSprite2/ro/FREESPIN4.png.meta new file mode 100644 index 0000000..4dd0ba3 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "80644b98-9f8a-41b2-906a-20eeea1f5443", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "80644b98-9f8a-41b2-906a-20eeea1f5443@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "80644b98-9f8a-41b2-906a-20eeea1f5443", + "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": "80644b98-9f8a-41b2-906a-20eeea1f5443@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 286, + "height": 88, + "rawWidth": 286, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -143, + -44, + 0, + 143, + -44, + 0, + -143, + 44, + 0, + 143, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 286, + 88, + 0, + 0, + 286, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -143, + -44, + 0 + ], + "maxPos": [ + 143, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "80644b98-9f8a-41b2-906a-20eeea1f5443@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "80644b98-9f8a-41b2-906a-20eeea1f5443@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FREESPIN5.png b/assets/resources/i18nSprite2/ro/FREESPIN5.png new file mode 100755 index 0000000..5b02759 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/ro/FREESPIN5.png.meta b/assets/resources/i18nSprite2/ro/FREESPIN5.png.meta new file mode 100644 index 0000000..5d7ea84 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5fe8d5ca-13d1-48cf-8995-61addbb2ffde", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5fe8d5ca-13d1-48cf-8995-61addbb2ffde@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5fe8d5ca-13d1-48cf-8995-61addbb2ffde", + "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": "5fe8d5ca-13d1-48cf-8995-61addbb2ffde@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 988, + "height": 279, + "rawWidth": 988, + "rawHeight": 279, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -494, + -139.5, + 0, + 494, + -139.5, + 0, + -494, + 139.5, + 0, + 494, + 139.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 279, + 988, + 279, + 0, + 0, + 988, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -494, + -139.5, + 0 + ], + "maxPos": [ + 494, + 139.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5fe8d5ca-13d1-48cf-8995-61addbb2ffde@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5fe8d5ca-13d1-48cf-8995-61addbb2ffde@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/FSFS.png b/assets/resources/i18nSprite2/ro/FSFS.png new file mode 100755 index 0000000..868761b Binary files /dev/null and b/assets/resources/i18nSprite2/ro/FSFS.png differ diff --git a/assets/resources/i18nSprite2/ro/FSFS.png.meta b/assets/resources/i18nSprite2/ro/FSFS.png.meta new file mode 100644 index 0000000..25ee1b2 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2047afa0-5d64-45b7-a422-49dccc2bc273", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2047afa0-5d64-45b7-a422-49dccc2bc273@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2047afa0-5d64-45b7-a422-49dccc2bc273", + "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": "2047afa0-5d64-45b7-a422-49dccc2bc273@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 589, + "height": 122, + "rawWidth": 589, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -294.5, + -61, + 0, + 294.5, + -61, + 0, + -294.5, + 61, + 0, + 294.5, + 61, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 122, + 589, + 122, + 0, + 0, + 589, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -294.5, + -61, + 0 + ], + "maxPos": [ + 294.5, + 61, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2047afa0-5d64-45b7-a422-49dccc2bc273@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2047afa0-5d64-45b7-a422-49dccc2bc273@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Free.png b/assets/resources/i18nSprite2/ro/Free.png new file mode 100755 index 0000000..700065d Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Free.png differ diff --git a/assets/resources/i18nSprite2/ro/Free.png.meta b/assets/resources/i18nSprite2/ro/Free.png.meta new file mode 100644 index 0000000..da2e612 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "10954f07-bf78-48f3-8276-d1511967886d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "10954f07-bf78-48f3-8276-d1511967886d@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "10954f07-bf78-48f3-8276-d1511967886d", + "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": "10954f07-bf78-48f3-8276-d1511967886d@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 554, + "height": 164, + "rawWidth": 554, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -277, + -82, + 0, + 277, + -82, + 0, + -277, + 82, + 0, + 277, + 82, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 164, + 554, + 164, + 0, + 0, + 554, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -277, + -82, + 0 + ], + "maxPos": [ + 277, + 82, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "10954f07-bf78-48f3-8276-d1511967886d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "10954f07-bf78-48f3-8276-d1511967886d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Free1.png b/assets/resources/i18nSprite2/ro/Free1.png new file mode 100755 index 0000000..4789e02 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Free1.png differ diff --git a/assets/resources/i18nSprite2/ro/Free1.png.meta b/assets/resources/i18nSprite2/ro/Free1.png.meta new file mode 100644 index 0000000..f04f52a --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "39efa8e4-88d3-4e2b-ae1a-03495da0b35c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "39efa8e4-88d3-4e2b-ae1a-03495da0b35c@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "39efa8e4-88d3-4e2b-ae1a-03495da0b35c", + "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": "39efa8e4-88d3-4e2b-ae1a-03495da0b35c@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 504, + "height": 164, + "rawWidth": 504, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -252, + -82, + 0, + 252, + -82, + 0, + -252, + 82, + 0, + 252, + 82, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 164, + 504, + 164, + 0, + 0, + 504, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -252, + -82, + 0 + ], + "maxPos": [ + 252, + 82, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "39efa8e4-88d3-4e2b-ae1a-03495da0b35c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "39efa8e4-88d3-4e2b-ae1a-03495da0b35c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal1.png b/assets/resources/i18nSprite2/ro/Normal1.png new file mode 100755 index 0000000..11e4f64 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal1.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal1.png.meta b/assets/resources/i18nSprite2/ro/Normal1.png.meta new file mode 100644 index 0000000..60f70b9 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44e4e09b-24e3-4742-835d-155b4bb999b6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44e4e09b-24e3-4742-835d-155b4bb999b6@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44e4e09b-24e3-4742-835d-155b4bb999b6", + "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": "44e4e09b-24e3-4742-835d-155b4bb999b6@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 878, + "height": 53, + "rawWidth": 882, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -439, + -26.5, + 0, + 439, + -26.5, + 0, + -439, + 26.5, + 0, + 439, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 880, + 55, + 2, + 2, + 880, + 2 + ], + "nuv": [ + 0.0022675736961451248, + 0.03508771929824561, + 0.9977324263038548, + 0.03508771929824561, + 0.0022675736961451248, + 0.9649122807017544, + 0.9977324263038548, + 0.9649122807017544 + ], + "minPos": [ + -439, + -26.5, + 0 + ], + "maxPos": [ + 439, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44e4e09b-24e3-4742-835d-155b4bb999b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44e4e09b-24e3-4742-835d-155b4bb999b6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal10.png b/assets/resources/i18nSprite2/ro/Normal10.png new file mode 100755 index 0000000..6ef1d38 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal10.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal10.png.meta b/assets/resources/i18nSprite2/ro/Normal10.png.meta new file mode 100644 index 0000000..7287d9b --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e7ef2133-432e-4e54-8776-3292affdd14e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e7ef2133-432e-4e54-8776-3292affdd14e@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e7ef2133-432e-4e54-8776-3292affdd14e", + "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": "e7ef2133-432e-4e54-8776-3292affdd14e@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 690, + "height": 59, + "rawWidth": 694, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -345, + -29.5, + 0, + 345, + -29.5, + 0, + -345, + 29.5, + 0, + 345, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 692, + 61, + 2, + 2, + 692, + 2 + ], + "nuv": [ + 0.002881844380403458, + 0.031746031746031744, + 0.9971181556195965, + 0.031746031746031744, + 0.002881844380403458, + 0.9682539682539683, + 0.9971181556195965, + 0.9682539682539683 + ], + "minPos": [ + -345, + -29.5, + 0 + ], + "maxPos": [ + 345, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e7ef2133-432e-4e54-8776-3292affdd14e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e7ef2133-432e-4e54-8776-3292affdd14e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal11.png b/assets/resources/i18nSprite2/ro/Normal11.png new file mode 100755 index 0000000..b77c9c2 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal11.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal11.png.meta b/assets/resources/i18nSprite2/ro/Normal11.png.meta new file mode 100644 index 0000000..fcf5eeb --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1e8cc7dd-ded3-44e2-8359-0451f4d64a99", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1e8cc7dd-ded3-44e2-8359-0451f4d64a99@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1e8cc7dd-ded3-44e2-8359-0451f4d64a99", + "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": "1e8cc7dd-ded3-44e2-8359-0451f4d64a99@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 969, + "height": 78, + "rawWidth": 969, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -484.5, + -39, + 0, + 484.5, + -39, + 0, + -484.5, + 39, + 0, + 484.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 969, + 78, + 0, + 0, + 969, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -484.5, + -39, + 0 + ], + "maxPos": [ + 484.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1e8cc7dd-ded3-44e2-8359-0451f4d64a99@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1e8cc7dd-ded3-44e2-8359-0451f4d64a99@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal2.png b/assets/resources/i18nSprite2/ro/Normal2.png new file mode 100755 index 0000000..527dcb3 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal2.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal2.png.meta b/assets/resources/i18nSprite2/ro/Normal2.png.meta new file mode 100644 index 0000000..cd98aad --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4a9b35f0-70c6-45f2-81e2-67e2dbc6384f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4a9b35f0-70c6-45f2-81e2-67e2dbc6384f@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4a9b35f0-70c6-45f2-81e2-67e2dbc6384f", + "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": "4a9b35f0-70c6-45f2-81e2-67e2dbc6384f@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 283, + "height": 53, + "rawWidth": 287, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -141.5, + -26.5, + 0, + 141.5, + -26.5, + 0, + -141.5, + 26.5, + 0, + 141.5, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 285, + 55, + 2, + 2, + 285, + 2 + ], + "nuv": [ + 0.006968641114982578, + 0.03508771929824561, + 0.9930313588850174, + 0.03508771929824561, + 0.006968641114982578, + 0.9649122807017544, + 0.9930313588850174, + 0.9649122807017544 + ], + "minPos": [ + -141.5, + -26.5, + 0 + ], + "maxPos": [ + 141.5, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4a9b35f0-70c6-45f2-81e2-67e2dbc6384f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4a9b35f0-70c6-45f2-81e2-67e2dbc6384f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal3.png b/assets/resources/i18nSprite2/ro/Normal3.png new file mode 100755 index 0000000..0d89c0c Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal3.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal3.png.meta b/assets/resources/i18nSprite2/ro/Normal3.png.meta new file mode 100644 index 0000000..236cff0 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "68fc5761-bfcc-4381-9ab5-e5ad094ef9c8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "68fc5761-bfcc-4381-9ab5-e5ad094ef9c8@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "68fc5761-bfcc-4381-9ab5-e5ad094ef9c8", + "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": "68fc5761-bfcc-4381-9ab5-e5ad094ef9c8@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 507, + "height": 58, + "rawWidth": 511, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -253.5, + -29, + 0, + 253.5, + -29, + 0, + -253.5, + 29, + 0, + 253.5, + 29, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 60, + 509, + 60, + 2, + 2, + 509, + 2 + ], + "nuv": [ + 0.003913894324853229, + 0.03225806451612903, + 0.9960861056751468, + 0.03225806451612903, + 0.003913894324853229, + 0.967741935483871, + 0.9960861056751468, + 0.967741935483871 + ], + "minPos": [ + -253.5, + -29, + 0 + ], + "maxPos": [ + 253.5, + 29, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "68fc5761-bfcc-4381-9ab5-e5ad094ef9c8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "68fc5761-bfcc-4381-9ab5-e5ad094ef9c8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal4.png b/assets/resources/i18nSprite2/ro/Normal4.png new file mode 100755 index 0000000..8530784 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal4.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal4.png.meta b/assets/resources/i18nSprite2/ro/Normal4.png.meta new file mode 100644 index 0000000..77de851 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df669434-4c0c-4ca9-9ff7-dc9711bd1c95", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df669434-4c0c-4ca9-9ff7-dc9711bd1c95@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df669434-4c0c-4ca9-9ff7-dc9711bd1c95", + "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": "df669434-4c0c-4ca9-9ff7-dc9711bd1c95@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 567, + "height": 48, + "rawWidth": 571, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -283.5, + -24, + 0, + 283.5, + -24, + 0, + -283.5, + 24, + 0, + 283.5, + 24, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 50, + 569, + 50, + 2, + 2, + 569, + 2 + ], + "nuv": [ + 0.0035026269702276708, + 0.038461538461538464, + 0.9964973730297724, + 0.038461538461538464, + 0.0035026269702276708, + 0.9615384615384616, + 0.9964973730297724, + 0.9615384615384616 + ], + "minPos": [ + -283.5, + -24, + 0 + ], + "maxPos": [ + 283.5, + 24, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df669434-4c0c-4ca9-9ff7-dc9711bd1c95@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df669434-4c0c-4ca9-9ff7-dc9711bd1c95@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal5.png b/assets/resources/i18nSprite2/ro/Normal5.png new file mode 100755 index 0000000..b498339 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal5.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal5.png.meta b/assets/resources/i18nSprite2/ro/Normal5.png.meta new file mode 100644 index 0000000..4e6d22f --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "07a96d50-53c6-40a1-859e-f26f5ec1b71b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "07a96d50-53c6-40a1-859e-f26f5ec1b71b@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "07a96d50-53c6-40a1-859e-f26f5ec1b71b", + "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": "07a96d50-53c6-40a1-859e-f26f5ec1b71b@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 89, + "height": 28, + "rawWidth": 93, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -44.5, + -14, + 0, + 44.5, + -14, + 0, + -44.5, + 14, + 0, + 44.5, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 91, + 30, + 2, + 2, + 91, + 2 + ], + "nuv": [ + 0.021505376344086023, + 0.0625, + 0.978494623655914, + 0.0625, + 0.021505376344086023, + 0.9375, + 0.978494623655914, + 0.9375 + ], + "minPos": [ + -44.5, + -14, + 0 + ], + "maxPos": [ + 44.5, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "07a96d50-53c6-40a1-859e-f26f5ec1b71b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "07a96d50-53c6-40a1-859e-f26f5ec1b71b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal6.png b/assets/resources/i18nSprite2/ro/Normal6.png new file mode 100755 index 0000000..081688a Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal6.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal6.png.meta b/assets/resources/i18nSprite2/ro/Normal6.png.meta new file mode 100644 index 0000000..7322f4a --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "709cc00d-cfb3-4e12-8734-3201acc04bdf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "709cc00d-cfb3-4e12-8734-3201acc04bdf@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "709cc00d-cfb3-4e12-8734-3201acc04bdf", + "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": "709cc00d-cfb3-4e12-8734-3201acc04bdf@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 150, + "height": 59, + "rawWidth": 154, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -75, + -29.5, + 0, + 75, + -29.5, + 0, + -75, + 29.5, + 0, + 75, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 152, + 61, + 2, + 2, + 152, + 2 + ], + "nuv": [ + 0.012987012987012988, + 0.031746031746031744, + 0.987012987012987, + 0.031746031746031744, + 0.012987012987012988, + 0.9682539682539683, + 0.987012987012987, + 0.9682539682539683 + ], + "minPos": [ + -75, + -29.5, + 0 + ], + "maxPos": [ + 75, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "709cc00d-cfb3-4e12-8734-3201acc04bdf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "709cc00d-cfb3-4e12-8734-3201acc04bdf@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal7.png b/assets/resources/i18nSprite2/ro/Normal7.png new file mode 100755 index 0000000..657dd02 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal7.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal7.png.meta b/assets/resources/i18nSprite2/ro/Normal7.png.meta new file mode 100644 index 0000000..069a952 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f68d2130-3e2e-4a77-bc6c-ce3947b009ee", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f68d2130-3e2e-4a77-bc6c-ce3947b009ee@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f68d2130-3e2e-4a77-bc6c-ce3947b009ee", + "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": "f68d2130-3e2e-4a77-bc6c-ce3947b009ee@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 288, + "height": 59, + "rawWidth": 292, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -144, + -29.5, + 0, + 144, + -29.5, + 0, + -144, + 29.5, + 0, + 144, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 290, + 61, + 2, + 2, + 290, + 2 + ], + "nuv": [ + 0.00684931506849315, + 0.031746031746031744, + 0.9931506849315068, + 0.031746031746031744, + 0.00684931506849315, + 0.9682539682539683, + 0.9931506849315068, + 0.9682539682539683 + ], + "minPos": [ + -144, + -29.5, + 0 + ], + "maxPos": [ + 144, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f68d2130-3e2e-4a77-bc6c-ce3947b009ee@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f68d2130-3e2e-4a77-bc6c-ce3947b009ee@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal8.png b/assets/resources/i18nSprite2/ro/Normal8.png new file mode 100755 index 0000000..83f1578 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal8.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal8.png.meta b/assets/resources/i18nSprite2/ro/Normal8.png.meta new file mode 100644 index 0000000..8d12d8c --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6f143485-4762-4d98-b618-8e9b59dc79fc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6f143485-4762-4d98-b618-8e9b59dc79fc@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6f143485-4762-4d98-b618-8e9b59dc79fc", + "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": "6f143485-4762-4d98-b618-8e9b59dc79fc@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 844, + "height": 56, + "rawWidth": 848, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -422, + -28, + 0, + 422, + -28, + 0, + -422, + 28, + 0, + 422, + 28, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 58, + 846, + 58, + 2, + 2, + 846, + 2 + ], + "nuv": [ + 0.0023584905660377358, + 0.03333333333333333, + 0.9976415094339622, + 0.03333333333333333, + 0.0023584905660377358, + 0.9666666666666667, + 0.9976415094339622, + 0.9666666666666667 + ], + "minPos": [ + -422, + -28, + 0 + ], + "maxPos": [ + 422, + 28, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6f143485-4762-4d98-b618-8e9b59dc79fc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6f143485-4762-4d98-b618-8e9b59dc79fc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Normal9.png b/assets/resources/i18nSprite2/ro/Normal9.png new file mode 100755 index 0000000..b1ae5af Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Normal9.png differ diff --git a/assets/resources/i18nSprite2/ro/Normal9.png.meta b/assets/resources/i18nSprite2/ro/Normal9.png.meta new file mode 100644 index 0000000..0e39217 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3a1e8ffd-30c7-4645-bea8-b6e801ffe0f2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3a1e8ffd-30c7-4645-bea8-b6e801ffe0f2@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3a1e8ffd-30c7-4645-bea8-b6e801ffe0f2", + "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": "3a1e8ffd-30c7-4645-bea8-b6e801ffe0f2@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 680, + "height": 75, + "rawWidth": 680, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -340, + -37.5, + 0, + 340, + -37.5, + 0, + -340, + 37.5, + 0, + 340, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 680, + 75, + 0, + 0, + 680, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -340, + -37.5, + 0 + ], + "maxPos": [ + 340, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3a1e8ffd-30c7-4645-bea8-b6e801ffe0f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3a1e8ffd-30c7-4645-bea8-b6e801ffe0f2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Win1.png b/assets/resources/i18nSprite2/ro/Win1.png new file mode 100755 index 0000000..0b7f444 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Win1.png differ diff --git a/assets/resources/i18nSprite2/ro/Win1.png.meta b/assets/resources/i18nSprite2/ro/Win1.png.meta new file mode 100644 index 0000000..3fb32aa --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fd4826b9-07c3-45f6-96df-dee28525c0fe", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fd4826b9-07c3-45f6-96df-dee28525c0fe@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fd4826b9-07c3-45f6-96df-dee28525c0fe", + "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": "fd4826b9-07c3-45f6-96df-dee28525c0fe@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 952, + "height": 289, + "rawWidth": 952, + "rawHeight": 289, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -476, + -144.5, + 0, + 476, + -144.5, + 0, + -476, + 144.5, + 0, + 476, + 144.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 289, + 952, + 289, + 0, + 0, + 952, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -476, + -144.5, + 0 + ], + "maxPos": [ + 476, + 144.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fd4826b9-07c3-45f6-96df-dee28525c0fe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fd4826b9-07c3-45f6-96df-dee28525c0fe@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Win2.png b/assets/resources/i18nSprite2/ro/Win2.png new file mode 100755 index 0000000..8fc91fc Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Win2.png differ diff --git a/assets/resources/i18nSprite2/ro/Win2.png.meta b/assets/resources/i18nSprite2/ro/Win2.png.meta new file mode 100644 index 0000000..23bd3a8 --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19c16050-e8c7-4d27-8acd-12a52be34396", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19c16050-e8c7-4d27-8acd-12a52be34396@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19c16050-e8c7-4d27-8acd-12a52be34396", + "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": "19c16050-e8c7-4d27-8acd-12a52be34396@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 986, + "height": 298, + "rawWidth": 986, + "rawHeight": 298, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -493, + -149, + 0, + 493, + -149, + 0, + -493, + 149, + 0, + 493, + 149, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 298, + 986, + 298, + 0, + 0, + 986, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -493, + -149, + 0 + ], + "maxPos": [ + 493, + 149, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19c16050-e8c7-4d27-8acd-12a52be34396@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19c16050-e8c7-4d27-8acd-12a52be34396@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/Win3.png b/assets/resources/i18nSprite2/ro/Win3.png new file mode 100755 index 0000000..c86df93 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/Win3.png differ diff --git a/assets/resources/i18nSprite2/ro/Win3.png.meta b/assets/resources/i18nSprite2/ro/Win3.png.meta new file mode 100644 index 0000000..3dcc85f --- /dev/null +++ b/assets/resources/i18nSprite2/ro/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bfe09e99-8150-4259-abf8-c950f3d41512", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bfe09e99-8150-4259-abf8-c950f3d41512@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bfe09e99-8150-4259-abf8-c950f3d41512", + "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": "bfe09e99-8150-4259-abf8-c950f3d41512@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 910, + "height": 480, + "rawWidth": 910, + "rawHeight": 480, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -455, + -240, + 0, + 455, + -240, + 0, + -455, + 240, + 0, + 455, + 240, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 480, + 910, + 480, + 0, + 0, + 910, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -455, + -240, + 0 + ], + "maxPos": [ + 455, + 240, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bfe09e99-8150-4259-abf8-c950f3d41512@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bfe09e99-8150-4259-abf8-c950f3d41512@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/logo1.png b/assets/resources/i18nSprite2/ro/logo1.png new file mode 100755 index 0000000..00b3961 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/logo1.png differ diff --git a/assets/resources/i18nSprite2/ro/logo1.png.meta b/assets/resources/i18nSprite2/ro/logo1.png.meta new file mode 100644 index 0000000..58e8afa --- /dev/null +++ b/assets/resources/i18nSprite2/ro/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f1bc8d60-2f75-434b-84c8-0bd978d9b70a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f1bc8d60-2f75-434b-84c8-0bd978d9b70a@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f1bc8d60-2f75-434b-84c8-0bd978d9b70a", + "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": "f1bc8d60-2f75-434b-84c8-0bd978d9b70a@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 990, + "height": 253, + "rawWidth": 990, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -495, + -126.5, + 0, + 495, + -126.5, + 0, + -495, + 126.5, + 0, + 495, + 126.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 253, + 990, + 253, + 0, + 0, + 990, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -495, + -126.5, + 0 + ], + "maxPos": [ + 495, + 126.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f1bc8d60-2f75-434b-84c8-0bd978d9b70a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f1bc8d60-2f75-434b-84c8-0bd978d9b70a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ro/zxksctter.png b/assets/resources/i18nSprite2/ro/zxksctter.png new file mode 100755 index 0000000..02dd771 Binary files /dev/null and b/assets/resources/i18nSprite2/ro/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/ro/zxksctter.png.meta b/assets/resources/i18nSprite2/ro/zxksctter.png.meta new file mode 100644 index 0000000..cfceb0c --- /dev/null +++ b/assets/resources/i18nSprite2/ro/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "71566319-4177-4dd1-89ac-e8820daac0d0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "71566319-4177-4dd1-89ac-e8820daac0d0@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "71566319-4177-4dd1-89ac-e8820daac0d0", + "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": "71566319-4177-4dd1-89ac-e8820daac0d0@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 262, + "height": 123, + "rawWidth": 266, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -131, + -61.5, + 0, + 131, + -61.5, + 0, + -131, + 61.5, + 0, + 131, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 264, + 125, + 2, + 2, + 264, + 2 + ], + "nuv": [ + 0.007518796992481203, + 0.015748031496062992, + 0.9924812030075187, + 0.015748031496062992, + 0.007518796992481203, + 0.984251968503937, + 0.9924812030075187, + 0.984251968503937 + ], + "minPos": [ + -131, + -61.5, + 0 + ], + "maxPos": [ + 131, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "71566319-4177-4dd1-89ac-e8820daac0d0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "71566319-4177-4dd1-89ac-e8820daac0d0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru.meta b/assets/resources/i18nSprite2/ru.meta new file mode 100644 index 0000000..4036da0 --- /dev/null +++ b/assets/resources/i18nSprite2/ru.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a9e67429-1378-4662-b4a1-5942c83640e7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/ru/Buy1.png b/assets/resources/i18nSprite2/ru/Buy1.png new file mode 100755 index 0000000..8c7000a Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Buy1.png differ diff --git a/assets/resources/i18nSprite2/ru/Buy1.png.meta b/assets/resources/i18nSprite2/ru/Buy1.png.meta new file mode 100644 index 0000000..a278dcd --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "846b1dd3-21f0-4119-b7f9-ea76b0bd0108", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "846b1dd3-21f0-4119-b7f9-ea76b0bd0108@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "846b1dd3-21f0-4119-b7f9-ea76b0bd0108", + "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": "846b1dd3-21f0-4119-b7f9-ea76b0bd0108@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 838, + "height": 178, + "rawWidth": 838, + "rawHeight": 178, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -419, + -89, + 0, + 419, + -89, + 0, + -419, + 89, + 0, + 419, + 89, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 178, + 838, + 178, + 0, + 0, + 838, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -419, + -89, + 0 + ], + "maxPos": [ + 419, + 89, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "846b1dd3-21f0-4119-b7f9-ea76b0bd0108@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "846b1dd3-21f0-4119-b7f9-ea76b0bd0108@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Buy2.png b/assets/resources/i18nSprite2/ru/Buy2.png new file mode 100755 index 0000000..2591a91 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Buy2.png differ diff --git a/assets/resources/i18nSprite2/ru/Buy2.png.meta b/assets/resources/i18nSprite2/ru/Buy2.png.meta new file mode 100644 index 0000000..5bb67a5 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "051e7e3e-9f25-4520-961f-debac5d5a687", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "051e7e3e-9f25-4520-961f-debac5d5a687@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "051e7e3e-9f25-4520-961f-debac5d5a687", + "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": "051e7e3e-9f25-4520-961f-debac5d5a687@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 206, + "height": 98, + "rawWidth": 206, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -103, + -49, + 0, + 103, + -49, + 0, + -103, + 49, + 0, + 103, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 98, + 206, + 98, + 0, + 0, + 206, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -103, + -49, + 0 + ], + "maxPos": [ + 103, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "051e7e3e-9f25-4520-961f-debac5d5a687@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "051e7e3e-9f25-4520-961f-debac5d5a687@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Buy4.png b/assets/resources/i18nSprite2/ru/Buy4.png new file mode 100755 index 0000000..3cd576e Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Buy4.png differ diff --git a/assets/resources/i18nSprite2/ru/Buy4.png.meta b/assets/resources/i18nSprite2/ru/Buy4.png.meta new file mode 100644 index 0000000..3c239a0 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6856aea0-9256-4ced-aa53-a53ccae33547", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6856aea0-9256-4ced-aa53-a53ccae33547@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6856aea0-9256-4ced-aa53-a53ccae33547", + "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": "6856aea0-9256-4ced-aa53-a53ccae33547@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 198, + "height": 69, + "rawWidth": 198, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -99, + -34.5, + 0, + 99, + -34.5, + 0, + -99, + 34.5, + 0, + 99, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 69, + 198, + 69, + 0, + 0, + 198, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -99, + -34.5, + 0 + ], + "maxPos": [ + 99, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6856aea0-9256-4ced-aa53-a53ccae33547@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6856aea0-9256-4ced-aa53-a53ccae33547@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Buy5.png b/assets/resources/i18nSprite2/ru/Buy5.png new file mode 100755 index 0000000..c0fcde4 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Buy5.png differ diff --git a/assets/resources/i18nSprite2/ru/Buy5.png.meta b/assets/resources/i18nSprite2/ru/Buy5.png.meta new file mode 100644 index 0000000..842c509 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7eadef58-8bfd-4b75-bbbe-de117c01b711", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7eadef58-8bfd-4b75-bbbe-de117c01b711@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7eadef58-8bfd-4b75-bbbe-de117c01b711", + "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": "7eadef58-8bfd-4b75-bbbe-de117c01b711@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 332, + "height": 54, + "rawWidth": 336, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -166, + -27, + 0, + 166, + -27, + 0, + -166, + 27, + 0, + 166, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 56, + 334, + 56, + 2, + 2, + 334, + 2 + ], + "nuv": [ + 0.005952380952380952, + 0.034482758620689655, + 0.9940476190476191, + 0.034482758620689655, + 0.005952380952380952, + 0.9655172413793104, + 0.9940476190476191, + 0.9655172413793104 + ], + "minPos": [ + -166, + -27, + 0 + ], + "maxPos": [ + 166, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7eadef58-8bfd-4b75-bbbe-de117c01b711@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7eadef58-8bfd-4b75-bbbe-de117c01b711@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Buy8.png b/assets/resources/i18nSprite2/ru/Buy8.png new file mode 100755 index 0000000..f416502 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Buy8.png differ diff --git a/assets/resources/i18nSprite2/ru/Buy8.png.meta b/assets/resources/i18nSprite2/ru/Buy8.png.meta new file mode 100644 index 0000000..0e95ca6 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e4553233-a688-467a-896c-1aab8e4e8b3b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e4553233-a688-467a-896c-1aab8e4e8b3b@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e4553233-a688-467a-896c-1aab8e4e8b3b", + "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": "e4553233-a688-467a-896c-1aab8e4e8b3b@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 242, + "height": 68, + "rawWidth": 242, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -121, + -34, + 0, + 121, + -34, + 0, + -121, + 34, + 0, + 121, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 68, + 242, + 68, + 0, + 0, + 242, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -121, + -34, + 0 + ], + "maxPos": [ + 121, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e4553233-a688-467a-896c-1aab8e4e8b3b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e4553233-a688-467a-896c-1aab8e4e8b3b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FREELoading.png b/assets/resources/i18nSprite2/ru/FREELoading.png new file mode 100755 index 0000000..c22004f Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/ru/FREELoading.png.meta b/assets/resources/i18nSprite2/ru/FREELoading.png.meta new file mode 100644 index 0000000..1b55299 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8fa3f223-aac3-47ce-b138-e046c2ed7f4f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8fa3f223-aac3-47ce-b138-e046c2ed7f4f@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8fa3f223-aac3-47ce-b138-e046c2ed7f4f", + "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": "8fa3f223-aac3-47ce-b138-e046c2ed7f4f@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 991, + "height": 371, + "rawWidth": 991, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -495.5, + -185.5, + 0, + 495.5, + -185.5, + 0, + -495.5, + 185.5, + 0, + 495.5, + 185.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 371, + 991, + 371, + 0, + 0, + 991, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -495.5, + -185.5, + 0 + ], + "maxPos": [ + 495.5, + 185.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8fa3f223-aac3-47ce-b138-e046c2ed7f4f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8fa3f223-aac3-47ce-b138-e046c2ed7f4f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FREELoading1.png b/assets/resources/i18nSprite2/ru/FREELoading1.png new file mode 100755 index 0000000..5263ed3 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/ru/FREELoading1.png.meta b/assets/resources/i18nSprite2/ru/FREELoading1.png.meta new file mode 100644 index 0000000..639d458 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1b849831-d3a9-43be-9af4-3e2441a04539", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1b849831-d3a9-43be-9af4-3e2441a04539@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1b849831-d3a9-43be-9af4-3e2441a04539", + "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": "1b849831-d3a9-43be-9af4-3e2441a04539@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 932, + "height": 125, + "rawWidth": 936, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -466, + -62.5, + 0, + 466, + -62.5, + 0, + -466, + 62.5, + 0, + 466, + 62.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 127, + 934, + 127, + 2, + 2, + 934, + 2 + ], + "nuv": [ + 0.002136752136752137, + 0.015503875968992248, + 0.9978632478632479, + 0.015503875968992248, + 0.002136752136752137, + 0.9844961240310077, + 0.9978632478632479, + 0.9844961240310077 + ], + "minPos": [ + -466, + -62.5, + 0 + ], + "maxPos": [ + 466, + 62.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1b849831-d3a9-43be-9af4-3e2441a04539@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1b849831-d3a9-43be-9af4-3e2441a04539@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FREELoading2.png b/assets/resources/i18nSprite2/ru/FREELoading2.png new file mode 100755 index 0000000..d10658e Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/ru/FREELoading2.png.meta b/assets/resources/i18nSprite2/ru/FREELoading2.png.meta new file mode 100644 index 0000000..52d3601 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f347dd99-a71b-49fb-9469-ab06053e6981", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f347dd99-a71b-49fb-9469-ab06053e6981@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f347dd99-a71b-49fb-9469-ab06053e6981", + "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": "f347dd99-a71b-49fb-9469-ab06053e6981@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 229, + "height": 78, + "rawWidth": 229, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -114.5, + -39, + 0, + 114.5, + -39, + 0, + -114.5, + 39, + 0, + 114.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 229, + 78, + 0, + 0, + 229, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -114.5, + -39, + 0 + ], + "maxPos": [ + 114.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f347dd99-a71b-49fb-9469-ab06053e6981@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f347dd99-a71b-49fb-9469-ab06053e6981@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FREESPIN2.png b/assets/resources/i18nSprite2/ru/FREESPIN2.png new file mode 100755 index 0000000..0f82e95 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/ru/FREESPIN2.png.meta b/assets/resources/i18nSprite2/ru/FREESPIN2.png.meta new file mode 100644 index 0000000..8ca8970 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "78ce568f-da85-4a30-8803-cbd76b36b242", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "78ce568f-da85-4a30-8803-cbd76b36b242@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "78ce568f-da85-4a30-8803-cbd76b36b242", + "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": "78ce568f-da85-4a30-8803-cbd76b36b242@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1075, + "height": 75, + "rawWidth": 1075, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -537.5, + -37.5, + 0, + 537.5, + -37.5, + 0, + -537.5, + 37.5, + 0, + 537.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 1075, + 75, + 0, + 0, + 1075, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -537.5, + -37.5, + 0 + ], + "maxPos": [ + 537.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "78ce568f-da85-4a30-8803-cbd76b36b242@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "78ce568f-da85-4a30-8803-cbd76b36b242@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FREESPIN4.png b/assets/resources/i18nSprite2/ru/FREESPIN4.png new file mode 100755 index 0000000..69fa3a9 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/ru/FREESPIN4.png.meta b/assets/resources/i18nSprite2/ru/FREESPIN4.png.meta new file mode 100644 index 0000000..3010558 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e6ad1440-cac6-4513-9ba2-3d8961d4e60c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e6ad1440-cac6-4513-9ba2-3d8961d4e60c@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e6ad1440-cac6-4513-9ba2-3d8961d4e60c", + "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": "e6ad1440-cac6-4513-9ba2-3d8961d4e60c@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 368, + "height": 78, + "rawWidth": 368, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -184, + -39, + 0, + 184, + -39, + 0, + -184, + 39, + 0, + 184, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 368, + 78, + 0, + 0, + 368, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -184, + -39, + 0 + ], + "maxPos": [ + 184, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e6ad1440-cac6-4513-9ba2-3d8961d4e60c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e6ad1440-cac6-4513-9ba2-3d8961d4e60c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FREESPIN5.png b/assets/resources/i18nSprite2/ru/FREESPIN5.png new file mode 100755 index 0000000..c198355 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/ru/FREESPIN5.png.meta b/assets/resources/i18nSprite2/ru/FREESPIN5.png.meta new file mode 100644 index 0000000..1403f09 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea5d9273-dfd5-4829-a7df-f485d5e7124b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea5d9273-dfd5-4829-a7df-f485d5e7124b@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea5d9273-dfd5-4829-a7df-f485d5e7124b", + "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": "ea5d9273-dfd5-4829-a7df-f485d5e7124b@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 824, + "height": 467, + "rawWidth": 824, + "rawHeight": 467, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -412, + -233.5, + 0, + 412, + -233.5, + 0, + -412, + 233.5, + 0, + 412, + 233.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 467, + 824, + 467, + 0, + 0, + 824, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -412, + -233.5, + 0 + ], + "maxPos": [ + 412, + 233.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea5d9273-dfd5-4829-a7df-f485d5e7124b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea5d9273-dfd5-4829-a7df-f485d5e7124b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/FSFS.png b/assets/resources/i18nSprite2/ru/FSFS.png new file mode 100755 index 0000000..61a01b8 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/FSFS.png differ diff --git a/assets/resources/i18nSprite2/ru/FSFS.png.meta b/assets/resources/i18nSprite2/ru/FSFS.png.meta new file mode 100644 index 0000000..8075324 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7b2fb2e8-64e3-4c88-9904-98123082d359", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7b2fb2e8-64e3-4c88-9904-98123082d359@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7b2fb2e8-64e3-4c88-9904-98123082d359", + "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": "7b2fb2e8-64e3-4c88-9904-98123082d359@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 595, + "height": 223, + "rawWidth": 595, + "rawHeight": 223, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -297.5, + -111.5, + 0, + 297.5, + -111.5, + 0, + -297.5, + 111.5, + 0, + 297.5, + 111.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 223, + 595, + 223, + 0, + 0, + 595, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -297.5, + -111.5, + 0 + ], + "maxPos": [ + 297.5, + 111.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7b2fb2e8-64e3-4c88-9904-98123082d359@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7b2fb2e8-64e3-4c88-9904-98123082d359@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Free.png b/assets/resources/i18nSprite2/ru/Free.png new file mode 100755 index 0000000..4594f4d Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Free.png differ diff --git a/assets/resources/i18nSprite2/ru/Free.png.meta b/assets/resources/i18nSprite2/ru/Free.png.meta new file mode 100644 index 0000000..3cc705f --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dc2b0e2b-5d50-4595-9ee2-0cd11280b379", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dc2b0e2b-5d50-4595-9ee2-0cd11280b379@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dc2b0e2b-5d50-4595-9ee2-0cd11280b379", + "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": "dc2b0e2b-5d50-4595-9ee2-0cd11280b379@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 510, + "height": 215, + "rawWidth": 510, + "rawHeight": 215, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -255, + -107.5, + 0, + 255, + -107.5, + 0, + -255, + 107.5, + 0, + 255, + 107.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 215, + 510, + 215, + 0, + 0, + 510, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -255, + -107.5, + 0 + ], + "maxPos": [ + 255, + 107.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dc2b0e2b-5d50-4595-9ee2-0cd11280b379@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dc2b0e2b-5d50-4595-9ee2-0cd11280b379@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Free1.png b/assets/resources/i18nSprite2/ru/Free1.png new file mode 100755 index 0000000..e0f9542 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Free1.png differ diff --git a/assets/resources/i18nSprite2/ru/Free1.png.meta b/assets/resources/i18nSprite2/ru/Free1.png.meta new file mode 100644 index 0000000..e2394f7 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dfa650b4-5c09-4adb-8fd4-eb7a05a7dec7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dfa650b4-5c09-4adb-8fd4-eb7a05a7dec7@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dfa650b4-5c09-4adb-8fd4-eb7a05a7dec7", + "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": "dfa650b4-5c09-4adb-8fd4-eb7a05a7dec7@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 486, + "height": 213, + "rawWidth": 486, + "rawHeight": 213, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -243, + -106.5, + 0, + 243, + -106.5, + 0, + -243, + 106.5, + 0, + 243, + 106.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 213, + 486, + 213, + 0, + 0, + 486, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -243, + -106.5, + 0 + ], + "maxPos": [ + 243, + 106.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dfa650b4-5c09-4adb-8fd4-eb7a05a7dec7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dfa650b4-5c09-4adb-8fd4-eb7a05a7dec7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal1.png b/assets/resources/i18nSprite2/ru/Normal1.png new file mode 100755 index 0000000..d9f8ece Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal1.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal1.png.meta b/assets/resources/i18nSprite2/ru/Normal1.png.meta new file mode 100644 index 0000000..caa8678 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "29fed55c-ff4b-4b4a-b024-6b02a64e9eda", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "29fed55c-ff4b-4b4a-b024-6b02a64e9eda@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "29fed55c-ff4b-4b4a-b024-6b02a64e9eda", + "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": "29fed55c-ff4b-4b4a-b024-6b02a64e9eda@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1246, + "height": 53, + "rawWidth": 1250, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -623, + -26.5, + 0, + 623, + -26.5, + 0, + -623, + 26.5, + 0, + 623, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 1248, + 55, + 2, + 2, + 1248, + 2 + ], + "nuv": [ + 0.0016, + 0.03508771929824561, + 0.9984, + 0.03508771929824561, + 0.0016, + 0.9649122807017544, + 0.9984, + 0.9649122807017544 + ], + "minPos": [ + -623, + -26.5, + 0 + ], + "maxPos": [ + 623, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "29fed55c-ff4b-4b4a-b024-6b02a64e9eda@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "29fed55c-ff4b-4b4a-b024-6b02a64e9eda@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal10.png b/assets/resources/i18nSprite2/ru/Normal10.png new file mode 100755 index 0000000..739a479 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal10.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal10.png.meta b/assets/resources/i18nSprite2/ru/Normal10.png.meta new file mode 100644 index 0000000..ca94125 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c6b67c26-1527-48e3-8d51-9a345422b9de", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c6b67c26-1527-48e3-8d51-9a345422b9de@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c6b67c26-1527-48e3-8d51-9a345422b9de", + "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": "c6b67c26-1527-48e3-8d51-9a345422b9de@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 728, + "height": 54, + "rawWidth": 732, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -364, + -27, + 0, + 364, + -27, + 0, + -364, + 27, + 0, + 364, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 56, + 730, + 56, + 2, + 2, + 730, + 2 + ], + "nuv": [ + 0.00273224043715847, + 0.034482758620689655, + 0.9972677595628415, + 0.034482758620689655, + 0.00273224043715847, + 0.9655172413793104, + 0.9972677595628415, + 0.9655172413793104 + ], + "minPos": [ + -364, + -27, + 0 + ], + "maxPos": [ + 364, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c6b67c26-1527-48e3-8d51-9a345422b9de@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c6b67c26-1527-48e3-8d51-9a345422b9de@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal11.png b/assets/resources/i18nSprite2/ru/Normal11.png new file mode 100755 index 0000000..f9275a8 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal11.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal11.png.meta b/assets/resources/i18nSprite2/ru/Normal11.png.meta new file mode 100644 index 0000000..8e45ae0 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "76115851-7803-44eb-96ba-4467a7a6fde6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "76115851-7803-44eb-96ba-4467a7a6fde6@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "76115851-7803-44eb-96ba-4467a7a6fde6", + "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": "76115851-7803-44eb-96ba-4467a7a6fde6@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1011, + "height": 78, + "rawWidth": 1011, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -505.5, + -39, + 0, + 505.5, + -39, + 0, + -505.5, + 39, + 0, + 505.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 1011, + 78, + 0, + 0, + 1011, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -505.5, + -39, + 0 + ], + "maxPos": [ + 505.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "76115851-7803-44eb-96ba-4467a7a6fde6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "76115851-7803-44eb-96ba-4467a7a6fde6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal2.png b/assets/resources/i18nSprite2/ru/Normal2.png new file mode 100755 index 0000000..ce1f064 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal2.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal2.png.meta b/assets/resources/i18nSprite2/ru/Normal2.png.meta new file mode 100644 index 0000000..88bc042 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ff7aad27-a79e-4b0b-9351-56ca467a6046", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ff7aad27-a79e-4b0b-9351-56ca467a6046@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ff7aad27-a79e-4b0b-9351-56ca467a6046", + "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": "ff7aad27-a79e-4b0b-9351-56ca467a6046@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 166, + "height": 48, + "rawWidth": 170, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -83, + -24, + 0, + 83, + -24, + 0, + -83, + 24, + 0, + 83, + 24, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 50, + 168, + 50, + 2, + 2, + 168, + 2 + ], + "nuv": [ + 0.011764705882352941, + 0.038461538461538464, + 0.9882352941176471, + 0.038461538461538464, + 0.011764705882352941, + 0.9615384615384616, + 0.9882352941176471, + 0.9615384615384616 + ], + "minPos": [ + -83, + -24, + 0 + ], + "maxPos": [ + 83, + 24, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ff7aad27-a79e-4b0b-9351-56ca467a6046@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ff7aad27-a79e-4b0b-9351-56ca467a6046@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal3.png b/assets/resources/i18nSprite2/ru/Normal3.png new file mode 100755 index 0000000..c7a73d6 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal3.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal3.png.meta b/assets/resources/i18nSprite2/ru/Normal3.png.meta new file mode 100644 index 0000000..41e3606 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8a6b2dda-a318-4f21-af79-17e72f1da1ee", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8a6b2dda-a318-4f21-af79-17e72f1da1ee@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8a6b2dda-a318-4f21-af79-17e72f1da1ee", + "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": "8a6b2dda-a318-4f21-af79-17e72f1da1ee@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 408, + "height": 54, + "rawWidth": 412, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -204, + -27, + 0, + 204, + -27, + 0, + -204, + 27, + 0, + 204, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 56, + 410, + 56, + 2, + 2, + 410, + 2 + ], + "nuv": [ + 0.0048543689320388345, + 0.034482758620689655, + 0.9951456310679612, + 0.034482758620689655, + 0.0048543689320388345, + 0.9655172413793104, + 0.9951456310679612, + 0.9655172413793104 + ], + "minPos": [ + -204, + -27, + 0 + ], + "maxPos": [ + 204, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8a6b2dda-a318-4f21-af79-17e72f1da1ee@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8a6b2dda-a318-4f21-af79-17e72f1da1ee@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal4.png b/assets/resources/i18nSprite2/ru/Normal4.png new file mode 100755 index 0000000..fc6b45d Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal4.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal4.png.meta b/assets/resources/i18nSprite2/ru/Normal4.png.meta new file mode 100644 index 0000000..32cdc45 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "59ddece6-4ca2-4a4a-8546-296d3deba404", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "59ddece6-4ca2-4a4a-8546-296d3deba404@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "59ddece6-4ca2-4a4a-8546-296d3deba404", + "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": "59ddece6-4ca2-4a4a-8546-296d3deba404@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 661, + "height": 40, + "rawWidth": 665, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -330.5, + -20, + 0, + 330.5, + -20, + 0, + -330.5, + 20, + 0, + 330.5, + 20, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 42, + 663, + 42, + 2, + 2, + 663, + 2 + ], + "nuv": [ + 0.0030075187969924814, + 0.045454545454545456, + 0.9969924812030075, + 0.045454545454545456, + 0.0030075187969924814, + 0.9545454545454546, + 0.9969924812030075, + 0.9545454545454546 + ], + "minPos": [ + -330.5, + -20, + 0 + ], + "maxPos": [ + 330.5, + 20, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "59ddece6-4ca2-4a4a-8546-296d3deba404@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "59ddece6-4ca2-4a4a-8546-296d3deba404@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal5.png b/assets/resources/i18nSprite2/ru/Normal5.png new file mode 100755 index 0000000..7ef0b87 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal5.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal5.png.meta b/assets/resources/i18nSprite2/ru/Normal5.png.meta new file mode 100644 index 0000000..5ba0a8d --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5f3dc40f-0492-4bf6-810b-685f79009aa0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5f3dc40f-0492-4bf6-810b-685f79009aa0@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5f3dc40f-0492-4bf6-810b-685f79009aa0", + "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": "5f3dc40f-0492-4bf6-810b-685f79009aa0@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 103, + "height": 26, + "rawWidth": 107, + "rawHeight": 30, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -51.5, + -13, + 0, + 51.5, + -13, + 0, + -51.5, + 13, + 0, + 51.5, + 13, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 28, + 105, + 28, + 2, + 2, + 105, + 2 + ], + "nuv": [ + 0.018691588785046728, + 0.06666666666666667, + 0.9813084112149533, + 0.06666666666666667, + 0.018691588785046728, + 0.9333333333333333, + 0.9813084112149533, + 0.9333333333333333 + ], + "minPos": [ + -51.5, + -13, + 0 + ], + "maxPos": [ + 51.5, + 13, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5f3dc40f-0492-4bf6-810b-685f79009aa0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5f3dc40f-0492-4bf6-810b-685f79009aa0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal6.png b/assets/resources/i18nSprite2/ru/Normal6.png new file mode 100755 index 0000000..779a70f Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal6.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal6.png.meta b/assets/resources/i18nSprite2/ru/Normal6.png.meta new file mode 100644 index 0000000..e9fb45d --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ec3a7b5c-df14-465e-86f5-588f32e10b28", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ec3a7b5c-df14-465e-86f5-588f32e10b28@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ec3a7b5c-df14-465e-86f5-588f32e10b28", + "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": "ec3a7b5c-df14-465e-86f5-588f32e10b28@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 230, + "height": 40, + "rawWidth": 234, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -115, + -20, + 0, + 115, + -20, + 0, + -115, + 20, + 0, + 115, + 20, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 42, + 232, + 42, + 2, + 2, + 232, + 2 + ], + "nuv": [ + 0.008547008547008548, + 0.045454545454545456, + 0.9914529914529915, + 0.045454545454545456, + 0.008547008547008548, + 0.9545454545454546, + 0.9914529914529915, + 0.9545454545454546 + ], + "minPos": [ + -115, + -20, + 0 + ], + "maxPos": [ + 115, + 20, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ec3a7b5c-df14-465e-86f5-588f32e10b28@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ec3a7b5c-df14-465e-86f5-588f32e10b28@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal7.png b/assets/resources/i18nSprite2/ru/Normal7.png new file mode 100755 index 0000000..1209fe6 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal7.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal7.png.meta b/assets/resources/i18nSprite2/ru/Normal7.png.meta new file mode 100644 index 0000000..af97546 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9b279730-be97-4f79-b21f-053c29dd3f32", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9b279730-be97-4f79-b21f-053c29dd3f32@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9b279730-be97-4f79-b21f-053c29dd3f32", + "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": "9b279730-be97-4f79-b21f-053c29dd3f32@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 415, + "height": 54, + "rawWidth": 419, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -207.5, + -27, + 0, + 207.5, + -27, + 0, + -207.5, + 27, + 0, + 207.5, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 56, + 417, + 56, + 2, + 2, + 417, + 2 + ], + "nuv": [ + 0.00477326968973747, + 0.034482758620689655, + 0.9952267303102625, + 0.034482758620689655, + 0.00477326968973747, + 0.9655172413793104, + 0.9952267303102625, + 0.9655172413793104 + ], + "minPos": [ + -207.5, + -27, + 0 + ], + "maxPos": [ + 207.5, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9b279730-be97-4f79-b21f-053c29dd3f32@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9b279730-be97-4f79-b21f-053c29dd3f32@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal8.png b/assets/resources/i18nSprite2/ru/Normal8.png new file mode 100755 index 0000000..9d1fe95 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal8.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal8.png.meta b/assets/resources/i18nSprite2/ru/Normal8.png.meta new file mode 100644 index 0000000..7e20a9a --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b8005889-7720-4565-b3c2-6bb174895560", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b8005889-7720-4565-b3c2-6bb174895560@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b8005889-7720-4565-b3c2-6bb174895560", + "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": "b8005889-7720-4565-b3c2-6bb174895560@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1631, + "height": 41, + "rawWidth": 1635, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -815.5, + -20.5, + 0, + 815.5, + -20.5, + 0, + -815.5, + 20.5, + 0, + 815.5, + 20.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 43, + 1633, + 43, + 2, + 2, + 1633, + 2 + ], + "nuv": [ + 0.0012232415902140672, + 0.044444444444444446, + 0.998776758409786, + 0.044444444444444446, + 0.0012232415902140672, + 0.9555555555555556, + 0.998776758409786, + 0.9555555555555556 + ], + "minPos": [ + -815.5, + -20.5, + 0 + ], + "maxPos": [ + 815.5, + 20.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b8005889-7720-4565-b3c2-6bb174895560@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b8005889-7720-4565-b3c2-6bb174895560@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Normal9.png b/assets/resources/i18nSprite2/ru/Normal9.png new file mode 100755 index 0000000..1e1c231 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Normal9.png differ diff --git a/assets/resources/i18nSprite2/ru/Normal9.png.meta b/assets/resources/i18nSprite2/ru/Normal9.png.meta new file mode 100644 index 0000000..762e382 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aa583e5c-8ea6-4c4f-b02f-777d3de5fcd9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aa583e5c-8ea6-4c4f-b02f-777d3de5fcd9@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aa583e5c-8ea6-4c4f-b02f-777d3de5fcd9", + "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": "aa583e5c-8ea6-4c4f-b02f-777d3de5fcd9@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1017, + "height": 75, + "rawWidth": 1017, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508.5, + -37.5, + 0, + 508.5, + -37.5, + 0, + -508.5, + 37.5, + 0, + 508.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 1017, + 75, + 0, + 0, + 1017, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508.5, + -37.5, + 0 + ], + "maxPos": [ + 508.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa583e5c-8ea6-4c4f-b02f-777d3de5fcd9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aa583e5c-8ea6-4c4f-b02f-777d3de5fcd9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Win1.png b/assets/resources/i18nSprite2/ru/Win1.png new file mode 100755 index 0000000..8fcd402 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Win1.png differ diff --git a/assets/resources/i18nSprite2/ru/Win1.png.meta b/assets/resources/i18nSprite2/ru/Win1.png.meta new file mode 100644 index 0000000..3fc645e --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1f333a59-753a-4e91-8953-1ccd65f25e22", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1f333a59-753a-4e91-8953-1ccd65f25e22@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1f333a59-753a-4e91-8953-1ccd65f25e22", + "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": "1f333a59-753a-4e91-8953-1ccd65f25e22@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 901, + "height": 449, + "rawWidth": 901, + "rawHeight": 449, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -450.5, + -224.5, + 0, + 450.5, + -224.5, + 0, + -450.5, + 224.5, + 0, + 450.5, + 224.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 449, + 901, + 449, + 0, + 0, + 901, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -450.5, + -224.5, + 0 + ], + "maxPos": [ + 450.5, + 224.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1f333a59-753a-4e91-8953-1ccd65f25e22@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1f333a59-753a-4e91-8953-1ccd65f25e22@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Win2.png b/assets/resources/i18nSprite2/ru/Win2.png new file mode 100755 index 0000000..c706f30 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Win2.png differ diff --git a/assets/resources/i18nSprite2/ru/Win2.png.meta b/assets/resources/i18nSprite2/ru/Win2.png.meta new file mode 100644 index 0000000..ebd93b9 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f7f51c31-dd38-4479-ae9d-96ff2a4bbdf2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f7f51c31-dd38-4479-ae9d-96ff2a4bbdf2@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f7f51c31-dd38-4479-ae9d-96ff2a4bbdf2", + "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": "f7f51c31-dd38-4479-ae9d-96ff2a4bbdf2@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 847, + "height": 434, + "rawWidth": 847, + "rawHeight": 434, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -423.5, + -217, + 0, + 423.5, + -217, + 0, + -423.5, + 217, + 0, + 423.5, + 217, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 434, + 847, + 434, + 0, + 0, + 847, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -423.5, + -217, + 0 + ], + "maxPos": [ + 423.5, + 217, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f7f51c31-dd38-4479-ae9d-96ff2a4bbdf2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f7f51c31-dd38-4479-ae9d-96ff2a4bbdf2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/Win3.png b/assets/resources/i18nSprite2/ru/Win3.png new file mode 100755 index 0000000..b856f39 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/Win3.png differ diff --git a/assets/resources/i18nSprite2/ru/Win3.png.meta b/assets/resources/i18nSprite2/ru/Win3.png.meta new file mode 100644 index 0000000..03a79b5 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b9588cd3-6c40-4fdc-9a58-0505ce56c1d3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b9588cd3-6c40-4fdc-9a58-0505ce56c1d3@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b9588cd3-6c40-4fdc-9a58-0505ce56c1d3", + "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": "b9588cd3-6c40-4fdc-9a58-0505ce56c1d3@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1036, + "height": 464, + "rawWidth": 1036, + "rawHeight": 464, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -518, + -232, + 0, + 518, + -232, + 0, + -518, + 232, + 0, + 518, + 232, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 464, + 1036, + 464, + 0, + 0, + 1036, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -518, + -232, + 0 + ], + "maxPos": [ + 518, + 232, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b9588cd3-6c40-4fdc-9a58-0505ce56c1d3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b9588cd3-6c40-4fdc-9a58-0505ce56c1d3@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/logo1.png b/assets/resources/i18nSprite2/ru/logo1.png new file mode 100755 index 0000000..5190901 Binary files /dev/null and b/assets/resources/i18nSprite2/ru/logo1.png differ diff --git a/assets/resources/i18nSprite2/ru/logo1.png.meta b/assets/resources/i18nSprite2/ru/logo1.png.meta new file mode 100644 index 0000000..2f50b31 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4173a9af-d721-4e49-9845-b35a3a4f7f9c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4173a9af-d721-4e49-9845-b35a3a4f7f9c@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4173a9af-d721-4e49-9845-b35a3a4f7f9c", + "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": "4173a9af-d721-4e49-9845-b35a3a4f7f9c@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1019, + "height": 292, + "rawWidth": 1019, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509.5, + -146, + 0, + 509.5, + -146, + 0, + -509.5, + 146, + 0, + 509.5, + 146, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 292, + 1019, + 292, + 0, + 0, + 1019, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509.5, + -146, + 0 + ], + "maxPos": [ + 509.5, + 146, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4173a9af-d721-4e49-9845-b35a3a4f7f9c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4173a9af-d721-4e49-9845-b35a3a4f7f9c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/ru/zxksctter.png b/assets/resources/i18nSprite2/ru/zxksctter.png new file mode 100755 index 0000000..60a234a Binary files /dev/null and b/assets/resources/i18nSprite2/ru/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/ru/zxksctter.png.meta b/assets/resources/i18nSprite2/ru/zxksctter.png.meta new file mode 100644 index 0000000..10264e7 --- /dev/null +++ b/assets/resources/i18nSprite2/ru/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "46bf82c0-7dbf-4729-b8f7-7979b1e09c39", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "46bf82c0-7dbf-4729-b8f7-7979b1e09c39@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "46bf82c0-7dbf-4729-b8f7-7979b1e09c39", + "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": "46bf82c0-7dbf-4729-b8f7-7979b1e09c39@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 264, + "height": 144, + "rawWidth": 268, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -132, + -72, + 0, + 132, + -72, + 0, + -132, + 72, + 0, + 132, + 72, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 146, + 266, + 146, + 2, + 2, + 266, + 2 + ], + "nuv": [ + 0.007462686567164179, + 0.013513513513513514, + 0.9925373134328358, + 0.013513513513513514, + 0.007462686567164179, + 0.9864864864864865, + 0.9925373134328358, + 0.9864864864864865 + ], + "minPos": [ + -132, + -72, + 0 + ], + "maxPos": [ + 132, + 72, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "46bf82c0-7dbf-4729-b8f7-7979b1e09c39@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "46bf82c0-7dbf-4729-b8f7-7979b1e09c39@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv.meta b/assets/resources/i18nSprite2/sv.meta new file mode 100644 index 0000000..ccad461 --- /dev/null +++ b/assets/resources/i18nSprite2/sv.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "39b49927-9e4b-4148-9e13-8e1927bc7663", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/sv/Buy1.png b/assets/resources/i18nSprite2/sv/Buy1.png new file mode 100755 index 0000000..5773619 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Buy1.png differ diff --git a/assets/resources/i18nSprite2/sv/Buy1.png.meta b/assets/resources/i18nSprite2/sv/Buy1.png.meta new file mode 100644 index 0000000..08cbe94 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9f77cff-17b8-4064-860b-2ca17abfe124", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9f77cff-17b8-4064-860b-2ca17abfe124@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9f77cff-17b8-4064-860b-2ca17abfe124", + "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": "d9f77cff-17b8-4064-860b-2ca17abfe124@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 853, + "height": 174, + "rawWidth": 853, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -426.5, + -87, + 0, + 426.5, + -87, + 0, + -426.5, + 87, + 0, + 426.5, + 87, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 174, + 853, + 174, + 0, + 0, + 853, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -426.5, + -87, + 0 + ], + "maxPos": [ + 426.5, + 87, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9f77cff-17b8-4064-860b-2ca17abfe124@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9f77cff-17b8-4064-860b-2ca17abfe124@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Buy2.png b/assets/resources/i18nSprite2/sv/Buy2.png new file mode 100755 index 0000000..402192b Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Buy2.png differ diff --git a/assets/resources/i18nSprite2/sv/Buy2.png.meta b/assets/resources/i18nSprite2/sv/Buy2.png.meta new file mode 100644 index 0000000..302cb0e --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37815ad4-3d8a-4f33-9fb2-a747b4594007", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37815ad4-3d8a-4f33-9fb2-a747b4594007@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37815ad4-3d8a-4f33-9fb2-a747b4594007", + "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": "37815ad4-3d8a-4f33-9fb2-a747b4594007@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 173, + "height": 98, + "rawWidth": 173, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -86.5, + -49, + 0, + 86.5, + -49, + 0, + -86.5, + 49, + 0, + 86.5, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 98, + 173, + 98, + 0, + 0, + 173, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -86.5, + -49, + 0 + ], + "maxPos": [ + 86.5, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37815ad4-3d8a-4f33-9fb2-a747b4594007@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37815ad4-3d8a-4f33-9fb2-a747b4594007@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Buy4.png b/assets/resources/i18nSprite2/sv/Buy4.png new file mode 100755 index 0000000..c973216 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Buy4.png differ diff --git a/assets/resources/i18nSprite2/sv/Buy4.png.meta b/assets/resources/i18nSprite2/sv/Buy4.png.meta new file mode 100644 index 0000000..dcfc77d --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9d4a5105-a617-4ffe-9487-04f1979f504c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9d4a5105-a617-4ffe-9487-04f1979f504c@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9d4a5105-a617-4ffe-9487-04f1979f504c", + "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": "9d4a5105-a617-4ffe-9487-04f1979f504c@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 81, + "rawWidth": 224, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -40.5, + 0, + 112, + -40.5, + 0, + -112, + 40.5, + 0, + 112, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 224, + 81, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -40.5, + 0 + ], + "maxPos": [ + 112, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9d4a5105-a617-4ffe-9487-04f1979f504c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9d4a5105-a617-4ffe-9487-04f1979f504c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Buy5.png b/assets/resources/i18nSprite2/sv/Buy5.png new file mode 100755 index 0000000..500b6e4 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Buy5.png differ diff --git a/assets/resources/i18nSprite2/sv/Buy5.png.meta b/assets/resources/i18nSprite2/sv/Buy5.png.meta new file mode 100644 index 0000000..4e99919 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3c834fd8-9c17-4f82-b263-639ff23d5572", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3c834fd8-9c17-4f82-b263-639ff23d5572@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3c834fd8-9c17-4f82-b263-639ff23d5572", + "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": "3c834fd8-9c17-4f82-b263-639ff23d5572@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 289, + "height": 72, + "rawWidth": 293, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -144.5, + -36, + 0, + 144.5, + -36, + 0, + -144.5, + 36, + 0, + 144.5, + 36, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 74, + 291, + 74, + 2, + 2, + 291, + 2 + ], + "nuv": [ + 0.006825938566552901, + 0.02631578947368421, + 0.9931740614334471, + 0.02631578947368421, + 0.006825938566552901, + 0.9736842105263158, + 0.9931740614334471, + 0.9736842105263158 + ], + "minPos": [ + -144.5, + -36, + 0 + ], + "maxPos": [ + 144.5, + 36, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3c834fd8-9c17-4f82-b263-639ff23d5572@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3c834fd8-9c17-4f82-b263-639ff23d5572@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Buy8.png b/assets/resources/i18nSprite2/sv/Buy8.png new file mode 100755 index 0000000..12b6eb9 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Buy8.png differ diff --git a/assets/resources/i18nSprite2/sv/Buy8.png.meta b/assets/resources/i18nSprite2/sv/Buy8.png.meta new file mode 100644 index 0000000..998a731 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2c026aa4-4f62-4149-b356-ffbcd6e00550", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2c026aa4-4f62-4149-b356-ffbcd6e00550@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2c026aa4-4f62-4149-b356-ffbcd6e00550", + "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": "2c026aa4-4f62-4149-b356-ffbcd6e00550@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 266, + "height": 87, + "rawWidth": 266, + "rawHeight": 87, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -133, + -43.5, + 0, + 133, + -43.5, + 0, + -133, + 43.5, + 0, + 133, + 43.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 87, + 266, + 87, + 0, + 0, + 266, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -133, + -43.5, + 0 + ], + "maxPos": [ + 133, + 43.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2c026aa4-4f62-4149-b356-ffbcd6e00550@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2c026aa4-4f62-4149-b356-ffbcd6e00550@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FREELoading.png b/assets/resources/i18nSprite2/sv/FREELoading.png new file mode 100755 index 0000000..1f889c1 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/sv/FREELoading.png.meta b/assets/resources/i18nSprite2/sv/FREELoading.png.meta new file mode 100644 index 0000000..dfcc8be --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1bcf62f1-9566-466b-86e7-5bd6a3259ece", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1bcf62f1-9566-466b-86e7-5bd6a3259ece@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1bcf62f1-9566-466b-86e7-5bd6a3259ece", + "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": "1bcf62f1-9566-466b-86e7-5bd6a3259ece@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1005, + "height": 237, + "rawWidth": 1005, + "rawHeight": 237, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -502.5, + -118.5, + 0, + 502.5, + -118.5, + 0, + -502.5, + 118.5, + 0, + 502.5, + 118.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 237, + 1005, + 237, + 0, + 0, + 1005, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -502.5, + -118.5, + 0 + ], + "maxPos": [ + 502.5, + 118.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1bcf62f1-9566-466b-86e7-5bd6a3259ece@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1bcf62f1-9566-466b-86e7-5bd6a3259ece@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FREELoading1.png b/assets/resources/i18nSprite2/sv/FREELoading1.png new file mode 100755 index 0000000..ad5ed4a Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/sv/FREELoading1.png.meta b/assets/resources/i18nSprite2/sv/FREELoading1.png.meta new file mode 100644 index 0000000..b968314 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5e05762f-e5ba-4df0-aa84-8f76440e9e1d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5e05762f-e5ba-4df0-aa84-8f76440e9e1d@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5e05762f-e5ba-4df0-aa84-8f76440e9e1d", + "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": "5e05762f-e5ba-4df0-aa84-8f76440e9e1d@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 918, + "height": 127, + "rawWidth": 922, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -459, + -63.5, + 0, + 459, + -63.5, + 0, + -459, + 63.5, + 0, + 459, + 63.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 129, + 920, + 129, + 2, + 2, + 920, + 2 + ], + "nuv": [ + 0.0021691973969631237, + 0.015267175572519083, + 0.9978308026030369, + 0.015267175572519083, + 0.0021691973969631237, + 0.9847328244274809, + 0.9978308026030369, + 0.9847328244274809 + ], + "minPos": [ + -459, + -63.5, + 0 + ], + "maxPos": [ + 459, + 63.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5e05762f-e5ba-4df0-aa84-8f76440e9e1d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5e05762f-e5ba-4df0-aa84-8f76440e9e1d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FREELoading2.png b/assets/resources/i18nSprite2/sv/FREELoading2.png new file mode 100755 index 0000000..f9bb7a6 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/sv/FREELoading2.png.meta b/assets/resources/i18nSprite2/sv/FREELoading2.png.meta new file mode 100644 index 0000000..e5b96fe --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9513a9f8-9a54-41fd-b0c5-3540e4a3358b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9513a9f8-9a54-41fd-b0c5-3540e4a3358b@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9513a9f8-9a54-41fd-b0c5-3540e4a3358b", + "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": "9513a9f8-9a54-41fd-b0c5-3540e4a3358b@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 81, + "rawWidth": 224, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -40.5, + 0, + 112, + -40.5, + 0, + -112, + 40.5, + 0, + 112, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 224, + 81, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -40.5, + 0 + ], + "maxPos": [ + 112, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9513a9f8-9a54-41fd-b0c5-3540e4a3358b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9513a9f8-9a54-41fd-b0c5-3540e4a3358b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FREESPIN2.png b/assets/resources/i18nSprite2/sv/FREESPIN2.png new file mode 100755 index 0000000..8554cc8 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/sv/FREESPIN2.png.meta b/assets/resources/i18nSprite2/sv/FREESPIN2.png.meta new file mode 100644 index 0000000..df667b2 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2bf58fa7-0c0a-4360-b797-ecd1ccb37058", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2bf58fa7-0c0a-4360-b797-ecd1ccb37058@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2bf58fa7-0c0a-4360-b797-ecd1ccb37058", + "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": "2bf58fa7-0c0a-4360-b797-ecd1ccb37058@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 683, + "height": 75, + "rawWidth": 683, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -341.5, + -37.5, + 0, + 341.5, + -37.5, + 0, + -341.5, + 37.5, + 0, + 341.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 683, + 75, + 0, + 0, + 683, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -341.5, + -37.5, + 0 + ], + "maxPos": [ + 341.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2bf58fa7-0c0a-4360-b797-ecd1ccb37058@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2bf58fa7-0c0a-4360-b797-ecd1ccb37058@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FREESPIN4.png b/assets/resources/i18nSprite2/sv/FREESPIN4.png new file mode 100755 index 0000000..6bec028 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/sv/FREESPIN4.png.meta b/assets/resources/i18nSprite2/sv/FREESPIN4.png.meta new file mode 100644 index 0000000..264e7c5 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ca019eec-3020-4da7-9ec2-e7012e7aca9f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ca019eec-3020-4da7-9ec2-e7012e7aca9f@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ca019eec-3020-4da7-9ec2-e7012e7aca9f", + "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": "ca019eec-3020-4da7-9ec2-e7012e7aca9f@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 219, + "height": 77, + "rawWidth": 219, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -109.5, + -38.5, + 0, + 109.5, + -38.5, + 0, + -109.5, + 38.5, + 0, + 109.5, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 219, + 77, + 0, + 0, + 219, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -109.5, + -38.5, + 0 + ], + "maxPos": [ + 109.5, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ca019eec-3020-4da7-9ec2-e7012e7aca9f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ca019eec-3020-4da7-9ec2-e7012e7aca9f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FREESPIN5.png b/assets/resources/i18nSprite2/sv/FREESPIN5.png new file mode 100755 index 0000000..d0f65cb Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/sv/FREESPIN5.png.meta b/assets/resources/i18nSprite2/sv/FREESPIN5.png.meta new file mode 100644 index 0000000..aab255e --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "feaaeaee-d2e6-4505-9657-67b8e69fed40", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "feaaeaee-d2e6-4505-9657-67b8e69fed40@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "feaaeaee-d2e6-4505-9657-67b8e69fed40", + "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": "feaaeaee-d2e6-4505-9657-67b8e69fed40@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1011, + "height": 273, + "rawWidth": 1011, + "rawHeight": 273, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -505.5, + -136.5, + 0, + 505.5, + -136.5, + 0, + -505.5, + 136.5, + 0, + 505.5, + 136.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 273, + 1011, + 273, + 0, + 0, + 1011, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -505.5, + -136.5, + 0 + ], + "maxPos": [ + 505.5, + 136.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "feaaeaee-d2e6-4505-9657-67b8e69fed40@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "feaaeaee-d2e6-4505-9657-67b8e69fed40@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/FSFS.png b/assets/resources/i18nSprite2/sv/FSFS.png new file mode 100755 index 0000000..ab756b6 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/FSFS.png differ diff --git a/assets/resources/i18nSprite2/sv/FSFS.png.meta b/assets/resources/i18nSprite2/sv/FSFS.png.meta new file mode 100644 index 0000000..11bc9fb --- /dev/null +++ b/assets/resources/i18nSprite2/sv/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8decc1fe-7597-40c7-97ac-79cff9897483", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8decc1fe-7597-40c7-97ac-79cff9897483@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8decc1fe-7597-40c7-97ac-79cff9897483", + "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": "8decc1fe-7597-40c7-97ac-79cff9897483@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 603, + "height": 142, + "rawWidth": 603, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -301.5, + -71, + 0, + 301.5, + -71, + 0, + -301.5, + 71, + 0, + 301.5, + 71, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 142, + 603, + 142, + 0, + 0, + 603, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -301.5, + -71, + 0 + ], + "maxPos": [ + 301.5, + 71, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8decc1fe-7597-40c7-97ac-79cff9897483@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8decc1fe-7597-40c7-97ac-79cff9897483@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Free.png b/assets/resources/i18nSprite2/sv/Free.png new file mode 100755 index 0000000..83bb440 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Free.png differ diff --git a/assets/resources/i18nSprite2/sv/Free.png.meta b/assets/resources/i18nSprite2/sv/Free.png.meta new file mode 100644 index 0000000..afdaabb --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a49f2d38-138d-4266-bdc2-cdcbd5255edd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a49f2d38-138d-4266-bdc2-cdcbd5255edd@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a49f2d38-138d-4266-bdc2-cdcbd5255edd", + "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": "a49f2d38-138d-4266-bdc2-cdcbd5255edd@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 477, + "height": 179, + "rawWidth": 477, + "rawHeight": 179, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -238.5, + -89.5, + 0, + 238.5, + -89.5, + 0, + -238.5, + 89.5, + 0, + 238.5, + 89.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 179, + 477, + 179, + 0, + 0, + 477, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -238.5, + -89.5, + 0 + ], + "maxPos": [ + 238.5, + 89.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a49f2d38-138d-4266-bdc2-cdcbd5255edd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a49f2d38-138d-4266-bdc2-cdcbd5255edd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Free1.png b/assets/resources/i18nSprite2/sv/Free1.png new file mode 100755 index 0000000..d9cbd3a Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Free1.png differ diff --git a/assets/resources/i18nSprite2/sv/Free1.png.meta b/assets/resources/i18nSprite2/sv/Free1.png.meta new file mode 100644 index 0000000..81cb8a3 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8029628c-3195-442e-9475-63cbbbb24a8a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8029628c-3195-442e-9475-63cbbbb24a8a@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8029628c-3195-442e-9475-63cbbbb24a8a", + "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": "8029628c-3195-442e-9475-63cbbbb24a8a@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 548, + "height": 166, + "rawWidth": 548, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -274, + -83, + 0, + 274, + -83, + 0, + -274, + 83, + 0, + 274, + 83, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 166, + 548, + 166, + 0, + 0, + 548, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -274, + -83, + 0 + ], + "maxPos": [ + 274, + 83, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8029628c-3195-442e-9475-63cbbbb24a8a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8029628c-3195-442e-9475-63cbbbb24a8a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal1.png b/assets/resources/i18nSprite2/sv/Normal1.png new file mode 100755 index 0000000..9bac2f2 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal1.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal1.png.meta b/assets/resources/i18nSprite2/sv/Normal1.png.meta new file mode 100644 index 0000000..741a82d --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "36ae58d4-f859-4987-934b-66a5885801e2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "36ae58d4-f859-4987-934b-66a5885801e2@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "36ae58d4-f859-4987-934b-66a5885801e2", + "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": "36ae58d4-f859-4987-934b-66a5885801e2@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 749, + "height": 51, + "rawWidth": 753, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -374.5, + -25.5, + 0, + 374.5, + -25.5, + 0, + -374.5, + 25.5, + 0, + 374.5, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 751, + 53, + 2, + 2, + 751, + 2 + ], + "nuv": [ + 0.0026560424966799467, + 0.03636363636363636, + 0.99734395750332, + 0.03636363636363636, + 0.0026560424966799467, + 0.9636363636363636, + 0.99734395750332, + 0.9636363636363636 + ], + "minPos": [ + -374.5, + -25.5, + 0 + ], + "maxPos": [ + 374.5, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "36ae58d4-f859-4987-934b-66a5885801e2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "36ae58d4-f859-4987-934b-66a5885801e2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal10.png b/assets/resources/i18nSprite2/sv/Normal10.png new file mode 100755 index 0000000..c3b5cfd Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal10.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal10.png.meta b/assets/resources/i18nSprite2/sv/Normal10.png.meta new file mode 100644 index 0000000..41eef2b --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e2577a82-e8e1-40c4-ba58-7f81fb35ab53", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e2577a82-e8e1-40c4-ba58-7f81fb35ab53@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e2577a82-e8e1-40c4-ba58-7f81fb35ab53", + "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": "e2577a82-e8e1-40c4-ba58-7f81fb35ab53@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 635, + "height": 43, + "rawWidth": 639, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -317.5, + -21.5, + 0, + 317.5, + -21.5, + 0, + -317.5, + 21.5, + 0, + 317.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 637, + 45, + 2, + 2, + 637, + 2 + ], + "nuv": [ + 0.003129890453834116, + 0.0425531914893617, + 0.9968701095461658, + 0.0425531914893617, + 0.003129890453834116, + 0.9574468085106383, + 0.9968701095461658, + 0.9574468085106383 + ], + "minPos": [ + -317.5, + -21.5, + 0 + ], + "maxPos": [ + 317.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e2577a82-e8e1-40c4-ba58-7f81fb35ab53@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e2577a82-e8e1-40c4-ba58-7f81fb35ab53@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal11.png b/assets/resources/i18nSprite2/sv/Normal11.png new file mode 100755 index 0000000..f55802c Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal11.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal11.png.meta b/assets/resources/i18nSprite2/sv/Normal11.png.meta new file mode 100644 index 0000000..cb8ebe6 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f850673c-9929-4e86-90a2-30cda703a313", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f850673c-9929-4e86-90a2-30cda703a313@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f850673c-9929-4e86-90a2-30cda703a313", + "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": "f850673c-9929-4e86-90a2-30cda703a313@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 820, + "height": 78, + "rawWidth": 820, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -410, + -39, + 0, + 410, + -39, + 0, + -410, + 39, + 0, + 410, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 820, + 78, + 0, + 0, + 820, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -410, + -39, + 0 + ], + "maxPos": [ + 410, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f850673c-9929-4e86-90a2-30cda703a313@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f850673c-9929-4e86-90a2-30cda703a313@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal2.png b/assets/resources/i18nSprite2/sv/Normal2.png new file mode 100755 index 0000000..5125295 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal2.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal2.png.meta b/assets/resources/i18nSprite2/sv/Normal2.png.meta new file mode 100644 index 0000000..8c8f074 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7e71fd8e-879e-493e-a85a-cba43f06d67f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7e71fd8e-879e-493e-a85a-cba43f06d67f@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7e71fd8e-879e-493e-a85a-cba43f06d67f", + "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": "7e71fd8e-879e-493e-a85a-cba43f06d67f@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 244, + "height": 43, + "rawWidth": 248, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -122, + -21.5, + 0, + 122, + -21.5, + 0, + -122, + 21.5, + 0, + 122, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 246, + 45, + 2, + 2, + 246, + 2 + ], + "nuv": [ + 0.008064516129032258, + 0.0425531914893617, + 0.9919354838709677, + 0.0425531914893617, + 0.008064516129032258, + 0.9574468085106383, + 0.9919354838709677, + 0.9574468085106383 + ], + "minPos": [ + -122, + -21.5, + 0 + ], + "maxPos": [ + 122, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7e71fd8e-879e-493e-a85a-cba43f06d67f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7e71fd8e-879e-493e-a85a-cba43f06d67f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal3.png b/assets/resources/i18nSprite2/sv/Normal3.png new file mode 100755 index 0000000..10c7851 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal3.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal3.png.meta b/assets/resources/i18nSprite2/sv/Normal3.png.meta new file mode 100644 index 0000000..667373e --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "091ec8e9-a80b-4736-8a85-2a96f918e415", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "091ec8e9-a80b-4736-8a85-2a96f918e415@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "091ec8e9-a80b-4736-8a85-2a96f918e415", + "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": "091ec8e9-a80b-4736-8a85-2a96f918e415@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 427, + "height": 43, + "rawWidth": 431, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -213.5, + -21.5, + 0, + 213.5, + -21.5, + 0, + -213.5, + 21.5, + 0, + 213.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 429, + 45, + 2, + 2, + 429, + 2 + ], + "nuv": [ + 0.004640371229698376, + 0.0425531914893617, + 0.9953596287703016, + 0.0425531914893617, + 0.004640371229698376, + 0.9574468085106383, + 0.9953596287703016, + 0.9574468085106383 + ], + "minPos": [ + -213.5, + -21.5, + 0 + ], + "maxPos": [ + 213.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "091ec8e9-a80b-4736-8a85-2a96f918e415@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "091ec8e9-a80b-4736-8a85-2a96f918e415@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal4.png b/assets/resources/i18nSprite2/sv/Normal4.png new file mode 100755 index 0000000..935571b Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal4.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal4.png.meta b/assets/resources/i18nSprite2/sv/Normal4.png.meta new file mode 100644 index 0000000..cd84ab0 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f8ceada5-2447-4810-8365-500e23f3b2f8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f8ceada5-2447-4810-8365-500e23f3b2f8@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f8ceada5-2447-4810-8365-500e23f3b2f8", + "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": "f8ceada5-2447-4810-8365-500e23f3b2f8@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 365, + "height": 48, + "rawWidth": 369, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -182.5, + -24, + 0, + 182.5, + -24, + 0, + -182.5, + 24, + 0, + 182.5, + 24, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 50, + 367, + 50, + 2, + 2, + 367, + 2 + ], + "nuv": [ + 0.005420054200542005, + 0.038461538461538464, + 0.994579945799458, + 0.038461538461538464, + 0.005420054200542005, + 0.9615384615384616, + 0.994579945799458, + 0.9615384615384616 + ], + "minPos": [ + -182.5, + -24, + 0 + ], + "maxPos": [ + 182.5, + 24, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f8ceada5-2447-4810-8365-500e23f3b2f8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f8ceada5-2447-4810-8365-500e23f3b2f8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal5.png b/assets/resources/i18nSprite2/sv/Normal5.png new file mode 100755 index 0000000..a1ab47e Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal5.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal5.png.meta b/assets/resources/i18nSprite2/sv/Normal5.png.meta new file mode 100644 index 0000000..513f10f --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df027595-521e-4cfe-b1b6-546a5e318bf9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df027595-521e-4cfe-b1b6-546a5e318bf9@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df027595-521e-4cfe-b1b6-546a5e318bf9", + "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": "df027595-521e-4cfe-b1b6-546a5e318bf9@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 124, + "height": 33, + "rawWidth": 128, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -62, + -16.5, + 0, + 62, + -16.5, + 0, + -62, + 16.5, + 0, + 62, + 16.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 35, + 126, + 35, + 2, + 2, + 126, + 2 + ], + "nuv": [ + 0.015625, + 0.05405405405405406, + 0.984375, + 0.05405405405405406, + 0.015625, + 0.9459459459459459, + 0.984375, + 0.9459459459459459 + ], + "minPos": [ + -62, + -16.5, + 0 + ], + "maxPos": [ + 62, + 16.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df027595-521e-4cfe-b1b6-546a5e318bf9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df027595-521e-4cfe-b1b6-546a5e318bf9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal6.png b/assets/resources/i18nSprite2/sv/Normal6.png new file mode 100755 index 0000000..d061a19 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal6.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal6.png.meta b/assets/resources/i18nSprite2/sv/Normal6.png.meta new file mode 100644 index 0000000..15cb93f --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d39205e3-8ada-4313-9acf-11a4ae59aeab", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d39205e3-8ada-4313-9acf-11a4ae59aeab@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d39205e3-8ada-4313-9acf-11a4ae59aeab", + "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": "d39205e3-8ada-4313-9acf-11a4ae59aeab@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 102, + "height": 43, + "rawWidth": 106, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -51, + -21.5, + 0, + 51, + -21.5, + 0, + -51, + 21.5, + 0, + 51, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 104, + 45, + 2, + 2, + 104, + 2 + ], + "nuv": [ + 0.018867924528301886, + 0.0425531914893617, + 0.9811320754716981, + 0.0425531914893617, + 0.018867924528301886, + 0.9574468085106383, + 0.9811320754716981, + 0.9574468085106383 + ], + "minPos": [ + -51, + -21.5, + 0 + ], + "maxPos": [ + 51, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d39205e3-8ada-4313-9acf-11a4ae59aeab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d39205e3-8ada-4313-9acf-11a4ae59aeab@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal7.png b/assets/resources/i18nSprite2/sv/Normal7.png new file mode 100755 index 0000000..e50feb9 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal7.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal7.png.meta b/assets/resources/i18nSprite2/sv/Normal7.png.meta new file mode 100644 index 0000000..2d4d0d9 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "15336103-bc32-4d1b-b21f-ffc7a005bf87", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "15336103-bc32-4d1b-b21f-ffc7a005bf87@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "15336103-bc32-4d1b-b21f-ffc7a005bf87", + "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": "15336103-bc32-4d1b-b21f-ffc7a005bf87@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 239, + "height": 43, + "rawWidth": 243, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119.5, + -21.5, + 0, + 119.5, + -21.5, + 0, + -119.5, + 21.5, + 0, + 119.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 241, + 45, + 2, + 2, + 241, + 2 + ], + "nuv": [ + 0.00823045267489712, + 0.0425531914893617, + 0.9917695473251029, + 0.0425531914893617, + 0.00823045267489712, + 0.9574468085106383, + 0.9917695473251029, + 0.9574468085106383 + ], + "minPos": [ + -119.5, + -21.5, + 0 + ], + "maxPos": [ + 119.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "15336103-bc32-4d1b-b21f-ffc7a005bf87@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "15336103-bc32-4d1b-b21f-ffc7a005bf87@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal8.png b/assets/resources/i18nSprite2/sv/Normal8.png new file mode 100755 index 0000000..efc3e12 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal8.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal8.png.meta b/assets/resources/i18nSprite2/sv/Normal8.png.meta new file mode 100644 index 0000000..dbaf85b --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8f0c558e-84bb-4705-ac8c-786e3a1e2cc0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8f0c558e-84bb-4705-ac8c-786e3a1e2cc0@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8f0c558e-84bb-4705-ac8c-786e3a1e2cc0", + "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": "8f0c558e-84bb-4705-ac8c-786e3a1e2cc0@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1006, + "height": 51, + "rawWidth": 1010, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -503, + -25.5, + 0, + 503, + -25.5, + 0, + -503, + 25.5, + 0, + 503, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 1008, + 53, + 2, + 2, + 1008, + 2 + ], + "nuv": [ + 0.0019801980198019802, + 0.03636363636363636, + 0.998019801980198, + 0.03636363636363636, + 0.0019801980198019802, + 0.9636363636363636, + 0.998019801980198, + 0.9636363636363636 + ], + "minPos": [ + -503, + -25.5, + 0 + ], + "maxPos": [ + 503, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8f0c558e-84bb-4705-ac8c-786e3a1e2cc0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8f0c558e-84bb-4705-ac8c-786e3a1e2cc0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Normal9.png b/assets/resources/i18nSprite2/sv/Normal9.png new file mode 100755 index 0000000..edd8c58 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Normal9.png differ diff --git a/assets/resources/i18nSprite2/sv/Normal9.png.meta b/assets/resources/i18nSprite2/sv/Normal9.png.meta new file mode 100644 index 0000000..32e4126 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0dd484f6-33fd-4a95-bd68-27565bb82577", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0dd484f6-33fd-4a95-bd68-27565bb82577@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0dd484f6-33fd-4a95-bd68-27565bb82577", + "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": "0dd484f6-33fd-4a95-bd68-27565bb82577@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 684, + "height": 75, + "rawWidth": 684, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -342, + -37.5, + 0, + 342, + -37.5, + 0, + -342, + 37.5, + 0, + 342, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 684, + 75, + 0, + 0, + 684, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -342, + -37.5, + 0 + ], + "maxPos": [ + 342, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0dd484f6-33fd-4a95-bd68-27565bb82577@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0dd484f6-33fd-4a95-bd68-27565bb82577@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Win1.png b/assets/resources/i18nSprite2/sv/Win1.png new file mode 100755 index 0000000..82c65f3 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Win1.png differ diff --git a/assets/resources/i18nSprite2/sv/Win1.png.meta b/assets/resources/i18nSprite2/sv/Win1.png.meta new file mode 100644 index 0000000..19ea931 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fe4b7290-1ecc-40e0-82a0-61ff654bc7e2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fe4b7290-1ecc-40e0-82a0-61ff654bc7e2@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fe4b7290-1ecc-40e0-82a0-61ff654bc7e2", + "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": "fe4b7290-1ecc-40e0-82a0-61ff654bc7e2@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 937, + "height": 308, + "rawWidth": 937, + "rawHeight": 308, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -468.5, + -154, + 0, + 468.5, + -154, + 0, + -468.5, + 154, + 0, + 468.5, + 154, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 308, + 937, + 308, + 0, + 0, + 937, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -468.5, + -154, + 0 + ], + "maxPos": [ + 468.5, + 154, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fe4b7290-1ecc-40e0-82a0-61ff654bc7e2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fe4b7290-1ecc-40e0-82a0-61ff654bc7e2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Win2.png b/assets/resources/i18nSprite2/sv/Win2.png new file mode 100755 index 0000000..e56c8e0 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Win2.png differ diff --git a/assets/resources/i18nSprite2/sv/Win2.png.meta b/assets/resources/i18nSprite2/sv/Win2.png.meta new file mode 100644 index 0000000..e9fda4c --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1e2ec523-0f9f-42f7-a9d2-2f98a8287860", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1e2ec523-0f9f-42f7-a9d2-2f98a8287860@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1e2ec523-0f9f-42f7-a9d2-2f98a8287860", + "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": "1e2ec523-0f9f-42f7-a9d2-2f98a8287860@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1021, + "height": 327, + "rawWidth": 1021, + "rawHeight": 327, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -510.5, + -163.5, + 0, + 510.5, + -163.5, + 0, + -510.5, + 163.5, + 0, + 510.5, + 163.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 327, + 1021, + 327, + 0, + 0, + 1021, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -510.5, + -163.5, + 0 + ], + "maxPos": [ + 510.5, + 163.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1e2ec523-0f9f-42f7-a9d2-2f98a8287860@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1e2ec523-0f9f-42f7-a9d2-2f98a8287860@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/Win3.png b/assets/resources/i18nSprite2/sv/Win3.png new file mode 100755 index 0000000..11c3b5e Binary files /dev/null and b/assets/resources/i18nSprite2/sv/Win3.png differ diff --git a/assets/resources/i18nSprite2/sv/Win3.png.meta b/assets/resources/i18nSprite2/sv/Win3.png.meta new file mode 100644 index 0000000..8ad5d6a --- /dev/null +++ b/assets/resources/i18nSprite2/sv/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d219b2b5-714b-4e97-bc17-0e96e17d826d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d219b2b5-714b-4e97-bc17-0e96e17d826d@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d219b2b5-714b-4e97-bc17-0e96e17d826d", + "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": "d219b2b5-714b-4e97-bc17-0e96e17d826d@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 966, + "height": 453, + "rawWidth": 966, + "rawHeight": 453, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -483, + -226.5, + 0, + 483, + -226.5, + 0, + -483, + 226.5, + 0, + 483, + 226.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 453, + 966, + 453, + 0, + 0, + 966, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -483, + -226.5, + 0 + ], + "maxPos": [ + 483, + 226.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d219b2b5-714b-4e97-bc17-0e96e17d826d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d219b2b5-714b-4e97-bc17-0e96e17d826d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/logo1.png b/assets/resources/i18nSprite2/sv/logo1.png new file mode 100755 index 0000000..246c11e Binary files /dev/null and b/assets/resources/i18nSprite2/sv/logo1.png differ diff --git a/assets/resources/i18nSprite2/sv/logo1.png.meta b/assets/resources/i18nSprite2/sv/logo1.png.meta new file mode 100644 index 0000000..ff1c620 --- /dev/null +++ b/assets/resources/i18nSprite2/sv/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "39d651bc-37a8-4740-9be5-63e02382e6d6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "39d651bc-37a8-4740-9be5-63e02382e6d6@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "39d651bc-37a8-4740-9be5-63e02382e6d6", + "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": "39d651bc-37a8-4740-9be5-63e02382e6d6@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 953, + "height": 229, + "rawWidth": 953, + "rawHeight": 229, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -476.5, + -114.5, + 0, + 476.5, + -114.5, + 0, + -476.5, + 114.5, + 0, + 476.5, + 114.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 229, + 953, + 229, + 0, + 0, + 953, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -476.5, + -114.5, + 0 + ], + "maxPos": [ + 476.5, + 114.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "39d651bc-37a8-4740-9be5-63e02382e6d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "39d651bc-37a8-4740-9be5-63e02382e6d6@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/sv/zxksctter.png b/assets/resources/i18nSprite2/sv/zxksctter.png new file mode 100755 index 0000000..ecaabb3 Binary files /dev/null and b/assets/resources/i18nSprite2/sv/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/sv/zxksctter.png.meta b/assets/resources/i18nSprite2/sv/zxksctter.png.meta new file mode 100644 index 0000000..c6f80dc --- /dev/null +++ b/assets/resources/i18nSprite2/sv/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d16ca16c-465a-483f-8499-9713502572b7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d16ca16c-465a-483f-8499-9713502572b7@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d16ca16c-465a-483f-8499-9713502572b7", + "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": "d16ca16c-465a-483f-8499-9713502572b7@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 249, + "height": 92, + "rawWidth": 253, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -124.5, + -46, + 0, + 124.5, + -46, + 0, + -124.5, + 46, + 0, + 124.5, + 46, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 94, + 251, + 94, + 2, + 2, + 251, + 2 + ], + "nuv": [ + 0.007905138339920948, + 0.020833333333333332, + 0.9920948616600791, + 0.020833333333333332, + 0.007905138339920948, + 0.9791666666666666, + 0.9920948616600791, + 0.9791666666666666 + ], + "minPos": [ + -124.5, + -46, + 0 + ], + "maxPos": [ + 124.5, + 46, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d16ca16c-465a-483f-8499-9713502572b7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d16ca16c-465a-483f-8499-9713502572b7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th.meta b/assets/resources/i18nSprite2/th.meta new file mode 100644 index 0000000..20c902d --- /dev/null +++ b/assets/resources/i18nSprite2/th.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "9bee72f1-bc9b-4331-9492-ee753ef69070", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/th/Buy1.png b/assets/resources/i18nSprite2/th/Buy1.png new file mode 100755 index 0000000..c3a54d7 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Buy1.png differ diff --git a/assets/resources/i18nSprite2/th/Buy1.png.meta b/assets/resources/i18nSprite2/th/Buy1.png.meta new file mode 100644 index 0000000..0b17cde --- /dev/null +++ b/assets/resources/i18nSprite2/th/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "24e0b829-a3f4-4546-ba6a-07232b14d1a8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24e0b829-a3f4-4546-ba6a-07232b14d1a8@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24e0b829-a3f4-4546-ba6a-07232b14d1a8", + "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": "24e0b829-a3f4-4546-ba6a-07232b14d1a8@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 856, + "height": 146, + "rawWidth": 856, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -428, + -73, + 0, + 428, + -73, + 0, + -428, + 73, + 0, + 428, + 73, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 146, + 856, + 146, + 0, + 0, + 856, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -428, + -73, + 0 + ], + "maxPos": [ + 428, + 73, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24e0b829-a3f4-4546-ba6a-07232b14d1a8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24e0b829-a3f4-4546-ba6a-07232b14d1a8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Buy2.png b/assets/resources/i18nSprite2/th/Buy2.png new file mode 100755 index 0000000..35f6f46 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Buy2.png differ diff --git a/assets/resources/i18nSprite2/th/Buy2.png.meta b/assets/resources/i18nSprite2/th/Buy2.png.meta new file mode 100644 index 0000000..96ea326 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "98454b9d-6612-4161-a48c-18ef7b865174", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "98454b9d-6612-4161-a48c-18ef7b865174@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "98454b9d-6612-4161-a48c-18ef7b865174", + "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": "98454b9d-6612-4161-a48c-18ef7b865174@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 161, + "height": 109, + "rawWidth": 161, + "rawHeight": 109, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -80.5, + -54.5, + 0, + 80.5, + -54.5, + 0, + -80.5, + 54.5, + 0, + 80.5, + 54.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 109, + 161, + 109, + 0, + 0, + 161, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -80.5, + -54.5, + 0 + ], + "maxPos": [ + 80.5, + 54.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "98454b9d-6612-4161-a48c-18ef7b865174@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "98454b9d-6612-4161-a48c-18ef7b865174@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Buy4.png b/assets/resources/i18nSprite2/th/Buy4.png new file mode 100755 index 0000000..1e079dc Binary files /dev/null and b/assets/resources/i18nSprite2/th/Buy4.png differ diff --git a/assets/resources/i18nSprite2/th/Buy4.png.meta b/assets/resources/i18nSprite2/th/Buy4.png.meta new file mode 100644 index 0000000..244fded --- /dev/null +++ b/assets/resources/i18nSprite2/th/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4e869672-95a8-4ea7-8c6d-dd9f4ec06c70", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4e869672-95a8-4ea7-8c6d-dd9f4ec06c70@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4e869672-95a8-4ea7-8c6d-dd9f4ec06c70", + "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": "4e869672-95a8-4ea7-8c6d-dd9f4ec06c70@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 118, + "height": 100, + "rawWidth": 118, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -59, + -50, + 0, + 59, + -50, + 0, + -59, + 50, + 0, + 59, + 50, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 100, + 118, + 100, + 0, + 0, + 118, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -59, + -50, + 0 + ], + "maxPos": [ + 59, + 50, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4e869672-95a8-4ea7-8c6d-dd9f4ec06c70@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4e869672-95a8-4ea7-8c6d-dd9f4ec06c70@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Buy5.png b/assets/resources/i18nSprite2/th/Buy5.png new file mode 100755 index 0000000..5497a95 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Buy5.png differ diff --git a/assets/resources/i18nSprite2/th/Buy5.png.meta b/assets/resources/i18nSprite2/th/Buy5.png.meta new file mode 100644 index 0000000..ab5bf6b --- /dev/null +++ b/assets/resources/i18nSprite2/th/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "81b514e8-e9e6-48d6-9a9f-5611914d1fdc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "81b514e8-e9e6-48d6-9a9f-5611914d1fdc@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "81b514e8-e9e6-48d6-9a9f-5611914d1fdc", + "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": "81b514e8-e9e6-48d6-9a9f-5611914d1fdc@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 180, + "height": 94, + "rawWidth": 184, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -90, + -47, + 0, + 90, + -47, + 0, + -90, + 47, + 0, + 90, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 96, + 182, + 96, + 2, + 2, + 182, + 2 + ], + "nuv": [ + 0.010869565217391304, + 0.02040816326530612, + 0.9891304347826086, + 0.02040816326530612, + 0.010869565217391304, + 0.9795918367346939, + 0.9891304347826086, + 0.9795918367346939 + ], + "minPos": [ + -90, + -47, + 0 + ], + "maxPos": [ + 90, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "81b514e8-e9e6-48d6-9a9f-5611914d1fdc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "81b514e8-e9e6-48d6-9a9f-5611914d1fdc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Buy8.png b/assets/resources/i18nSprite2/th/Buy8.png new file mode 100755 index 0000000..538d5fb Binary files /dev/null and b/assets/resources/i18nSprite2/th/Buy8.png differ diff --git a/assets/resources/i18nSprite2/th/Buy8.png.meta b/assets/resources/i18nSprite2/th/Buy8.png.meta new file mode 100644 index 0000000..bc59c9b --- /dev/null +++ b/assets/resources/i18nSprite2/th/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90a55c02-1b85-41a0-b701-363c83e75af9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90a55c02-1b85-41a0-b701-363c83e75af9@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90a55c02-1b85-41a0-b701-363c83e75af9", + "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": "90a55c02-1b85-41a0-b701-363c83e75af9@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 199, + "height": 79, + "rawWidth": 199, + "rawHeight": 79, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -99.5, + -39.5, + 0, + 99.5, + -39.5, + 0, + -99.5, + 39.5, + 0, + 99.5, + 39.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 79, + 199, + 79, + 0, + 0, + 199, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -99.5, + -39.5, + 0 + ], + "maxPos": [ + 99.5, + 39.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90a55c02-1b85-41a0-b701-363c83e75af9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90a55c02-1b85-41a0-b701-363c83e75af9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FREELoading.png b/assets/resources/i18nSprite2/th/FREELoading.png new file mode 100755 index 0000000..67470d5 Binary files /dev/null and b/assets/resources/i18nSprite2/th/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/th/FREELoading.png.meta b/assets/resources/i18nSprite2/th/FREELoading.png.meta new file mode 100644 index 0000000..0d053a4 --- /dev/null +++ b/assets/resources/i18nSprite2/th/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ce83e3dd-5202-4649-b2e4-6768173e78f7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ce83e3dd-5202-4649-b2e4-6768173e78f7@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ce83e3dd-5202-4649-b2e4-6768173e78f7", + "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": "ce83e3dd-5202-4649-b2e4-6768173e78f7@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 820, + "height": 292, + "rawWidth": 820, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -410, + -146, + 0, + 410, + -146, + 0, + -410, + 146, + 0, + 410, + 146, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 292, + 820, + 292, + 0, + 0, + 820, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -410, + -146, + 0 + ], + "maxPos": [ + 410, + 146, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ce83e3dd-5202-4649-b2e4-6768173e78f7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ce83e3dd-5202-4649-b2e4-6768173e78f7@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FREELoading1.png b/assets/resources/i18nSprite2/th/FREELoading1.png new file mode 100755 index 0000000..2ad620a Binary files /dev/null and b/assets/resources/i18nSprite2/th/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/th/FREELoading1.png.meta b/assets/resources/i18nSprite2/th/FREELoading1.png.meta new file mode 100644 index 0000000..47c6379 --- /dev/null +++ b/assets/resources/i18nSprite2/th/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f4beba4d-0599-47ef-a588-b073a2dd9007", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f4beba4d-0599-47ef-a588-b073a2dd9007@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f4beba4d-0599-47ef-a588-b073a2dd9007", + "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": "f4beba4d-0599-47ef-a588-b073a2dd9007@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 952, + "height": 88, + "rawWidth": 956, + "rawHeight": 92, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -476, + -44, + 0, + 476, + -44, + 0, + -476, + 44, + 0, + 476, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 90, + 954, + 90, + 2, + 2, + 954, + 2 + ], + "nuv": [ + 0.0020920502092050207, + 0.021739130434782608, + 0.997907949790795, + 0.021739130434782608, + 0.0020920502092050207, + 0.9782608695652174, + 0.997907949790795, + 0.9782608695652174 + ], + "minPos": [ + -476, + -44, + 0 + ], + "maxPos": [ + 476, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f4beba4d-0599-47ef-a588-b073a2dd9007@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f4beba4d-0599-47ef-a588-b073a2dd9007@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FREELoading2.png b/assets/resources/i18nSprite2/th/FREELoading2.png new file mode 100755 index 0000000..a8f4d79 Binary files /dev/null and b/assets/resources/i18nSprite2/th/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/th/FREELoading2.png.meta b/assets/resources/i18nSprite2/th/FREELoading2.png.meta new file mode 100644 index 0000000..f04c155 --- /dev/null +++ b/assets/resources/i18nSprite2/th/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cc6fb0bb-6a47-47e5-8c9b-4301a709524d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cc6fb0bb-6a47-47e5-8c9b-4301a709524d@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cc6fb0bb-6a47-47e5-8c9b-4301a709524d", + "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": "cc6fb0bb-6a47-47e5-8c9b-4301a709524d@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 118, + "height": 100, + "rawWidth": 118, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -59, + -50, + 0, + 59, + -50, + 0, + -59, + 50, + 0, + 59, + 50, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 100, + 118, + 100, + 0, + 0, + 118, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -59, + -50, + 0 + ], + "maxPos": [ + 59, + 50, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cc6fb0bb-6a47-47e5-8c9b-4301a709524d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cc6fb0bb-6a47-47e5-8c9b-4301a709524d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FREESPIN2.png b/assets/resources/i18nSprite2/th/FREESPIN2.png new file mode 100755 index 0000000..2b28898 Binary files /dev/null and b/assets/resources/i18nSprite2/th/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/th/FREESPIN2.png.meta b/assets/resources/i18nSprite2/th/FREESPIN2.png.meta new file mode 100644 index 0000000..60b884c --- /dev/null +++ b/assets/resources/i18nSprite2/th/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7ddd9a60-cdfa-4ffb-8c83-aed6efc279d0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7ddd9a60-cdfa-4ffb-8c83-aed6efc279d0@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7ddd9a60-cdfa-4ffb-8c83-aed6efc279d0", + "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": "7ddd9a60-cdfa-4ffb-8c83-aed6efc279d0@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 803, + "height": 77, + "rawWidth": 803, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -401.5, + -38.5, + 0, + 401.5, + -38.5, + 0, + -401.5, + 38.5, + 0, + 401.5, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 803, + 77, + 0, + 0, + 803, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -401.5, + -38.5, + 0 + ], + "maxPos": [ + 401.5, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7ddd9a60-cdfa-4ffb-8c83-aed6efc279d0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7ddd9a60-cdfa-4ffb-8c83-aed6efc279d0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FREESPIN4.png b/assets/resources/i18nSprite2/th/FREESPIN4.png new file mode 100755 index 0000000..14e66e5 Binary files /dev/null and b/assets/resources/i18nSprite2/th/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/th/FREESPIN4.png.meta b/assets/resources/i18nSprite2/th/FREESPIN4.png.meta new file mode 100644 index 0000000..0361fc3 --- /dev/null +++ b/assets/resources/i18nSprite2/th/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "12c6b4db-1224-4e36-9765-35baf9f53116", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "12c6b4db-1224-4e36-9765-35baf9f53116@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "12c6b4db-1224-4e36-9765-35baf9f53116", + "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": "12c6b4db-1224-4e36-9765-35baf9f53116@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 341, + "height": 89, + "rawWidth": 341, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -170.5, + -44.5, + 0, + 170.5, + -44.5, + 0, + -170.5, + 44.5, + 0, + 170.5, + 44.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 89, + 341, + 89, + 0, + 0, + 341, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -170.5, + -44.5, + 0 + ], + "maxPos": [ + 170.5, + 44.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "12c6b4db-1224-4e36-9765-35baf9f53116@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "12c6b4db-1224-4e36-9765-35baf9f53116@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FREESPIN5.png b/assets/resources/i18nSprite2/th/FREESPIN5.png new file mode 100755 index 0000000..444e053 Binary files /dev/null and b/assets/resources/i18nSprite2/th/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/th/FREESPIN5.png.meta b/assets/resources/i18nSprite2/th/FREESPIN5.png.meta new file mode 100644 index 0000000..9d6edf5 --- /dev/null +++ b/assets/resources/i18nSprite2/th/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "147c4b32-31c0-4468-a422-f6aa362ff095", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "147c4b32-31c0-4468-a422-f6aa362ff095@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "147c4b32-31c0-4468-a422-f6aa362ff095", + "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": "147c4b32-31c0-4468-a422-f6aa362ff095@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 891, + "height": 240, + "rawWidth": 891, + "rawHeight": 240, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -445.5, + -120, + 0, + 445.5, + -120, + 0, + -445.5, + 120, + 0, + 445.5, + 120, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 240, + 891, + 240, + 0, + 0, + 891, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -445.5, + -120, + 0 + ], + "maxPos": [ + 445.5, + 120, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "147c4b32-31c0-4468-a422-f6aa362ff095@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "147c4b32-31c0-4468-a422-f6aa362ff095@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/FSFS.png b/assets/resources/i18nSprite2/th/FSFS.png new file mode 100755 index 0000000..d9d30ee Binary files /dev/null and b/assets/resources/i18nSprite2/th/FSFS.png differ diff --git a/assets/resources/i18nSprite2/th/FSFS.png.meta b/assets/resources/i18nSprite2/th/FSFS.png.meta new file mode 100644 index 0000000..e3777ef --- /dev/null +++ b/assets/resources/i18nSprite2/th/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d24cc2c-20f5-475b-8c6a-95aa3ab50038", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d24cc2c-20f5-475b-8c6a-95aa3ab50038@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d24cc2c-20f5-475b-8c6a-95aa3ab50038", + "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": "1d24cc2c-20f5-475b-8c6a-95aa3ab50038@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 492, + "height": 175, + "rawWidth": 492, + "rawHeight": 175, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -246, + -87.5, + 0, + 246, + -87.5, + 0, + -246, + 87.5, + 0, + 246, + 87.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 175, + 492, + 175, + 0, + 0, + 492, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -246, + -87.5, + 0 + ], + "maxPos": [ + 246, + 87.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d24cc2c-20f5-475b-8c6a-95aa3ab50038@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d24cc2c-20f5-475b-8c6a-95aa3ab50038@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Free.png b/assets/resources/i18nSprite2/th/Free.png new file mode 100755 index 0000000..0172f14 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Free.png differ diff --git a/assets/resources/i18nSprite2/th/Free.png.meta b/assets/resources/i18nSprite2/th/Free.png.meta new file mode 100644 index 0000000..8acd4d7 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5f726ee5-5516-4bb1-92e1-4d9cd44c55ad", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5f726ee5-5516-4bb1-92e1-4d9cd44c55ad@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5f726ee5-5516-4bb1-92e1-4d9cd44c55ad", + "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": "5f726ee5-5516-4bb1-92e1-4d9cd44c55ad@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 541, + "height": 119, + "rawWidth": 541, + "rawHeight": 119, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -270.5, + -59.5, + 0, + 270.5, + -59.5, + 0, + -270.5, + 59.5, + 0, + 270.5, + 59.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 119, + 541, + 119, + 0, + 0, + 541, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -270.5, + -59.5, + 0 + ], + "maxPos": [ + 270.5, + 59.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5f726ee5-5516-4bb1-92e1-4d9cd44c55ad@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5f726ee5-5516-4bb1-92e1-4d9cd44c55ad@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Free1.png b/assets/resources/i18nSprite2/th/Free1.png new file mode 100755 index 0000000..189dde3 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Free1.png differ diff --git a/assets/resources/i18nSprite2/th/Free1.png.meta b/assets/resources/i18nSprite2/th/Free1.png.meta new file mode 100644 index 0000000..cc23f67 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2cd8d609-dc62-49fd-919f-8419a77832dd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2cd8d609-dc62-49fd-919f-8419a77832dd@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2cd8d609-dc62-49fd-919f-8419a77832dd", + "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": "2cd8d609-dc62-49fd-919f-8419a77832dd@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 595, + "height": 144, + "rawWidth": 595, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -297.5, + -72, + 0, + 297.5, + -72, + 0, + -297.5, + 72, + 0, + 297.5, + 72, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 144, + 595, + 144, + 0, + 0, + 595, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -297.5, + -72, + 0 + ], + "maxPos": [ + 297.5, + 72, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2cd8d609-dc62-49fd-919f-8419a77832dd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2cd8d609-dc62-49fd-919f-8419a77832dd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal1.png b/assets/resources/i18nSprite2/th/Normal1.png new file mode 100755 index 0000000..9dbaf5b Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal1.png differ diff --git a/assets/resources/i18nSprite2/th/Normal1.png.meta b/assets/resources/i18nSprite2/th/Normal1.png.meta new file mode 100644 index 0000000..5eff962 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f780ebe9-e3a8-44a2-a799-888feb017334", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f780ebe9-e3a8-44a2-a799-888feb017334@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f780ebe9-e3a8-44a2-a799-888feb017334", + "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": "f780ebe9-e3a8-44a2-a799-888feb017334@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 699, + "height": 70, + "rawWidth": 699, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -349.5, + -35, + 0, + 349.5, + -35, + 0, + -349.5, + 35, + 0, + 349.5, + 35, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 70, + 699, + 70, + 0, + 0, + 699, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -349.5, + -35, + 0 + ], + "maxPos": [ + 349.5, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f780ebe9-e3a8-44a2-a799-888feb017334@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f780ebe9-e3a8-44a2-a799-888feb017334@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal10.png b/assets/resources/i18nSprite2/th/Normal10.png new file mode 100755 index 0000000..d8950b8 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal10.png differ diff --git a/assets/resources/i18nSprite2/th/Normal10.png.meta b/assets/resources/i18nSprite2/th/Normal10.png.meta new file mode 100644 index 0000000..709edc7 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "500f7534-e5c2-4b6b-b6e8-2212ac8c1ea2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "500f7534-e5c2-4b6b-b6e8-2212ac8c1ea2@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "500f7534-e5c2-4b6b-b6e8-2212ac8c1ea2", + "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": "500f7534-e5c2-4b6b-b6e8-2212ac8c1ea2@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 922, + "height": 69, + "rawWidth": 926, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -461, + -34.5, + 0, + 461, + -34.5, + 0, + -461, + 34.5, + 0, + 461, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 71, + 924, + 71, + 2, + 2, + 924, + 2 + ], + "nuv": [ + 0.0021598272138228943, + 0.0273972602739726, + 0.9978401727861771, + 0.0273972602739726, + 0.0021598272138228943, + 0.9726027397260274, + 0.9978401727861771, + 0.9726027397260274 + ], + "minPos": [ + -461, + -34.5, + 0 + ], + "maxPos": [ + 461, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "500f7534-e5c2-4b6b-b6e8-2212ac8c1ea2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "500f7534-e5c2-4b6b-b6e8-2212ac8c1ea2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal11.png b/assets/resources/i18nSprite2/th/Normal11.png new file mode 100755 index 0000000..e6f8d24 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal11.png differ diff --git a/assets/resources/i18nSprite2/th/Normal11.png.meta b/assets/resources/i18nSprite2/th/Normal11.png.meta new file mode 100644 index 0000000..56eee8d --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fa8d21c3-521d-46f5-b5f0-900ca4f7caf9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fa8d21c3-521d-46f5-b5f0-900ca4f7caf9@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fa8d21c3-521d-46f5-b5f0-900ca4f7caf9", + "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": "fa8d21c3-521d-46f5-b5f0-900ca4f7caf9@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 476, + "height": 78, + "rawWidth": 476, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -238, + -39, + 0, + 238, + -39, + 0, + -238, + 39, + 0, + 238, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 476, + 78, + 0, + 0, + 476, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -238, + -39, + 0 + ], + "maxPos": [ + 238, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fa8d21c3-521d-46f5-b5f0-900ca4f7caf9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fa8d21c3-521d-46f5-b5f0-900ca4f7caf9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal2.png b/assets/resources/i18nSprite2/th/Normal2.png new file mode 100755 index 0000000..fee75ab Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal2.png differ diff --git a/assets/resources/i18nSprite2/th/Normal2.png.meta b/assets/resources/i18nSprite2/th/Normal2.png.meta new file mode 100644 index 0000000..09e2202 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d95211e0-8d1e-4ae5-aa6c-f846d47b7644", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d95211e0-8d1e-4ae5-aa6c-f846d47b7644@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d95211e0-8d1e-4ae5-aa6c-f846d47b7644", + "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": "d95211e0-8d1e-4ae5-aa6c-f846d47b7644@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 249, + "height": 54, + "rawWidth": 249, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -124.5, + -27, + 0, + 124.5, + -27, + 0, + -124.5, + 27, + 0, + 124.5, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 54, + 249, + 54, + 0, + 0, + 249, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -124.5, + -27, + 0 + ], + "maxPos": [ + 124.5, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d95211e0-8d1e-4ae5-aa6c-f846d47b7644@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d95211e0-8d1e-4ae5-aa6c-f846d47b7644@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal3.png b/assets/resources/i18nSprite2/th/Normal3.png new file mode 100755 index 0000000..7b61ac3 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal3.png differ diff --git a/assets/resources/i18nSprite2/th/Normal3.png.meta b/assets/resources/i18nSprite2/th/Normal3.png.meta new file mode 100644 index 0000000..c4c8d6c --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "77a30ca2-246a-4890-bdff-ede36e4134f4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "77a30ca2-246a-4890-bdff-ede36e4134f4@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "77a30ca2-246a-4890-bdff-ede36e4134f4", + "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": "77a30ca2-246a-4890-bdff-ede36e4134f4@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 492, + "height": 68, + "rawWidth": 496, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -246, + -34, + 0, + 246, + -34, + 0, + -246, + 34, + 0, + 246, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 70, + 494, + 70, + 2, + 2, + 494, + 2 + ], + "nuv": [ + 0.004032258064516129, + 0.027777777777777776, + 0.9959677419354839, + 0.027777777777777776, + 0.004032258064516129, + 0.9722222222222222, + 0.9959677419354839, + 0.9722222222222222 + ], + "minPos": [ + -246, + -34, + 0 + ], + "maxPos": [ + 246, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "77a30ca2-246a-4890-bdff-ede36e4134f4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "77a30ca2-246a-4890-bdff-ede36e4134f4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal4.png b/assets/resources/i18nSprite2/th/Normal4.png new file mode 100755 index 0000000..7207c51 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal4.png differ diff --git a/assets/resources/i18nSprite2/th/Normal4.png.meta b/assets/resources/i18nSprite2/th/Normal4.png.meta new file mode 100644 index 0000000..711013b --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04757548-db9a-4c94-9c03-f34db4f5e951", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04757548-db9a-4c94-9c03-f34db4f5e951@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04757548-db9a-4c94-9c03-f34db4f5e951", + "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": "04757548-db9a-4c94-9c03-f34db4f5e951@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 223, + "height": 63, + "rawWidth": 227, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -111.5, + -31.5, + 0, + 111.5, + -31.5, + 0, + -111.5, + 31.5, + 0, + 111.5, + 31.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 65, + 225, + 65, + 2, + 2, + 225, + 2 + ], + "nuv": [ + 0.00881057268722467, + 0.029850746268656716, + 0.9911894273127754, + 0.029850746268656716, + 0.00881057268722467, + 0.9701492537313433, + 0.9911894273127754, + 0.9701492537313433 + ], + "minPos": [ + -111.5, + -31.5, + 0 + ], + "maxPos": [ + 111.5, + 31.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04757548-db9a-4c94-9c03-f34db4f5e951@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04757548-db9a-4c94-9c03-f34db4f5e951@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal5.png b/assets/resources/i18nSprite2/th/Normal5.png new file mode 100755 index 0000000..e201f9e Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal5.png differ diff --git a/assets/resources/i18nSprite2/th/Normal5.png.meta b/assets/resources/i18nSprite2/th/Normal5.png.meta new file mode 100644 index 0000000..c993c7c --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f729bcab-c117-4132-9436-ca3d6b9904bd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f729bcab-c117-4132-9436-ca3d6b9904bd@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f729bcab-c117-4132-9436-ca3d6b9904bd", + "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": "f729bcab-c117-4132-9436-ca3d6b9904bd@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 99, + "height": 31, + "rawWidth": 103, + "rawHeight": 35, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -49.5, + -15.5, + 0, + 49.5, + -15.5, + 0, + -49.5, + 15.5, + 0, + 49.5, + 15.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 33, + 101, + 33, + 2, + 2, + 101, + 2 + ], + "nuv": [ + 0.019417475728155338, + 0.05714285714285714, + 0.9805825242718447, + 0.05714285714285714, + 0.019417475728155338, + 0.9428571428571428, + 0.9805825242718447, + 0.9428571428571428 + ], + "minPos": [ + -49.5, + -15.5, + 0 + ], + "maxPos": [ + 49.5, + 15.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f729bcab-c117-4132-9436-ca3d6b9904bd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f729bcab-c117-4132-9436-ca3d6b9904bd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal6.png b/assets/resources/i18nSprite2/th/Normal6.png new file mode 100755 index 0000000..6ca7799 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal6.png differ diff --git a/assets/resources/i18nSprite2/th/Normal6.png.meta b/assets/resources/i18nSprite2/th/Normal6.png.meta new file mode 100644 index 0000000..5b79b58 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a5ea4907-c253-49e1-80ba-f03e91be7617", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a5ea4907-c253-49e1-80ba-f03e91be7617@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a5ea4907-c253-49e1-80ba-f03e91be7617", + "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": "a5ea4907-c253-49e1-80ba-f03e91be7617@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 127, + "height": 49, + "rawWidth": 131, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -63.5, + -24.5, + 0, + 63.5, + -24.5, + 0, + -63.5, + 24.5, + 0, + 63.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 129, + 51, + 2, + 2, + 129, + 2 + ], + "nuv": [ + 0.015267175572519083, + 0.03773584905660377, + 0.9847328244274809, + 0.03773584905660377, + 0.015267175572519083, + 0.9622641509433962, + 0.9847328244274809, + 0.9622641509433962 + ], + "minPos": [ + -63.5, + -24.5, + 0 + ], + "maxPos": [ + 63.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a5ea4907-c253-49e1-80ba-f03e91be7617@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a5ea4907-c253-49e1-80ba-f03e91be7617@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal7.png b/assets/resources/i18nSprite2/th/Normal7.png new file mode 100755 index 0000000..fb3b91c Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal7.png differ diff --git a/assets/resources/i18nSprite2/th/Normal7.png.meta b/assets/resources/i18nSprite2/th/Normal7.png.meta new file mode 100644 index 0000000..858b8a0 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "49ae1690-6dc8-4c27-8063-24c1e15d3376", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "49ae1690-6dc8-4c27-8063-24c1e15d3376@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "49ae1690-6dc8-4c27-8063-24c1e15d3376", + "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": "49ae1690-6dc8-4c27-8063-24c1e15d3376@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 239, + "height": 49, + "rawWidth": 243, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119.5, + -24.5, + 0, + 119.5, + -24.5, + 0, + -119.5, + 24.5, + 0, + 119.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 241, + 51, + 2, + 2, + 241, + 2 + ], + "nuv": [ + 0.00823045267489712, + 0.03773584905660377, + 0.9917695473251029, + 0.03773584905660377, + 0.00823045267489712, + 0.9622641509433962, + 0.9917695473251029, + 0.9622641509433962 + ], + "minPos": [ + -119.5, + -24.5, + 0 + ], + "maxPos": [ + 119.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "49ae1690-6dc8-4c27-8063-24c1e15d3376@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "49ae1690-6dc8-4c27-8063-24c1e15d3376@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal8.png b/assets/resources/i18nSprite2/th/Normal8.png new file mode 100755 index 0000000..47462b0 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal8.png differ diff --git a/assets/resources/i18nSprite2/th/Normal8.png.meta b/assets/resources/i18nSprite2/th/Normal8.png.meta new file mode 100644 index 0000000..e29eaf7 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cecf8ad5-13ab-4e87-b23d-306d5e0845c2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cecf8ad5-13ab-4e87-b23d-306d5e0845c2@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cecf8ad5-13ab-4e87-b23d-306d5e0845c2", + "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": "cecf8ad5-13ab-4e87-b23d-306d5e0845c2@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 990, + "height": 76, + "rawWidth": 994, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -495, + -38, + 0, + 495, + -38, + 0, + -495, + 38, + 0, + 495, + 38, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 78, + 992, + 78, + 2, + 2, + 992, + 2 + ], + "nuv": [ + 0.002012072434607646, + 0.025, + 0.9979879275653923, + 0.025, + 0.002012072434607646, + 0.975, + 0.9979879275653923, + 0.975 + ], + "minPos": [ + -495, + -38, + 0 + ], + "maxPos": [ + 495, + 38, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cecf8ad5-13ab-4e87-b23d-306d5e0845c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cecf8ad5-13ab-4e87-b23d-306d5e0845c2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Normal9.png b/assets/resources/i18nSprite2/th/Normal9.png new file mode 100755 index 0000000..14ce66f Binary files /dev/null and b/assets/resources/i18nSprite2/th/Normal9.png differ diff --git a/assets/resources/i18nSprite2/th/Normal9.png.meta b/assets/resources/i18nSprite2/th/Normal9.png.meta new file mode 100644 index 0000000..f13ff78 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "900450b9-bf4e-4fd1-b417-a805a80b1870", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "900450b9-bf4e-4fd1-b417-a805a80b1870@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "900450b9-bf4e-4fd1-b417-a805a80b1870", + "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": "900450b9-bf4e-4fd1-b417-a805a80b1870@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 753, + "height": 75, + "rawWidth": 753, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -376.5, + -37.5, + 0, + 376.5, + -37.5, + 0, + -376.5, + 37.5, + 0, + 376.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 753, + 75, + 0, + 0, + 753, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -376.5, + -37.5, + 0 + ], + "maxPos": [ + 376.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "900450b9-bf4e-4fd1-b417-a805a80b1870@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "900450b9-bf4e-4fd1-b417-a805a80b1870@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Win1.png b/assets/resources/i18nSprite2/th/Win1.png new file mode 100755 index 0000000..3fdece6 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Win1.png differ diff --git a/assets/resources/i18nSprite2/th/Win1.png.meta b/assets/resources/i18nSprite2/th/Win1.png.meta new file mode 100644 index 0000000..7f7889b --- /dev/null +++ b/assets/resources/i18nSprite2/th/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f8e9a3db-f8a1-43df-b400-081e7e5b355c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f8e9a3db-f8a1-43df-b400-081e7e5b355c@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f8e9a3db-f8a1-43df-b400-081e7e5b355c", + "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": "f8e9a3db-f8a1-43df-b400-081e7e5b355c@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1016, + "height": 291, + "rawWidth": 1016, + "rawHeight": 291, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508, + -145.5, + 0, + 508, + -145.5, + 0, + -508, + 145.5, + 0, + 508, + 145.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 291, + 1016, + 291, + 0, + 0, + 1016, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508, + -145.5, + 0 + ], + "maxPos": [ + 508, + 145.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f8e9a3db-f8a1-43df-b400-081e7e5b355c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f8e9a3db-f8a1-43df-b400-081e7e5b355c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Win2.png b/assets/resources/i18nSprite2/th/Win2.png new file mode 100755 index 0000000..22a3d78 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Win2.png differ diff --git a/assets/resources/i18nSprite2/th/Win2.png.meta b/assets/resources/i18nSprite2/th/Win2.png.meta new file mode 100644 index 0000000..fb3a347 --- /dev/null +++ b/assets/resources/i18nSprite2/th/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "956fc996-c74f-491b-89c6-b05f928be6ca", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "956fc996-c74f-491b-89c6-b05f928be6ca@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "956fc996-c74f-491b-89c6-b05f928be6ca", + "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": "956fc996-c74f-491b-89c6-b05f928be6ca@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1016, + "height": 291, + "rawWidth": 1016, + "rawHeight": 291, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508, + -145.5, + 0, + 508, + -145.5, + 0, + -508, + 145.5, + 0, + 508, + 145.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 291, + 1016, + 291, + 0, + 0, + 1016, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508, + -145.5, + 0 + ], + "maxPos": [ + 508, + 145.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "956fc996-c74f-491b-89c6-b05f928be6ca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "956fc996-c74f-491b-89c6-b05f928be6ca@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/Win3.png b/assets/resources/i18nSprite2/th/Win3.png new file mode 100755 index 0000000..0642f48 Binary files /dev/null and b/assets/resources/i18nSprite2/th/Win3.png differ diff --git a/assets/resources/i18nSprite2/th/Win3.png.meta b/assets/resources/i18nSprite2/th/Win3.png.meta new file mode 100644 index 0000000..5a09d3c --- /dev/null +++ b/assets/resources/i18nSprite2/th/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c8ca5a16-cb9e-4b1b-b5eb-034e8c517d85", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c8ca5a16-cb9e-4b1b-b5eb-034e8c517d85@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c8ca5a16-cb9e-4b1b-b5eb-034e8c517d85", + "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": "c8ca5a16-cb9e-4b1b-b5eb-034e8c517d85@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1016, + "height": 411, + "rawWidth": 1016, + "rawHeight": 411, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -508, + -205.5, + 0, + 508, + -205.5, + 0, + -508, + 205.5, + 0, + 508, + 205.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 411, + 1016, + 411, + 0, + 0, + 1016, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -508, + -205.5, + 0 + ], + "maxPos": [ + 508, + 205.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c8ca5a16-cb9e-4b1b-b5eb-034e8c517d85@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c8ca5a16-cb9e-4b1b-b5eb-034e8c517d85@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/logo1.png b/assets/resources/i18nSprite2/th/logo1.png new file mode 100755 index 0000000..63292bd Binary files /dev/null and b/assets/resources/i18nSprite2/th/logo1.png differ diff --git a/assets/resources/i18nSprite2/th/logo1.png.meta b/assets/resources/i18nSprite2/th/logo1.png.meta new file mode 100644 index 0000000..030833f --- /dev/null +++ b/assets/resources/i18nSprite2/th/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2e537cc6-73bb-421e-9a72-ce21cecfda95", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2e537cc6-73bb-421e-9a72-ce21cecfda95@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2e537cc6-73bb-421e-9a72-ce21cecfda95", + "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": "2e537cc6-73bb-421e-9a72-ce21cecfda95@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 962, + "height": 250, + "rawWidth": 962, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -481, + -125, + 0, + 481, + -125, + 0, + -481, + 125, + 0, + 481, + 125, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 250, + 962, + 250, + 0, + 0, + 962, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -481, + -125, + 0 + ], + "maxPos": [ + 481, + 125, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2e537cc6-73bb-421e-9a72-ce21cecfda95@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2e537cc6-73bb-421e-9a72-ce21cecfda95@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/th/zxksctter.png b/assets/resources/i18nSprite2/th/zxksctter.png new file mode 100755 index 0000000..4a86f67 Binary files /dev/null and b/assets/resources/i18nSprite2/th/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/th/zxksctter.png.meta b/assets/resources/i18nSprite2/th/zxksctter.png.meta new file mode 100644 index 0000000..cf07294 --- /dev/null +++ b/assets/resources/i18nSprite2/th/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "96398a72-81a1-4cad-89be-e0707a41fd43", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "96398a72-81a1-4cad-89be-e0707a41fd43@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "96398a72-81a1-4cad-89be-e0707a41fd43", + "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": "96398a72-81a1-4cad-89be-e0707a41fd43@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 275, + "height": 117, + "rawWidth": 279, + "rawHeight": 121, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -137.5, + -58.5, + 0, + 137.5, + -58.5, + 0, + -137.5, + 58.5, + 0, + 137.5, + 58.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 119, + 277, + 119, + 2, + 2, + 277, + 2 + ], + "nuv": [ + 0.007168458781362007, + 0.01652892561983471, + 0.992831541218638, + 0.01652892561983471, + 0.007168458781362007, + 0.9834710743801653, + 0.992831541218638, + 0.9834710743801653 + ], + "minPos": [ + -137.5, + -58.5, + 0 + ], + "maxPos": [ + 137.5, + 58.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "96398a72-81a1-4cad-89be-e0707a41fd43@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "96398a72-81a1-4cad-89be-e0707a41fd43@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr.meta b/assets/resources/i18nSprite2/tr.meta new file mode 100644 index 0000000..d8db7f4 --- /dev/null +++ b/assets/resources/i18nSprite2/tr.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "79acc576-e582-4a33-90d8-c31e94f027d5", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/tr/Buy1.png b/assets/resources/i18nSprite2/tr/Buy1.png new file mode 100755 index 0000000..0a1c16b Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Buy1.png differ diff --git a/assets/resources/i18nSprite2/tr/Buy1.png.meta b/assets/resources/i18nSprite2/tr/Buy1.png.meta new file mode 100644 index 0000000..da34640 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6702dd91-d681-4939-a681-3940e029a908", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6702dd91-d681-4939-a681-3940e029a908@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6702dd91-d681-4939-a681-3940e029a908", + "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": "6702dd91-d681-4939-a681-3940e029a908@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 881, + "height": 120, + "rawWidth": 881, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -440.5, + -60, + 0, + 440.5, + -60, + 0, + -440.5, + 60, + 0, + 440.5, + 60, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 120, + 881, + 120, + 0, + 0, + 881, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -440.5, + -60, + 0 + ], + "maxPos": [ + 440.5, + 60, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6702dd91-d681-4939-a681-3940e029a908@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6702dd91-d681-4939-a681-3940e029a908@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Buy2.png b/assets/resources/i18nSprite2/tr/Buy2.png new file mode 100755 index 0000000..b318858 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Buy2.png differ diff --git a/assets/resources/i18nSprite2/tr/Buy2.png.meta b/assets/resources/i18nSprite2/tr/Buy2.png.meta new file mode 100644 index 0000000..73d8499 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8d7a9d13-fdbc-4fb2-be5e-255addb99542", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8d7a9d13-fdbc-4fb2-be5e-255addb99542@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8d7a9d13-fdbc-4fb2-be5e-255addb99542", + "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": "8d7a9d13-fdbc-4fb2-be5e-255addb99542@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 173, + "height": 93, + "rawWidth": 173, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -86.5, + -46.5, + 0, + 86.5, + -46.5, + 0, + -86.5, + 46.5, + 0, + 86.5, + 46.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 93, + 173, + 93, + 0, + 0, + 173, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -86.5, + -46.5, + 0 + ], + "maxPos": [ + 86.5, + 46.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8d7a9d13-fdbc-4fb2-be5e-255addb99542@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8d7a9d13-fdbc-4fb2-be5e-255addb99542@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Buy4.png b/assets/resources/i18nSprite2/tr/Buy4.png new file mode 100755 index 0000000..95cd030 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Buy4.png differ diff --git a/assets/resources/i18nSprite2/tr/Buy4.png.meta b/assets/resources/i18nSprite2/tr/Buy4.png.meta new file mode 100644 index 0000000..d369659 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a3bb79bd-ccdd-4a47-b481-72b7e999200d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a3bb79bd-ccdd-4a47-b481-72b7e999200d@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a3bb79bd-ccdd-4a47-b481-72b7e999200d", + "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": "a3bb79bd-ccdd-4a47-b481-72b7e999200d@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 245, + "height": 78, + "rawWidth": 245, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -122.5, + -39, + 0, + 122.5, + -39, + 0, + -122.5, + 39, + 0, + 122.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 245, + 78, + 0, + 0, + 245, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -122.5, + -39, + 0 + ], + "maxPos": [ + 122.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a3bb79bd-ccdd-4a47-b481-72b7e999200d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a3bb79bd-ccdd-4a47-b481-72b7e999200d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Buy5.png b/assets/resources/i18nSprite2/tr/Buy5.png new file mode 100755 index 0000000..e665c36 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Buy5.png differ diff --git a/assets/resources/i18nSprite2/tr/Buy5.png.meta b/assets/resources/i18nSprite2/tr/Buy5.png.meta new file mode 100644 index 0000000..4f9aa04 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cbc824d5-ae19-4f57-b788-6f4d2e30735f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cbc824d5-ae19-4f57-b788-6f4d2e30735f@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cbc824d5-ae19-4f57-b788-6f4d2e30735f", + "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": "cbc824d5-ae19-4f57-b788-6f4d2e30735f@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 276, + "height": 74, + "rawWidth": 280, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -138, + -37, + 0, + 138, + -37, + 0, + -138, + 37, + 0, + 138, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 76, + 278, + 76, + 2, + 2, + 278, + 2 + ], + "nuv": [ + 0.007142857142857143, + 0.02564102564102564, + 0.9928571428571429, + 0.02564102564102564, + 0.007142857142857143, + 0.9743589743589743, + 0.9928571428571429, + 0.9743589743589743 + ], + "minPos": [ + -138, + -37, + 0 + ], + "maxPos": [ + 138, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cbc824d5-ae19-4f57-b788-6f4d2e30735f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cbc824d5-ae19-4f57-b788-6f4d2e30735f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Buy8.png b/assets/resources/i18nSprite2/tr/Buy8.png new file mode 100755 index 0000000..cffdc83 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Buy8.png differ diff --git a/assets/resources/i18nSprite2/tr/Buy8.png.meta b/assets/resources/i18nSprite2/tr/Buy8.png.meta new file mode 100644 index 0000000..1b3a045 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fee77a23-dbe9-43f4-a0cb-cc727f235c7c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fee77a23-dbe9-43f4-a0cb-cc727f235c7c@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fee77a23-dbe9-43f4-a0cb-cc727f235c7c", + "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": "fee77a23-dbe9-43f4-a0cb-cc727f235c7c@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 90, + "rawWidth": 182, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -91, + -45, + 0, + 91, + -45, + 0, + -91, + 45, + 0, + 91, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 90, + 182, + 90, + 0, + 0, + 182, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -91, + -45, + 0 + ], + "maxPos": [ + 91, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fee77a23-dbe9-43f4-a0cb-cc727f235c7c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fee77a23-dbe9-43f4-a0cb-cc727f235c7c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FREELoading.png b/assets/resources/i18nSprite2/tr/FREELoading.png new file mode 100755 index 0000000..c326076 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/tr/FREELoading.png.meta b/assets/resources/i18nSprite2/tr/FREELoading.png.meta new file mode 100644 index 0000000..a773dd0 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5c42a2f5-cbe6-44cc-9f9c-be312df764fd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5c42a2f5-cbe6-44cc-9f9c-be312df764fd@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5c42a2f5-cbe6-44cc-9f9c-be312df764fd", + "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": "5c42a2f5-cbe6-44cc-9f9c-be312df764fd@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1027, + "height": 218, + "rawWidth": 1027, + "rawHeight": 218, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -513.5, + -109, + 0, + 513.5, + -109, + 0, + -513.5, + 109, + 0, + 513.5, + 109, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 218, + 1027, + 218, + 0, + 0, + 1027, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -513.5, + -109, + 0 + ], + "maxPos": [ + 513.5, + 109, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5c42a2f5-cbe6-44cc-9f9c-be312df764fd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5c42a2f5-cbe6-44cc-9f9c-be312df764fd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FREELoading1.png b/assets/resources/i18nSprite2/tr/FREELoading1.png new file mode 100755 index 0000000..cfe0593 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/tr/FREELoading1.png.meta b/assets/resources/i18nSprite2/tr/FREELoading1.png.meta new file mode 100644 index 0000000..16dd76a --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09ff2652-616b-4771-8b7a-cbbfe922291e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09ff2652-616b-4771-8b7a-cbbfe922291e@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09ff2652-616b-4771-8b7a-cbbfe922291e", + "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": "09ff2652-616b-4771-8b7a-cbbfe922291e@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 917, + "height": 140, + "rawWidth": 921, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -458.5, + -70, + 0, + 458.5, + -70, + 0, + -458.5, + 70, + 0, + 458.5, + 70, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 142, + 919, + 142, + 2, + 2, + 919, + 2 + ], + "nuv": [ + 0.002171552660152009, + 0.013888888888888888, + 0.997828447339848, + 0.013888888888888888, + 0.002171552660152009, + 0.9861111111111112, + 0.997828447339848, + 0.9861111111111112 + ], + "minPos": [ + -458.5, + -70, + 0 + ], + "maxPos": [ + 458.5, + 70, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09ff2652-616b-4771-8b7a-cbbfe922291e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09ff2652-616b-4771-8b7a-cbbfe922291e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FREELoading2.png b/assets/resources/i18nSprite2/tr/FREELoading2.png new file mode 100755 index 0000000..b26601a Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/tr/FREELoading2.png.meta b/assets/resources/i18nSprite2/tr/FREELoading2.png.meta new file mode 100644 index 0000000..3b965ed --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5640e614-8c0b-48e8-abc2-e4665cde5975", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5640e614-8c0b-48e8-abc2-e4665cde5975@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5640e614-8c0b-48e8-abc2-e4665cde5975", + "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": "5640e614-8c0b-48e8-abc2-e4665cde5975@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 284, + "height": 88, + "rawWidth": 284, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -142, + -44, + 0, + 142, + -44, + 0, + -142, + 44, + 0, + 142, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 284, + 88, + 0, + 0, + 284, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -142, + -44, + 0 + ], + "maxPos": [ + 142, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5640e614-8c0b-48e8-abc2-e4665cde5975@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5640e614-8c0b-48e8-abc2-e4665cde5975@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FREESPIN2.png b/assets/resources/i18nSprite2/tr/FREESPIN2.png new file mode 100755 index 0000000..648b592 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/tr/FREESPIN2.png.meta b/assets/resources/i18nSprite2/tr/FREESPIN2.png.meta new file mode 100644 index 0000000..e746ebc --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7249bd89-6bc4-4274-a4d2-3049c7ace2bd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7249bd89-6bc4-4274-a4d2-3049c7ace2bd@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7249bd89-6bc4-4274-a4d2-3049c7ace2bd", + "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": "7249bd89-6bc4-4274-a4d2-3049c7ace2bd@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 916, + "height": 75, + "rawWidth": 916, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -458, + -37.5, + 0, + 458, + -37.5, + 0, + -458, + 37.5, + 0, + 458, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 916, + 75, + 0, + 0, + 916, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -458, + -37.5, + 0 + ], + "maxPos": [ + 458, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7249bd89-6bc4-4274-a4d2-3049c7ace2bd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7249bd89-6bc4-4274-a4d2-3049c7ace2bd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FREESPIN4.png b/assets/resources/i18nSprite2/tr/FREESPIN4.png new file mode 100755 index 0000000..721ce45 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/tr/FREESPIN4.png.meta b/assets/resources/i18nSprite2/tr/FREESPIN4.png.meta new file mode 100644 index 0000000..09ba61f --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "96da5130-3fa1-43f1-87f5-321b8a5b20ab", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "96da5130-3fa1-43f1-87f5-321b8a5b20ab@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "96da5130-3fa1-43f1-87f5-321b8a5b20ab", + "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": "96da5130-3fa1-43f1-87f5-321b8a5b20ab@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 221, + "height": 88, + "rawWidth": 221, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -110.5, + -44, + 0, + 110.5, + -44, + 0, + -110.5, + 44, + 0, + 110.5, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 88, + 221, + 88, + 0, + 0, + 221, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -110.5, + -44, + 0 + ], + "maxPos": [ + 110.5, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "96da5130-3fa1-43f1-87f5-321b8a5b20ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "96da5130-3fa1-43f1-87f5-321b8a5b20ab@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FREESPIN5.png b/assets/resources/i18nSprite2/tr/FREESPIN5.png new file mode 100755 index 0000000..e03cd17 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/tr/FREESPIN5.png.meta b/assets/resources/i18nSprite2/tr/FREESPIN5.png.meta new file mode 100644 index 0000000..9e29dc3 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "673f9106-549c-439e-bb91-ffda6f173b2a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "673f9106-549c-439e-bb91-ffda6f173b2a@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "673f9106-549c-439e-bb91-ffda6f173b2a", + "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": "673f9106-549c-439e-bb91-ffda6f173b2a@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1022, + "height": 223, + "rawWidth": 1022, + "rawHeight": 223, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -511, + -111.5, + 0, + 511, + -111.5, + 0, + -511, + 111.5, + 0, + 511, + 111.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 223, + 1022, + 223, + 0, + 0, + 1022, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -511, + -111.5, + 0 + ], + "maxPos": [ + 511, + 111.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "673f9106-549c-439e-bb91-ffda6f173b2a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "673f9106-549c-439e-bb91-ffda6f173b2a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/FSFS.png b/assets/resources/i18nSprite2/tr/FSFS.png new file mode 100755 index 0000000..eaee57f Binary files /dev/null and b/assets/resources/i18nSprite2/tr/FSFS.png differ diff --git a/assets/resources/i18nSprite2/tr/FSFS.png.meta b/assets/resources/i18nSprite2/tr/FSFS.png.meta new file mode 100644 index 0000000..c72084e --- /dev/null +++ b/assets/resources/i18nSprite2/tr/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "31437028-8ff9-4d0c-9225-31a35d45b43e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "31437028-8ff9-4d0c-9225-31a35d45b43e@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "31437028-8ff9-4d0c-9225-31a35d45b43e", + "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": "31437028-8ff9-4d0c-9225-31a35d45b43e@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 616, + "height": 131, + "rawWidth": 616, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -308, + -65.5, + 0, + 308, + -65.5, + 0, + -308, + 65.5, + 0, + 308, + 65.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 131, + 616, + 131, + 0, + 0, + 616, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -308, + -65.5, + 0 + ], + "maxPos": [ + 308, + 65.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "31437028-8ff9-4d0c-9225-31a35d45b43e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "31437028-8ff9-4d0c-9225-31a35d45b43e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Free.png b/assets/resources/i18nSprite2/tr/Free.png new file mode 100755 index 0000000..a6e82db Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Free.png differ diff --git a/assets/resources/i18nSprite2/tr/Free.png.meta b/assets/resources/i18nSprite2/tr/Free.png.meta new file mode 100644 index 0000000..2662e51 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0d5fb64-25d6-48bf-bdc6-e9d48abea09c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0d5fb64-25d6-48bf-bdc6-e9d48abea09c@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0d5fb64-25d6-48bf-bdc6-e9d48abea09c", + "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": "a0d5fb64-25d6-48bf-bdc6-e9d48abea09c@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 570, + "height": 191, + "rawWidth": 570, + "rawHeight": 191, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -285, + -95.5, + 0, + 285, + -95.5, + 0, + -285, + 95.5, + 0, + 285, + 95.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 191, + 570, + 191, + 0, + 0, + 570, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -285, + -95.5, + 0 + ], + "maxPos": [ + 285, + 95.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0d5fb64-25d6-48bf-bdc6-e9d48abea09c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0d5fb64-25d6-48bf-bdc6-e9d48abea09c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Free1.png b/assets/resources/i18nSprite2/tr/Free1.png new file mode 100755 index 0000000..578eb6b Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Free1.png differ diff --git a/assets/resources/i18nSprite2/tr/Free1.png.meta b/assets/resources/i18nSprite2/tr/Free1.png.meta new file mode 100644 index 0000000..0bfa54f --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2e4788d0-2888-481a-9f33-69d0dd1d7267", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2e4788d0-2888-481a-9f33-69d0dd1d7267@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2e4788d0-2888-481a-9f33-69d0dd1d7267", + "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": "2e4788d0-2888-481a-9f33-69d0dd1d7267@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 482, + "height": 176, + "rawWidth": 482, + "rawHeight": 176, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -241, + -88, + 0, + 241, + -88, + 0, + -241, + 88, + 0, + 241, + 88, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 176, + 482, + 176, + 0, + 0, + 482, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -241, + -88, + 0 + ], + "maxPos": [ + 241, + 88, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2e4788d0-2888-481a-9f33-69d0dd1d7267@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2e4788d0-2888-481a-9f33-69d0dd1d7267@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal1.png b/assets/resources/i18nSprite2/tr/Normal1.png new file mode 100755 index 0000000..f9036d9 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal1.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal1.png.meta b/assets/resources/i18nSprite2/tr/Normal1.png.meta new file mode 100644 index 0000000..bbcb36b --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8ae967a9-5a73-41b9-b7ab-5e96a7089975", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8ae967a9-5a73-41b9-b7ab-5e96a7089975@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8ae967a9-5a73-41b9-b7ab-5e96a7089975", + "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": "8ae967a9-5a73-41b9-b7ab-5e96a7089975@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1020, + "height": 58, + "rawWidth": 1020, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -510, + -29, + 0, + 510, + -29, + 0, + -510, + 29, + 0, + 510, + 29, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 58, + 1020, + 58, + 0, + 0, + 1020, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -510, + -29, + 0 + ], + "maxPos": [ + 510, + 29, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8ae967a9-5a73-41b9-b7ab-5e96a7089975@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8ae967a9-5a73-41b9-b7ab-5e96a7089975@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal10.png b/assets/resources/i18nSprite2/tr/Normal10.png new file mode 100755 index 0000000..8dc85ee Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal10.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal10.png.meta b/assets/resources/i18nSprite2/tr/Normal10.png.meta new file mode 100644 index 0000000..fa19018 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "40b7dc09-2001-41de-ac7e-a720b84a4fdf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "40b7dc09-2001-41de-ac7e-a720b84a4fdf@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "40b7dc09-2001-41de-ac7e-a720b84a4fdf", + "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": "40b7dc09-2001-41de-ac7e-a720b84a4fdf@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1049, + "height": 43, + "rawWidth": 1053, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -524.5, + -21.5, + 0, + 524.5, + -21.5, + 0, + -524.5, + 21.5, + 0, + 524.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 1051, + 45, + 2, + 2, + 1051, + 2 + ], + "nuv": [ + 0.001899335232668566, + 0.0425531914893617, + 0.9981006647673314, + 0.0425531914893617, + 0.001899335232668566, + 0.9574468085106383, + 0.9981006647673314, + 0.9574468085106383 + ], + "minPos": [ + -524.5, + -21.5, + 0 + ], + "maxPos": [ + 524.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "40b7dc09-2001-41de-ac7e-a720b84a4fdf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "40b7dc09-2001-41de-ac7e-a720b84a4fdf@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal11.png b/assets/resources/i18nSprite2/tr/Normal11.png new file mode 100755 index 0000000..c2f676a Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal11.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal11.png.meta b/assets/resources/i18nSprite2/tr/Normal11.png.meta new file mode 100644 index 0000000..08015a3 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a2b810be-eabd-4c2d-9a3c-80b2c5392aa0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a2b810be-eabd-4c2d-9a3c-80b2c5392aa0@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a2b810be-eabd-4c2d-9a3c-80b2c5392aa0", + "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": "a2b810be-eabd-4c2d-9a3c-80b2c5392aa0@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 980, + "height": 78, + "rawWidth": 980, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -490, + -39, + 0, + 490, + -39, + 0, + -490, + 39, + 0, + 490, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 980, + 78, + 0, + 0, + 980, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -490, + -39, + 0 + ], + "maxPos": [ + 490, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a2b810be-eabd-4c2d-9a3c-80b2c5392aa0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a2b810be-eabd-4c2d-9a3c-80b2c5392aa0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal2.png b/assets/resources/i18nSprite2/tr/Normal2.png new file mode 100755 index 0000000..2ff9909 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal2.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal2.png.meta b/assets/resources/i18nSprite2/tr/Normal2.png.meta new file mode 100644 index 0000000..94eafaf --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0e20b43c-fba4-4d99-9b9b-8bf502bdec21", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0e20b43c-fba4-4d99-9b9b-8bf502bdec21@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0e20b43c-fba4-4d99-9b9b-8bf502bdec21", + "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": "0e20b43c-fba4-4d99-9b9b-8bf502bdec21@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 219, + "height": 52, + "rawWidth": 223, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -109.5, + -26, + 0, + 109.5, + -26, + 0, + -109.5, + 26, + 0, + 109.5, + 26, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 54, + 221, + 54, + 2, + 2, + 221, + 2 + ], + "nuv": [ + 0.008968609865470852, + 0.03571428571428571, + 0.9910313901345291, + 0.03571428571428571, + 0.008968609865470852, + 0.9642857142857143, + 0.9910313901345291, + 0.9642857142857143 + ], + "minPos": [ + -109.5, + -26, + 0 + ], + "maxPos": [ + 109.5, + 26, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0e20b43c-fba4-4d99-9b9b-8bf502bdec21@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0e20b43c-fba4-4d99-9b9b-8bf502bdec21@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal3.png b/assets/resources/i18nSprite2/tr/Normal3.png new file mode 100755 index 0000000..c0d68f5 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal3.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal3.png.meta b/assets/resources/i18nSprite2/tr/Normal3.png.meta new file mode 100644 index 0000000..5d77f83 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bdea1389-9d4d-4dee-9657-45d5fec1e65f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bdea1389-9d4d-4dee-9657-45d5fec1e65f@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bdea1389-9d4d-4dee-9657-45d5fec1e65f", + "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": "bdea1389-9d4d-4dee-9657-45d5fec1e65f@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 460, + "height": 49, + "rawWidth": 464, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -230, + -24.5, + 0, + 230, + -24.5, + 0, + -230, + 24.5, + 0, + 230, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 462, + 51, + 2, + 2, + 462, + 2 + ], + "nuv": [ + 0.004310344827586207, + 0.03773584905660377, + 0.9956896551724138, + 0.03773584905660377, + 0.004310344827586207, + 0.9622641509433962, + 0.9956896551724138, + 0.9622641509433962 + ], + "minPos": [ + -230, + -24.5, + 0 + ], + "maxPos": [ + 230, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bdea1389-9d4d-4dee-9657-45d5fec1e65f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bdea1389-9d4d-4dee-9657-45d5fec1e65f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal4.png b/assets/resources/i18nSprite2/tr/Normal4.png new file mode 100755 index 0000000..084e68e Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal4.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal4.png.meta b/assets/resources/i18nSprite2/tr/Normal4.png.meta new file mode 100644 index 0000000..596376c --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e50709aa-3bf1-4b1c-83d9-3619d8d4f965", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e50709aa-3bf1-4b1c-83d9-3619d8d4f965@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e50709aa-3bf1-4b1c-83d9-3619d8d4f965", + "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": "e50709aa-3bf1-4b1c-83d9-3619d8d4f965@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 627, + "height": 58, + "rawWidth": 631, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -313.5, + -29, + 0, + 313.5, + -29, + 0, + -313.5, + 29, + 0, + 313.5, + 29, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 60, + 629, + 60, + 2, + 2, + 629, + 2 + ], + "nuv": [ + 0.003169572107765452, + 0.03225806451612903, + 0.9968304278922345, + 0.03225806451612903, + 0.003169572107765452, + 0.967741935483871, + 0.9968304278922345, + 0.967741935483871 + ], + "minPos": [ + -313.5, + -29, + 0 + ], + "maxPos": [ + 313.5, + 29, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e50709aa-3bf1-4b1c-83d9-3619d8d4f965@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e50709aa-3bf1-4b1c-83d9-3619d8d4f965@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal5.png b/assets/resources/i18nSprite2/tr/Normal5.png new file mode 100755 index 0000000..2229c89 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal5.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal5.png.meta b/assets/resources/i18nSprite2/tr/Normal5.png.meta new file mode 100644 index 0000000..ebc9c92 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c8d252d2-15a7-43b2-8d0b-e5213a09bc66", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c8d252d2-15a7-43b2-8d0b-e5213a09bc66@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c8d252d2-15a7-43b2-8d0b-e5213a09bc66", + "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": "c8d252d2-15a7-43b2-8d0b-e5213a09bc66@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 89, + "height": 28, + "rawWidth": 93, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -44.5, + -14, + 0, + 44.5, + -14, + 0, + -44.5, + 14, + 0, + 44.5, + 14, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 30, + 91, + 30, + 2, + 2, + 91, + 2 + ], + "nuv": [ + 0.021505376344086023, + 0.0625, + 0.978494623655914, + 0.0625, + 0.021505376344086023, + 0.9375, + 0.978494623655914, + 0.9375 + ], + "minPos": [ + -44.5, + -14, + 0 + ], + "maxPos": [ + 44.5, + 14, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c8d252d2-15a7-43b2-8d0b-e5213a09bc66@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c8d252d2-15a7-43b2-8d0b-e5213a09bc66@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal6.png b/assets/resources/i18nSprite2/tr/Normal6.png new file mode 100755 index 0000000..4b7a722 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal6.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal6.png.meta b/assets/resources/i18nSprite2/tr/Normal6.png.meta new file mode 100644 index 0000000..1fc591a --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "74004b8b-5e99-4683-9ddd-bc0acf3f2799", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "74004b8b-5e99-4683-9ddd-bc0acf3f2799@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "74004b8b-5e99-4683-9ddd-bc0acf3f2799", + "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": "74004b8b-5e99-4683-9ddd-bc0acf3f2799@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 143, + "height": 43, + "rawWidth": 147, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -71.5, + -21.5, + 0, + 71.5, + -21.5, + 0, + -71.5, + 21.5, + 0, + 71.5, + 21.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 45, + 145, + 45, + 2, + 2, + 145, + 2 + ], + "nuv": [ + 0.013605442176870748, + 0.0425531914893617, + 0.9863945578231292, + 0.0425531914893617, + 0.013605442176870748, + 0.9574468085106383, + 0.9863945578231292, + 0.9574468085106383 + ], + "minPos": [ + -71.5, + -21.5, + 0 + ], + "maxPos": [ + 71.5, + 21.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "74004b8b-5e99-4683-9ddd-bc0acf3f2799@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "74004b8b-5e99-4683-9ddd-bc0acf3f2799@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal7.png b/assets/resources/i18nSprite2/tr/Normal7.png new file mode 100755 index 0000000..7eac0ce Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal7.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal7.png.meta b/assets/resources/i18nSprite2/tr/Normal7.png.meta new file mode 100644 index 0000000..4ab3f61 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19f60940-eaca-4261-a336-09066245af84", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19f60940-eaca-4261-a336-09066245af84@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19f60940-eaca-4261-a336-09066245af84", + "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": "19f60940-eaca-4261-a336-09066245af84@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 351, + "height": 49, + "rawWidth": 355, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -175.5, + -24.5, + 0, + 175.5, + -24.5, + 0, + -175.5, + 24.5, + 0, + 175.5, + 24.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 51, + 353, + 51, + 2, + 2, + 353, + 2 + ], + "nuv": [ + 0.005633802816901409, + 0.03773584905660377, + 0.9943661971830986, + 0.03773584905660377, + 0.005633802816901409, + 0.9622641509433962, + 0.9943661971830986, + 0.9622641509433962 + ], + "minPos": [ + -175.5, + -24.5, + 0 + ], + "maxPos": [ + 175.5, + 24.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19f60940-eaca-4261-a336-09066245af84@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19f60940-eaca-4261-a336-09066245af84@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal8.png b/assets/resources/i18nSprite2/tr/Normal8.png new file mode 100755 index 0000000..39ea78d Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal8.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal8.png.meta b/assets/resources/i18nSprite2/tr/Normal8.png.meta new file mode 100644 index 0000000..f90ba18 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea50c986-4230-47a1-ac8e-2d32b05c432e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea50c986-4230-47a1-ac8e-2d32b05c432e@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea50c986-4230-47a1-ac8e-2d32b05c432e", + "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": "ea50c986-4230-47a1-ac8e-2d32b05c432e@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1200, + "height": 58, + "rawWidth": 1204, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -600, + -29, + 0, + 600, + -29, + 0, + -600, + 29, + 0, + 600, + 29, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 60, + 1202, + 60, + 2, + 2, + 1202, + 2 + ], + "nuv": [ + 0.0016611295681063123, + 0.03225806451612903, + 0.9983388704318937, + 0.03225806451612903, + 0.0016611295681063123, + 0.967741935483871, + 0.9983388704318937, + 0.967741935483871 + ], + "minPos": [ + -600, + -29, + 0 + ], + "maxPos": [ + 600, + 29, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea50c986-4230-47a1-ac8e-2d32b05c432e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea50c986-4230-47a1-ac8e-2d32b05c432e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Normal9.png b/assets/resources/i18nSprite2/tr/Normal9.png new file mode 100755 index 0000000..94e3249 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Normal9.png differ diff --git a/assets/resources/i18nSprite2/tr/Normal9.png.meta b/assets/resources/i18nSprite2/tr/Normal9.png.meta new file mode 100644 index 0000000..54428ad --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0f170fed-66b9-41c9-a26f-cace33c4cbd0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0f170fed-66b9-41c9-a26f-cace33c4cbd0@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0f170fed-66b9-41c9-a26f-cace33c4cbd0", + "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": "0f170fed-66b9-41c9-a26f-cace33c4cbd0@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 75, + "rawWidth": 896, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -37.5, + 0, + 448, + -37.5, + 0, + -448, + 37.5, + 0, + 448, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 896, + 75, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -37.5, + 0 + ], + "maxPos": [ + 448, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f170fed-66b9-41c9-a26f-cace33c4cbd0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0f170fed-66b9-41c9-a26f-cace33c4cbd0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Win1.png b/assets/resources/i18nSprite2/tr/Win1.png new file mode 100755 index 0000000..a98da72 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Win1.png differ diff --git a/assets/resources/i18nSprite2/tr/Win1.png.meta b/assets/resources/i18nSprite2/tr/Win1.png.meta new file mode 100644 index 0000000..2f0eba5 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "51fb0ca8-9536-4bb3-8b49-d8b75733b31f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "51fb0ca8-9536-4bb3-8b49-d8b75733b31f@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "51fb0ca8-9536-4bb3-8b49-d8b75733b31f", + "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": "51fb0ca8-9536-4bb3-8b49-d8b75733b31f@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1011, + "height": 261, + "rawWidth": 1011, + "rawHeight": 261, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -505.5, + -130.5, + 0, + 505.5, + -130.5, + 0, + -505.5, + 130.5, + 0, + 505.5, + 130.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 261, + 1011, + 261, + 0, + 0, + 1011, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -505.5, + -130.5, + 0 + ], + "maxPos": [ + 505.5, + 130.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "51fb0ca8-9536-4bb3-8b49-d8b75733b31f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "51fb0ca8-9536-4bb3-8b49-d8b75733b31f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Win2.png b/assets/resources/i18nSprite2/tr/Win2.png new file mode 100755 index 0000000..38a4df3 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Win2.png differ diff --git a/assets/resources/i18nSprite2/tr/Win2.png.meta b/assets/resources/i18nSprite2/tr/Win2.png.meta new file mode 100644 index 0000000..9bb8074 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "adbedc0d-e58d-46cf-8168-35e7318eecac", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "adbedc0d-e58d-46cf-8168-35e7318eecac@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "adbedc0d-e58d-46cf-8168-35e7318eecac", + "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": "adbedc0d-e58d-46cf-8168-35e7318eecac@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 976, + "height": 270, + "rawWidth": 976, + "rawHeight": 270, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -488, + -135, + 0, + 488, + -135, + 0, + -488, + 135, + 0, + 488, + 135, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 270, + 976, + 270, + 0, + 0, + 976, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -488, + -135, + 0 + ], + "maxPos": [ + 488, + 135, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "adbedc0d-e58d-46cf-8168-35e7318eecac@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "adbedc0d-e58d-46cf-8168-35e7318eecac@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/Win3.png b/assets/resources/i18nSprite2/tr/Win3.png new file mode 100755 index 0000000..8039de9 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/Win3.png differ diff --git a/assets/resources/i18nSprite2/tr/Win3.png.meta b/assets/resources/i18nSprite2/tr/Win3.png.meta new file mode 100644 index 0000000..119abe2 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "828c7a1f-3e6a-42a5-a2f3-589fc355f66e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "828c7a1f-3e6a-42a5-a2f3-589fc355f66e@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "828c7a1f-3e6a-42a5-a2f3-589fc355f66e", + "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": "828c7a1f-3e6a-42a5-a2f3-589fc355f66e@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 956, + "height": 477, + "rawWidth": 956, + "rawHeight": 477, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -478, + -238.5, + 0, + 478, + -238.5, + 0, + -478, + 238.5, + 0, + 478, + 238.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 477, + 956, + 477, + 0, + 0, + 956, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -478, + -238.5, + 0 + ], + "maxPos": [ + 478, + 238.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "828c7a1f-3e6a-42a5-a2f3-589fc355f66e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "828c7a1f-3e6a-42a5-a2f3-589fc355f66e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/logo1.png b/assets/resources/i18nSprite2/tr/logo1.png new file mode 100755 index 0000000..d0380b6 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/logo1.png differ diff --git a/assets/resources/i18nSprite2/tr/logo1.png.meta b/assets/resources/i18nSprite2/tr/logo1.png.meta new file mode 100644 index 0000000..010fd8e --- /dev/null +++ b/assets/resources/i18nSprite2/tr/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "221ff0c8-eee7-42bc-b080-657b5821fadd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "221ff0c8-eee7-42bc-b080-657b5821fadd@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "221ff0c8-eee7-42bc-b080-657b5821fadd", + "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": "221ff0c8-eee7-42bc-b080-657b5821fadd@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1018, + "height": 232, + "rawWidth": 1018, + "rawHeight": 232, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -509, + -116, + 0, + 509, + -116, + 0, + -509, + 116, + 0, + 509, + 116, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 232, + 1018, + 232, + 0, + 0, + 1018, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -509, + -116, + 0 + ], + "maxPos": [ + 509, + 116, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "221ff0c8-eee7-42bc-b080-657b5821fadd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "221ff0c8-eee7-42bc-b080-657b5821fadd@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/tr/zxksctter.png b/assets/resources/i18nSprite2/tr/zxksctter.png new file mode 100755 index 0000000..cae9ad2 Binary files /dev/null and b/assets/resources/i18nSprite2/tr/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/tr/zxksctter.png.meta b/assets/resources/i18nSprite2/tr/zxksctter.png.meta new file mode 100644 index 0000000..da9d9f4 --- /dev/null +++ b/assets/resources/i18nSprite2/tr/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a7e4157-91fa-4824-8147-c48ead6cab78", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a7e4157-91fa-4824-8147-c48ead6cab78@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a7e4157-91fa-4824-8147-c48ead6cab78", + "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": "9a7e4157-91fa-4824-8147-c48ead6cab78@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 250, + "height": 123, + "rawWidth": 254, + "rawHeight": 127, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -125, + -61.5, + 0, + 125, + -61.5, + 0, + -125, + 61.5, + 0, + 125, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 125, + 252, + 125, + 2, + 2, + 252, + 2 + ], + "nuv": [ + 0.007874015748031496, + 0.015748031496062992, + 0.9921259842519685, + 0.015748031496062992, + 0.007874015748031496, + 0.984251968503937, + 0.9921259842519685, + 0.984251968503937 + ], + "minPos": [ + -125, + -61.5, + 0 + ], + "maxPos": [ + 125, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a7e4157-91fa-4824-8147-c48ead6cab78@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a7e4157-91fa-4824-8147-c48ead6cab78@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi.meta b/assets/resources/i18nSprite2/vi.meta new file mode 100644 index 0000000..78a89e9 --- /dev/null +++ b/assets/resources/i18nSprite2/vi.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "84ca4149-ce45-4b1e-8433-fb84bbbab046", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/vi/Buy1.png b/assets/resources/i18nSprite2/vi/Buy1.png new file mode 100755 index 0000000..31be57e Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Buy1.png differ diff --git a/assets/resources/i18nSprite2/vi/Buy1.png.meta b/assets/resources/i18nSprite2/vi/Buy1.png.meta new file mode 100644 index 0000000..d1955dc --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "39caec9d-cc24-469e-b350-24b180dbeda4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "39caec9d-cc24-469e-b350-24b180dbeda4@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "39caec9d-cc24-469e-b350-24b180dbeda4", + "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": "39caec9d-cc24-469e-b350-24b180dbeda4@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 876, + "height": 116, + "rawWidth": 876, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -438, + -58, + 0, + 438, + -58, + 0, + -438, + 58, + 0, + 438, + 58, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 116, + 876, + 116, + 0, + 0, + 876, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -438, + -58, + 0 + ], + "maxPos": [ + 438, + 58, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "39caec9d-cc24-469e-b350-24b180dbeda4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "39caec9d-cc24-469e-b350-24b180dbeda4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Buy2.png b/assets/resources/i18nSprite2/vi/Buy2.png new file mode 100755 index 0000000..32c9453 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Buy2.png differ diff --git a/assets/resources/i18nSprite2/vi/Buy2.png.meta b/assets/resources/i18nSprite2/vi/Buy2.png.meta new file mode 100644 index 0000000..ecf7826 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e2dce4c6-1a49-4a44-8149-123df429d48e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e2dce4c6-1a49-4a44-8149-123df429d48e@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e2dce4c6-1a49-4a44-8149-123df429d48e", + "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": "e2dce4c6-1a49-4a44-8149-123df429d48e@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 209, + "height": 90, + "rawWidth": 209, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -104.5, + -45, + 0, + 104.5, + -45, + 0, + -104.5, + 45, + 0, + 104.5, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 90, + 209, + 90, + 0, + 0, + 209, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -104.5, + -45, + 0 + ], + "maxPos": [ + 104.5, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e2dce4c6-1a49-4a44-8149-123df429d48e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e2dce4c6-1a49-4a44-8149-123df429d48e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Buy4.png b/assets/resources/i18nSprite2/vi/Buy4.png new file mode 100755 index 0000000..4656a13 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Buy4.png differ diff --git a/assets/resources/i18nSprite2/vi/Buy4.png.meta b/assets/resources/i18nSprite2/vi/Buy4.png.meta new file mode 100644 index 0000000..9562cab --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d45ef17c-0141-4e4c-8ba0-a0af30fb0dd0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d45ef17c-0141-4e4c-8ba0-a0af30fb0dd0@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d45ef17c-0141-4e4c-8ba0-a0af30fb0dd0", + "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": "d45ef17c-0141-4e4c-8ba0-a0af30fb0dd0@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 274, + "height": 84, + "rawWidth": 274, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -137, + -42, + 0, + 137, + -42, + 0, + -137, + 42, + 0, + 137, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 84, + 274, + 84, + 0, + 0, + 274, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -137, + -42, + 0 + ], + "maxPos": [ + 137, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d45ef17c-0141-4e4c-8ba0-a0af30fb0dd0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d45ef17c-0141-4e4c-8ba0-a0af30fb0dd0@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Buy5.png b/assets/resources/i18nSprite2/vi/Buy5.png new file mode 100755 index 0000000..3893ff2 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Buy5.png differ diff --git a/assets/resources/i18nSprite2/vi/Buy5.png.meta b/assets/resources/i18nSprite2/vi/Buy5.png.meta new file mode 100644 index 0000000..b294c11 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2475f8aa-7ef9-4ac5-a771-1294fc659bd9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2475f8aa-7ef9-4ac5-a771-1294fc659bd9@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2475f8aa-7ef9-4ac5-a771-1294fc659bd9", + "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": "2475f8aa-7ef9-4ac5-a771-1294fc659bd9@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 173, + "height": 62, + "rawWidth": 177, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -86.5, + -31, + 0, + 86.5, + -31, + 0, + -86.5, + 31, + 0, + 86.5, + 31, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 64, + 175, + 64, + 2, + 2, + 175, + 2 + ], + "nuv": [ + 0.011299435028248588, + 0.030303030303030304, + 0.9887005649717514, + 0.030303030303030304, + 0.011299435028248588, + 0.9696969696969697, + 0.9887005649717514, + 0.9696969696969697 + ], + "minPos": [ + -86.5, + -31, + 0 + ], + "maxPos": [ + 86.5, + 31, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2475f8aa-7ef9-4ac5-a771-1294fc659bd9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2475f8aa-7ef9-4ac5-a771-1294fc659bd9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Buy8.png b/assets/resources/i18nSprite2/vi/Buy8.png new file mode 100755 index 0000000..6cbcc9d Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Buy8.png differ diff --git a/assets/resources/i18nSprite2/vi/Buy8.png.meta b/assets/resources/i18nSprite2/vi/Buy8.png.meta new file mode 100644 index 0000000..002ac68 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aa141879-2c86-41dc-aacd-3a11bc585d31", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aa141879-2c86-41dc-aacd-3a11bc585d31@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aa141879-2c86-41dc-aacd-3a11bc585d31", + "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": "aa141879-2c86-41dc-aacd-3a11bc585d31@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 141, + "height": 77, + "rawWidth": 141, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -70.5, + -38.5, + 0, + 70.5, + -38.5, + 0, + -70.5, + 38.5, + 0, + 70.5, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 141, + 77, + 0, + 0, + 141, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -70.5, + -38.5, + 0 + ], + "maxPos": [ + 70.5, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa141879-2c86-41dc-aacd-3a11bc585d31@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aa141879-2c86-41dc-aacd-3a11bc585d31@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FREELoading.png b/assets/resources/i18nSprite2/vi/FREELoading.png new file mode 100755 index 0000000..4938191 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/vi/FREELoading.png.meta b/assets/resources/i18nSprite2/vi/FREELoading.png.meta new file mode 100644 index 0000000..11260f7 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "34608641-038f-42e1-b10f-266d2f65cd13", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "34608641-038f-42e1-b10f-266d2f65cd13@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "34608641-038f-42e1-b10f-266d2f65cd13", + "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": "34608641-038f-42e1-b10f-266d2f65cd13@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 971, + "height": 453, + "rawWidth": 971, + "rawHeight": 453, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -485.5, + -226.5, + 0, + 485.5, + -226.5, + 0, + -485.5, + 226.5, + 0, + 485.5, + 226.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 453, + 971, + 453, + 0, + 0, + 971, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -485.5, + -226.5, + 0 + ], + "maxPos": [ + 485.5, + 226.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "34608641-038f-42e1-b10f-266d2f65cd13@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "34608641-038f-42e1-b10f-266d2f65cd13@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FREELoading1.png b/assets/resources/i18nSprite2/vi/FREELoading1.png new file mode 100755 index 0000000..afe3d5b Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/vi/FREELoading1.png.meta b/assets/resources/i18nSprite2/vi/FREELoading1.png.meta new file mode 100644 index 0000000..a817ada --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4b467ed8-15bc-445f-a764-e841d22e6235", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4b467ed8-15bc-445f-a764-e841d22e6235@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4b467ed8-15bc-445f-a764-e841d22e6235", + "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": "4b467ed8-15bc-445f-a764-e841d22e6235@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 958, + "height": 139, + "rawWidth": 962, + "rawHeight": 143, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -479, + -69.5, + 0, + 479, + -69.5, + 0, + -479, + 69.5, + 0, + 479, + 69.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 141, + 960, + 141, + 2, + 2, + 960, + 2 + ], + "nuv": [ + 0.002079002079002079, + 0.013986013986013986, + 0.997920997920998, + 0.013986013986013986, + 0.002079002079002079, + 0.986013986013986, + 0.997920997920998, + 0.986013986013986 + ], + "minPos": [ + -479, + -69.5, + 0 + ], + "maxPos": [ + 479, + 69.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4b467ed8-15bc-445f-a764-e841d22e6235@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4b467ed8-15bc-445f-a764-e841d22e6235@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FREELoading2.png b/assets/resources/i18nSprite2/vi/FREELoading2.png new file mode 100755 index 0000000..61c0c52 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/vi/FREELoading2.png.meta b/assets/resources/i18nSprite2/vi/FREELoading2.png.meta new file mode 100644 index 0000000..9ea8b31 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "549c877f-554a-4a95-a1a1-0a0a10a7f244", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "549c877f-554a-4a95-a1a1-0a0a10a7f244@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "549c877f-554a-4a95-a1a1-0a0a10a7f244", + "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": "549c877f-554a-4a95-a1a1-0a0a10a7f244@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 317, + "height": 95, + "rawWidth": 317, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -158.5, + -47.5, + 0, + 158.5, + -47.5, + 0, + -158.5, + 47.5, + 0, + 158.5, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 95, + 317, + 95, + 0, + 0, + 317, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -158.5, + -47.5, + 0 + ], + "maxPos": [ + 158.5, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "549c877f-554a-4a95-a1a1-0a0a10a7f244@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "549c877f-554a-4a95-a1a1-0a0a10a7f244@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FREESPIN2.png b/assets/resources/i18nSprite2/vi/FREESPIN2.png new file mode 100755 index 0000000..c1aa312 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/vi/FREESPIN2.png.meta b/assets/resources/i18nSprite2/vi/FREESPIN2.png.meta new file mode 100644 index 0000000..c4794a3 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8cdb8ba2-8686-4199-a25b-01e22776cdf5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8cdb8ba2-8686-4199-a25b-01e22776cdf5@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8cdb8ba2-8686-4199-a25b-01e22776cdf5", + "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": "8cdb8ba2-8686-4199-a25b-01e22776cdf5@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 943, + "height": 75, + "rawWidth": 943, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -471.5, + -37.5, + 0, + 471.5, + -37.5, + 0, + -471.5, + 37.5, + 0, + 471.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 943, + 75, + 0, + 0, + 943, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -471.5, + -37.5, + 0 + ], + "maxPos": [ + 471.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8cdb8ba2-8686-4199-a25b-01e22776cdf5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8cdb8ba2-8686-4199-a25b-01e22776cdf5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FREESPIN4.png b/assets/resources/i18nSprite2/vi/FREESPIN4.png new file mode 100755 index 0000000..44b35ed Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/vi/FREESPIN4.png.meta b/assets/resources/i18nSprite2/vi/FREESPIN4.png.meta new file mode 100644 index 0000000..575ad2b --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "33bfa647-46c7-4f17-878a-b60c59331aa5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "33bfa647-46c7-4f17-878a-b60c59331aa5@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "33bfa647-46c7-4f17-878a-b60c59331aa5", + "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": "33bfa647-46c7-4f17-878a-b60c59331aa5@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 320, + "height": 95, + "rawWidth": 320, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -160, + -47.5, + 0, + 160, + -47.5, + 0, + -160, + 47.5, + 0, + 160, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 95, + 320, + 95, + 0, + 0, + 320, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -160, + -47.5, + 0 + ], + "maxPos": [ + 160, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "33bfa647-46c7-4f17-878a-b60c59331aa5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "33bfa647-46c7-4f17-878a-b60c59331aa5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FREESPIN5.png b/assets/resources/i18nSprite2/vi/FREESPIN5.png new file mode 100755 index 0000000..8b96dc1 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/vi/FREESPIN5.png.meta b/assets/resources/i18nSprite2/vi/FREESPIN5.png.meta new file mode 100644 index 0000000..e8580e1 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b158510c-9f93-41ff-a94b-c6f8d8bad46c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b158510c-9f93-41ff-a94b-c6f8d8bad46c@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b158510c-9f93-41ff-a94b-c6f8d8bad46c", + "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": "b158510c-9f93-41ff-a94b-c6f8d8bad46c@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 927, + "height": 446, + "rawWidth": 927, + "rawHeight": 446, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -463.5, + -223, + 0, + 463.5, + -223, + 0, + -463.5, + 223, + 0, + 463.5, + 223, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 446, + 927, + 446, + 0, + 0, + 927, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -463.5, + -223, + 0 + ], + "maxPos": [ + 463.5, + 223, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b158510c-9f93-41ff-a94b-c6f8d8bad46c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b158510c-9f93-41ff-a94b-c6f8d8bad46c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/FSFS.png b/assets/resources/i18nSprite2/vi/FSFS.png new file mode 100755 index 0000000..b5d3715 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/FSFS.png differ diff --git a/assets/resources/i18nSprite2/vi/FSFS.png.meta b/assets/resources/i18nSprite2/vi/FSFS.png.meta new file mode 100644 index 0000000..e7c48e2 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "28663c0d-691b-42ab-aeb5-53f23cc491d1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "28663c0d-691b-42ab-aeb5-53f23cc491d1@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "28663c0d-691b-42ab-aeb5-53f23cc491d1", + "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": "28663c0d-691b-42ab-aeb5-53f23cc491d1@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 583, + "height": 272, + "rawWidth": 583, + "rawHeight": 272, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -291.5, + -136, + 0, + 291.5, + -136, + 0, + -291.5, + 136, + 0, + 291.5, + 136, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 272, + 583, + 272, + 0, + 0, + 583, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -291.5, + -136, + 0 + ], + "maxPos": [ + 291.5, + 136, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "28663c0d-691b-42ab-aeb5-53f23cc491d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "28663c0d-691b-42ab-aeb5-53f23cc491d1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Free.png b/assets/resources/i18nSprite2/vi/Free.png new file mode 100755 index 0000000..4af173c Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Free.png differ diff --git a/assets/resources/i18nSprite2/vi/Free.png.meta b/assets/resources/i18nSprite2/vi/Free.png.meta new file mode 100644 index 0000000..5d58059 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5a26f203-1934-4f53-8494-a74614d74da8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5a26f203-1934-4f53-8494-a74614d74da8@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5a26f203-1934-4f53-8494-a74614d74da8", + "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": "5a26f203-1934-4f53-8494-a74614d74da8@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 538, + "height": 186, + "rawWidth": 538, + "rawHeight": 186, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -269, + -93, + 0, + 269, + -93, + 0, + -269, + 93, + 0, + 269, + 93, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 186, + 538, + 186, + 0, + 0, + 538, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -269, + -93, + 0 + ], + "maxPos": [ + 269, + 93, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5a26f203-1934-4f53-8494-a74614d74da8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5a26f203-1934-4f53-8494-a74614d74da8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Free1.png b/assets/resources/i18nSprite2/vi/Free1.png new file mode 100755 index 0000000..9967a9e Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Free1.png differ diff --git a/assets/resources/i18nSprite2/vi/Free1.png.meta b/assets/resources/i18nSprite2/vi/Free1.png.meta new file mode 100644 index 0000000..36fe8e3 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "877161c5-55d4-42b2-8858-ba1a0d8fc7fc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "877161c5-55d4-42b2-8858-ba1a0d8fc7fc@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "877161c5-55d4-42b2-8858-ba1a0d8fc7fc", + "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": "877161c5-55d4-42b2-8858-ba1a0d8fc7fc@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 546, + "height": 186, + "rawWidth": 546, + "rawHeight": 186, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -273, + -93, + 0, + 273, + -93, + 0, + -273, + 93, + 0, + 273, + 93, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 186, + 546, + 186, + 0, + 0, + 546, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -273, + -93, + 0 + ], + "maxPos": [ + 273, + 93, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "877161c5-55d4-42b2-8858-ba1a0d8fc7fc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "877161c5-55d4-42b2-8858-ba1a0d8fc7fc@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal1.png b/assets/resources/i18nSprite2/vi/Normal1.png new file mode 100755 index 0000000..c5b3ef8 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal1.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal1.png.meta b/assets/resources/i18nSprite2/vi/Normal1.png.meta new file mode 100644 index 0000000..48f5b3a --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0d5755b0-7f9e-48c1-b680-97a7a1d444d1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0d5755b0-7f9e-48c1-b680-97a7a1d444d1@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0d5755b0-7f9e-48c1-b680-97a7a1d444d1", + "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": "0d5755b0-7f9e-48c1-b680-97a7a1d444d1@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 789, + "height": 65, + "rawWidth": 793, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -394.5, + -32.5, + 0, + 394.5, + -32.5, + 0, + -394.5, + 32.5, + 0, + 394.5, + 32.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 67, + 791, + 67, + 2, + 2, + 791, + 2 + ], + "nuv": [ + 0.0025220680958385876, + 0.028985507246376812, + 0.9974779319041615, + 0.028985507246376812, + 0.0025220680958385876, + 0.9710144927536232, + 0.9974779319041615, + 0.9710144927536232 + ], + "minPos": [ + -394.5, + -32.5, + 0 + ], + "maxPos": [ + 394.5, + 32.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0d5755b0-7f9e-48c1-b680-97a7a1d444d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0d5755b0-7f9e-48c1-b680-97a7a1d444d1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal10.png b/assets/resources/i18nSprite2/vi/Normal10.png new file mode 100755 index 0000000..19da2d9 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal10.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal10.png.meta b/assets/resources/i18nSprite2/vi/Normal10.png.meta new file mode 100644 index 0000000..9cf3367 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13db574b-b51c-442f-a255-b82a890c268d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13db574b-b51c-442f-a255-b82a890c268d@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13db574b-b51c-442f-a255-b82a890c268d", + "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": "13db574b-b51c-442f-a255-b82a890c268d@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1141, + "height": 66, + "rawWidth": 1145, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -570.5, + -33, + 0, + 570.5, + -33, + 0, + -570.5, + 33, + 0, + 570.5, + 33, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 68, + 1143, + 68, + 2, + 2, + 1143, + 2 + ], + "nuv": [ + 0.0017467248908296944, + 0.02857142857142857, + 0.9982532751091703, + 0.02857142857142857, + 0.0017467248908296944, + 0.9714285714285714, + 0.9982532751091703, + 0.9714285714285714 + ], + "minPos": [ + -570.5, + -33, + 0 + ], + "maxPos": [ + 570.5, + 33, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13db574b-b51c-442f-a255-b82a890c268d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13db574b-b51c-442f-a255-b82a890c268d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal11.png b/assets/resources/i18nSprite2/vi/Normal11.png new file mode 100755 index 0000000..2c32a4f Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal11.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal11.png.meta b/assets/resources/i18nSprite2/vi/Normal11.png.meta new file mode 100644 index 0000000..604e844 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "77724b68-11da-420d-ad2d-9d26ef9f8e2a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "77724b68-11da-420d-ad2d-9d26ef9f8e2a@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "77724b68-11da-420d-ad2d-9d26ef9f8e2a", + "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": "77724b68-11da-420d-ad2d-9d26ef9f8e2a@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 787, + "height": 78, + "rawWidth": 787, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -393.5, + -39, + 0, + 393.5, + -39, + 0, + -393.5, + 39, + 0, + 393.5, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 787, + 78, + 0, + 0, + 787, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -393.5, + -39, + 0 + ], + "maxPos": [ + 393.5, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "77724b68-11da-420d-ad2d-9d26ef9f8e2a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "77724b68-11da-420d-ad2d-9d26ef9f8e2a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal2.png b/assets/resources/i18nSprite2/vi/Normal2.png new file mode 100755 index 0000000..f466e6b Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal2.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal2.png.meta b/assets/resources/i18nSprite2/vi/Normal2.png.meta new file mode 100644 index 0000000..223c0b6 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "109af137-15c2-4aba-acdf-784a9977637d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "109af137-15c2-4aba-acdf-784a9977637d@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "109af137-15c2-4aba-acdf-784a9977637d", + "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": "109af137-15c2-4aba-acdf-784a9977637d@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 356, + "height": 56, + "rawWidth": 360, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -178, + -28, + 0, + 178, + -28, + 0, + -178, + 28, + 0, + 178, + 28, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 58, + 358, + 58, + 2, + 2, + 358, + 2 + ], + "nuv": [ + 0.005555555555555556, + 0.03333333333333333, + 0.9944444444444445, + 0.03333333333333333, + 0.005555555555555556, + 0.9666666666666667, + 0.9944444444444445, + 0.9666666666666667 + ], + "minPos": [ + -178, + -28, + 0 + ], + "maxPos": [ + 178, + 28, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "109af137-15c2-4aba-acdf-784a9977637d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "109af137-15c2-4aba-acdf-784a9977637d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal3.png b/assets/resources/i18nSprite2/vi/Normal3.png new file mode 100755 index 0000000..d34279d Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal3.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal3.png.meta b/assets/resources/i18nSprite2/vi/Normal3.png.meta new file mode 100644 index 0000000..3f99187 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2fbb24b1-b293-4eeb-8020-2c45de9b2963", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2fbb24b1-b293-4eeb-8020-2c45de9b2963@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2fbb24b1-b293-4eeb-8020-2c45de9b2963", + "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": "2fbb24b1-b293-4eeb-8020-2c45de9b2963@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 375, + "height": 59, + "rawWidth": 379, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -187.5, + -29.5, + 0, + 187.5, + -29.5, + 0, + -187.5, + 29.5, + 0, + 187.5, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 377, + 61, + 2, + 2, + 377, + 2 + ], + "nuv": [ + 0.005277044854881266, + 0.031746031746031744, + 0.9947229551451188, + 0.031746031746031744, + 0.005277044854881266, + 0.9682539682539683, + 0.9947229551451188, + 0.9682539682539683 + ], + "minPos": [ + -187.5, + -29.5, + 0 + ], + "maxPos": [ + 187.5, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2fbb24b1-b293-4eeb-8020-2c45de9b2963@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2fbb24b1-b293-4eeb-8020-2c45de9b2963@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal4.png b/assets/resources/i18nSprite2/vi/Normal4.png new file mode 100755 index 0000000..049a65d Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal4.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal4.png.meta b/assets/resources/i18nSprite2/vi/Normal4.png.meta new file mode 100644 index 0000000..eda12ee --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "307b89a0-1e2c-4c9f-ac21-c099af48493d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "307b89a0-1e2c-4c9f-ac21-c099af48493d@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "307b89a0-1e2c-4c9f-ac21-c099af48493d", + "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": "307b89a0-1e2c-4c9f-ac21-c099af48493d@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 601, + "height": 68, + "rawWidth": 605, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -300.5, + -34, + 0, + 300.5, + -34, + 0, + -300.5, + 34, + 0, + 300.5, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 70, + 603, + 70, + 2, + 2, + 603, + 2 + ], + "nuv": [ + 0.003305785123966942, + 0.027777777777777776, + 0.996694214876033, + 0.027777777777777776, + 0.003305785123966942, + 0.9722222222222222, + 0.996694214876033, + 0.9722222222222222 + ], + "minPos": [ + -300.5, + -34, + 0 + ], + "maxPos": [ + 300.5, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "307b89a0-1e2c-4c9f-ac21-c099af48493d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "307b89a0-1e2c-4c9f-ac21-c099af48493d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal5.png b/assets/resources/i18nSprite2/vi/Normal5.png new file mode 100755 index 0000000..f6514ae Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal5.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal5.png.meta b/assets/resources/i18nSprite2/vi/Normal5.png.meta new file mode 100644 index 0000000..ea186a4 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "40146b7f-459e-44a1-b9e8-232f5f5c7c1a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "40146b7f-459e-44a1-b9e8-232f5f5c7c1a@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "40146b7f-459e-44a1-b9e8-232f5f5c7c1a", + "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": "40146b7f-459e-44a1-b9e8-232f5f5c7c1a@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 139, + "height": 37, + "rawWidth": 143, + "rawHeight": 41, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -69.5, + -18.5, + 0, + 69.5, + -18.5, + 0, + -69.5, + 18.5, + 0, + 69.5, + 18.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 39, + 141, + 39, + 2, + 2, + 141, + 2 + ], + "nuv": [ + 0.013986013986013986, + 0.04878048780487805, + 0.986013986013986, + 0.04878048780487805, + 0.013986013986013986, + 0.9512195121951219, + 0.986013986013986, + 0.9512195121951219 + ], + "minPos": [ + -69.5, + -18.5, + 0 + ], + "maxPos": [ + 69.5, + 18.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "40146b7f-459e-44a1-b9e8-232f5f5c7c1a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "40146b7f-459e-44a1-b9e8-232f5f5c7c1a@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal6.png b/assets/resources/i18nSprite2/vi/Normal6.png new file mode 100755 index 0000000..c41cd8c Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal6.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal6.png.meta b/assets/resources/i18nSprite2/vi/Normal6.png.meta new file mode 100644 index 0000000..4401ecd --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0bbc474b-fd1d-40d6-b25a-5cac8ed2406c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0bbc474b-fd1d-40d6-b25a-5cac8ed2406c@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0bbc474b-fd1d-40d6-b25a-5cac8ed2406c", + "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": "0bbc474b-fd1d-40d6-b25a-5cac8ed2406c@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 313, + "height": 56, + "rawWidth": 317, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -156.5, + -28, + 0, + 156.5, + -28, + 0, + -156.5, + 28, + 0, + 156.5, + 28, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 58, + 315, + 58, + 2, + 2, + 315, + 2 + ], + "nuv": [ + 0.006309148264984227, + 0.03333333333333333, + 0.9936908517350158, + 0.03333333333333333, + 0.006309148264984227, + 0.9666666666666667, + 0.9936908517350158, + 0.9666666666666667 + ], + "minPos": [ + -156.5, + -28, + 0 + ], + "maxPos": [ + 156.5, + 28, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0bbc474b-fd1d-40d6-b25a-5cac8ed2406c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0bbc474b-fd1d-40d6-b25a-5cac8ed2406c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal7.png b/assets/resources/i18nSprite2/vi/Normal7.png new file mode 100755 index 0000000..09a9a94 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal7.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal7.png.meta b/assets/resources/i18nSprite2/vi/Normal7.png.meta new file mode 100644 index 0000000..1d46d7f --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e47e85dc-5459-480f-b65e-4722feec2faa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e47e85dc-5459-480f-b65e-4722feec2faa@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e47e85dc-5459-480f-b65e-4722feec2faa", + "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": "e47e85dc-5459-480f-b65e-4722feec2faa@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 514, + "height": 59, + "rawWidth": 518, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -257, + -29.5, + 0, + 257, + -29.5, + 0, + -257, + 29.5, + 0, + 257, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 516, + 61, + 2, + 2, + 516, + 2 + ], + "nuv": [ + 0.003861003861003861, + 0.031746031746031744, + 0.9961389961389961, + 0.031746031746031744, + 0.003861003861003861, + 0.9682539682539683, + 0.9961389961389961, + 0.9682539682539683 + ], + "minPos": [ + -257, + -29.5, + 0 + ], + "maxPos": [ + 257, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e47e85dc-5459-480f-b65e-4722feec2faa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e47e85dc-5459-480f-b65e-4722feec2faa@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal8.png b/assets/resources/i18nSprite2/vi/Normal8.png new file mode 100755 index 0000000..3a3b37c Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal8.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal8.png.meta b/assets/resources/i18nSprite2/vi/Normal8.png.meta new file mode 100644 index 0000000..8c8f565 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "89b64c71-cfad-4ecb-befe-421d82925fe2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "89b64c71-cfad-4ecb-befe-421d82925fe2@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "89b64c71-cfad-4ecb-befe-421d82925fe2", + "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": "89b64c71-cfad-4ecb-befe-421d82925fe2@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1413, + "height": 69, + "rawWidth": 1417, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -706.5, + -34.5, + 0, + 706.5, + -34.5, + 0, + -706.5, + 34.5, + 0, + 706.5, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 71, + 1415, + 71, + 2, + 2, + 1415, + 2 + ], + "nuv": [ + 0.0014114326040931546, + 0.0273972602739726, + 0.9985885673959068, + 0.0273972602739726, + 0.0014114326040931546, + 0.9726027397260274, + 0.9985885673959068, + 0.9726027397260274 + ], + "minPos": [ + -706.5, + -34.5, + 0 + ], + "maxPos": [ + 706.5, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "89b64c71-cfad-4ecb-befe-421d82925fe2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "89b64c71-cfad-4ecb-befe-421d82925fe2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Normal9.png b/assets/resources/i18nSprite2/vi/Normal9.png new file mode 100755 index 0000000..46aae95 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Normal9.png differ diff --git a/assets/resources/i18nSprite2/vi/Normal9.png.meta b/assets/resources/i18nSprite2/vi/Normal9.png.meta new file mode 100644 index 0000000..9495d8a --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e56552ce-b253-4ffd-a3d9-4f0b319492c4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e56552ce-b253-4ffd-a3d9-4f0b319492c4@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e56552ce-b253-4ffd-a3d9-4f0b319492c4", + "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": "e56552ce-b253-4ffd-a3d9-4f0b319492c4@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1088, + "height": 75, + "rawWidth": 1088, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -544, + -37.5, + 0, + 544, + -37.5, + 0, + -544, + 37.5, + 0, + 544, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 1088, + 75, + 0, + 0, + 1088, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -544, + -37.5, + 0 + ], + "maxPos": [ + 544, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e56552ce-b253-4ffd-a3d9-4f0b319492c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e56552ce-b253-4ffd-a3d9-4f0b319492c4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Win1.png b/assets/resources/i18nSprite2/vi/Win1.png new file mode 100755 index 0000000..31a5573 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Win1.png differ diff --git a/assets/resources/i18nSprite2/vi/Win1.png.meta b/assets/resources/i18nSprite2/vi/Win1.png.meta new file mode 100644 index 0000000..43cdf55 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "52f94d90-36a7-42e2-a954-aa248c11180b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "52f94d90-36a7-42e2-a954-aa248c11180b@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "52f94d90-36a7-42e2-a954-aa248c11180b", + "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": "52f94d90-36a7-42e2-a954-aa248c11180b@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1014, + "height": 370, + "rawWidth": 1014, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -507, + -185, + 0, + 507, + -185, + 0, + -507, + 185, + 0, + 507, + 185, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 370, + 1014, + 370, + 0, + 0, + 1014, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -507, + -185, + 0 + ], + "maxPos": [ + 507, + 185, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "52f94d90-36a7-42e2-a954-aa248c11180b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "52f94d90-36a7-42e2-a954-aa248c11180b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Win2.png b/assets/resources/i18nSprite2/vi/Win2.png new file mode 100755 index 0000000..2bfd6cd Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Win2.png differ diff --git a/assets/resources/i18nSprite2/vi/Win2.png.meta b/assets/resources/i18nSprite2/vi/Win2.png.meta new file mode 100644 index 0000000..7050591 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "602c126a-1e0e-4e1a-a0f7-ff5fefdf0ab2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "602c126a-1e0e-4e1a-a0f7-ff5fefdf0ab2@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "602c126a-1e0e-4e1a-a0f7-ff5fefdf0ab2", + "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": "602c126a-1e0e-4e1a-a0f7-ff5fefdf0ab2@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1041, + "height": 360, + "rawWidth": 1041, + "rawHeight": 360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -520.5, + -180, + 0, + 520.5, + -180, + 0, + -520.5, + 180, + 0, + 520.5, + 180, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 360, + 1041, + 360, + 0, + 0, + 1041, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -520.5, + -180, + 0 + ], + "maxPos": [ + 520.5, + 180, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "602c126a-1e0e-4e1a-a0f7-ff5fefdf0ab2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "602c126a-1e0e-4e1a-a0f7-ff5fefdf0ab2@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/Win3.png b/assets/resources/i18nSprite2/vi/Win3.png new file mode 100755 index 0000000..c471de1 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/Win3.png differ diff --git a/assets/resources/i18nSprite2/vi/Win3.png.meta b/assets/resources/i18nSprite2/vi/Win3.png.meta new file mode 100644 index 0000000..57a68ef --- /dev/null +++ b/assets/resources/i18nSprite2/vi/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bdd9ef23-e7b0-4b8c-873e-151bb9f60250", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bdd9ef23-e7b0-4b8c-873e-151bb9f60250@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bdd9ef23-e7b0-4b8c-873e-151bb9f60250", + "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": "bdd9ef23-e7b0-4b8c-873e-151bb9f60250@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1041, + "height": 360, + "rawWidth": 1041, + "rawHeight": 360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -520.5, + -180, + 0, + 520.5, + -180, + 0, + -520.5, + 180, + 0, + 520.5, + 180, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 360, + 1041, + 360, + 0, + 0, + 1041, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -520.5, + -180, + 0 + ], + "maxPos": [ + 520.5, + 180, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bdd9ef23-e7b0-4b8c-873e-151bb9f60250@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bdd9ef23-e7b0-4b8c-873e-151bb9f60250@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/logo1.png b/assets/resources/i18nSprite2/vi/logo1.png new file mode 100755 index 0000000..6b51206 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/logo1.png differ diff --git a/assets/resources/i18nSprite2/vi/logo1.png.meta b/assets/resources/i18nSprite2/vi/logo1.png.meta new file mode 100644 index 0000000..78a601b --- /dev/null +++ b/assets/resources/i18nSprite2/vi/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aeb9c721-43e3-422b-aa1d-8b7e2d37c842", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aeb9c721-43e3-422b-aa1d-8b7e2d37c842@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aeb9c721-43e3-422b-aa1d-8b7e2d37c842", + "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": "aeb9c721-43e3-422b-aa1d-8b7e2d37c842@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 952, + "height": 295, + "rawWidth": 952, + "rawHeight": 295, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -476, + -147.5, + 0, + 476, + -147.5, + 0, + -476, + 147.5, + 0, + 476, + 147.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 295, + 952, + 295, + 0, + 0, + 952, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -476, + -147.5, + 0 + ], + "maxPos": [ + 476, + 147.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aeb9c721-43e3-422b-aa1d-8b7e2d37c842@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aeb9c721-43e3-422b-aa1d-8b7e2d37c842@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/vi/zxksctter.png b/assets/resources/i18nSprite2/vi/zxksctter.png new file mode 100755 index 0000000..e1379f5 Binary files /dev/null and b/assets/resources/i18nSprite2/vi/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/vi/zxksctter.png.meta b/assets/resources/i18nSprite2/vi/zxksctter.png.meta new file mode 100644 index 0000000..9ba06e4 --- /dev/null +++ b/assets/resources/i18nSprite2/vi/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9253254d-29d4-413a-883f-f9329f23afa9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9253254d-29d4-413a-883f-f9329f23afa9@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9253254d-29d4-413a-883f-f9329f23afa9", + "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": "9253254d-29d4-413a-883f-f9329f23afa9@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 268, + "height": 143, + "rawWidth": 272, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -134, + -71.5, + 0, + 134, + -71.5, + 0, + -134, + 71.5, + 0, + 134, + 71.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 145, + 270, + 145, + 2, + 2, + 270, + 2 + ], + "nuv": [ + 0.007352941176470588, + 0.013605442176870748, + 0.9926470588235294, + 0.013605442176870748, + 0.007352941176470588, + 0.9863945578231292, + 0.9926470588235294, + 0.9863945578231292 + ], + "minPos": [ + -134, + -71.5, + 0 + ], + "maxPos": [ + 134, + 71.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9253254d-29d4-413a-883f-f9329f23afa9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9253254d-29d4-413a-883f-f9329f23afa9@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh.meta b/assets/resources/i18nSprite2/zh.meta new file mode 100644 index 0000000..b3d1b70 --- /dev/null +++ b/assets/resources/i18nSprite2/zh.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "7ae98b96-a7be-44b2-acaf-ff0a7d53f2e5", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/i18nSprite2/zh/Buy1.png b/assets/resources/i18nSprite2/zh/Buy1.png new file mode 100755 index 0000000..be1ac90 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy1.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy1.png.meta b/assets/resources/i18nSprite2/zh/Buy1.png.meta new file mode 100644 index 0000000..9197a36 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bf248fb4-49d2-4933-88fd-5885bd6d913f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bf248fb4-49d2-4933-88fd-5885bd6d913f@6c48a", + "displayName": "Buy1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bf248fb4-49d2-4933-88fd-5885bd6d913f", + "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": "bf248fb4-49d2-4933-88fd-5885bd6d913f@f9941", + "displayName": "Buy1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 866, + "height": 116, + "rawWidth": 866, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -433, + -58, + 0, + 433, + -58, + 0, + -433, + 58, + 0, + 433, + 58, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 116, + 866, + 116, + 0, + 0, + 866, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -433, + -58, + 0 + ], + "maxPos": [ + 433, + 58, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bf248fb4-49d2-4933-88fd-5885bd6d913f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bf248fb4-49d2-4933-88fd-5885bd6d913f@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Buy2.png b/assets/resources/i18nSprite2/zh/Buy2.png new file mode 100755 index 0000000..e3c4f01 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy2.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy2.png.meta b/assets/resources/i18nSprite2/zh/Buy2.png.meta new file mode 100644 index 0000000..a9d4333 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9437b7e2-12b7-4003-a5c7-5b75ab2296b8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9437b7e2-12b7-4003-a5c7-5b75ab2296b8@6c48a", + "displayName": "Buy2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9437b7e2-12b7-4003-a5c7-5b75ab2296b8", + "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": "9437b7e2-12b7-4003-a5c7-5b75ab2296b8@f9941", + "displayName": "Buy2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 186, + "height": 102, + "rawWidth": 186, + "rawHeight": 102, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -93, + -51, + 0, + 93, + -51, + 0, + -93, + 51, + 0, + 93, + 51, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 102, + 186, + 102, + 0, + 0, + 186, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -93, + -51, + 0 + ], + "maxPos": [ + 93, + 51, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9437b7e2-12b7-4003-a5c7-5b75ab2296b8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9437b7e2-12b7-4003-a5c7-5b75ab2296b8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Buy4.png b/assets/resources/i18nSprite2/zh/Buy4.png new file mode 100755 index 0000000..5937dda Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy4.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy4.png.meta b/assets/resources/i18nSprite2/zh/Buy4.png.meta new file mode 100644 index 0000000..ead8ce0 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4a32a16a-a12d-4b06-98ff-a1588d8b5d6e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4a32a16a-a12d-4b06-98ff-a1588d8b5d6e@6c48a", + "displayName": "Buy4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4a32a16a-a12d-4b06-98ff-a1588d8b5d6e", + "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": "4a32a16a-a12d-4b06-98ff-a1588d8b5d6e@f9941", + "displayName": "Buy4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 181, + "height": 89, + "rawWidth": 181, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -90.5, + -44.5, + 0, + 90.5, + -44.5, + 0, + -90.5, + 44.5, + 0, + 90.5, + 44.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 89, + 181, + 89, + 0, + 0, + 181, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -90.5, + -44.5, + 0 + ], + "maxPos": [ + 90.5, + 44.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4a32a16a-a12d-4b06-98ff-a1588d8b5d6e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4a32a16a-a12d-4b06-98ff-a1588d8b5d6e@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Buy5.png b/assets/resources/i18nSprite2/zh/Buy5.png new file mode 100755 index 0000000..69767cd Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy5.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy5.png.meta b/assets/resources/i18nSprite2/zh/Buy5.png.meta new file mode 100644 index 0000000..2f18608 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a63b4e67-1e10-4077-b094-17c6d0bfe35b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a63b4e67-1e10-4077-b094-17c6d0bfe35b@6c48a", + "displayName": "Buy5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a63b4e67-1e10-4077-b094-17c6d0bfe35b", + "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": "a63b4e67-1e10-4077-b094-17c6d0bfe35b@f9941", + "displayName": "Buy5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 139, + "height": 72, + "rawWidth": 143, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -69.5, + -36, + 0, + 69.5, + -36, + 0, + -69.5, + 36, + 0, + 69.5, + 36, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 74, + 141, + 74, + 2, + 2, + 141, + 2 + ], + "nuv": [ + 0.013986013986013986, + 0.02631578947368421, + 0.986013986013986, + 0.02631578947368421, + 0.013986013986013986, + 0.9736842105263158, + 0.986013986013986, + 0.9736842105263158 + ], + "minPos": [ + -69.5, + -36, + 0 + ], + "maxPos": [ + 69.5, + 36, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a63b4e67-1e10-4077-b094-17c6d0bfe35b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a63b4e67-1e10-4077-b094-17c6d0bfe35b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Buy6.png b/assets/resources/i18nSprite2/zh/Buy6.png new file mode 100755 index 0000000..16dd703 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy6.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy6.png.meta b/assets/resources/i18nSprite2/zh/Buy6.png.meta new file mode 100644 index 0000000..5529376 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8939e7c8-9daa-4174-b6bd-b000b55b398b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8939e7c8-9daa-4174-b6bd-b000b55b398b@6c48a", + "displayName": "Buy6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8939e7c8-9daa-4174-b6bd-b000b55b398b", + "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": "8939e7c8-9daa-4174-b6bd-b000b55b398b@f9941", + "displayName": "Buy6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 30, + "height": 34, + "rawWidth": 30, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -15, + -17, + 0, + 15, + -17, + 0, + -15, + 17, + 0, + 15, + 17, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 34, + 30, + 34, + 0, + 0, + 30, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -15, + -17, + 0 + ], + "maxPos": [ + 15, + 17, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8939e7c8-9daa-4174-b6bd-b000b55b398b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8939e7c8-9daa-4174-b6bd-b000b55b398b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Buy7.png b/assets/resources/i18nSprite2/zh/Buy7.png new file mode 100755 index 0000000..345cfec Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy7.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy7.png.meta b/assets/resources/i18nSprite2/zh/Buy7.png.meta new file mode 100644 index 0000000..bb8bf76 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "327a24ea-9652-4ae6-bb34-89404a338aa8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "327a24ea-9652-4ae6-bb34-89404a338aa8@6c48a", + "displayName": "Buy7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "327a24ea-9652-4ae6-bb34-89404a338aa8", + "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": "327a24ea-9652-4ae6-bb34-89404a338aa8@f9941", + "displayName": "Buy7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 29, + "height": 34, + "rawWidth": 29, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -14.5, + -17, + 0, + 14.5, + -17, + 0, + -14.5, + 17, + 0, + 14.5, + 17, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 34, + 29, + 34, + 0, + 0, + 29, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -14.5, + -17, + 0 + ], + "maxPos": [ + 14.5, + 17, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "327a24ea-9652-4ae6-bb34-89404a338aa8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "327a24ea-9652-4ae6-bb34-89404a338aa8@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Buy8.png b/assets/resources/i18nSprite2/zh/Buy8.png new file mode 100755 index 0000000..a0724e5 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Buy8.png differ diff --git a/assets/resources/i18nSprite2/zh/Buy8.png.meta b/assets/resources/i18nSprite2/zh/Buy8.png.meta new file mode 100644 index 0000000..63573cd --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Buy8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6dc80f59-da48-48a1-b08c-c50f6ec2a492", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6dc80f59-da48-48a1-b08c-c50f6ec2a492@6c48a", + "displayName": "Buy8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6dc80f59-da48-48a1-b08c-c50f6ec2a492", + "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": "6dc80f59-da48-48a1-b08c-c50f6ec2a492@f9941", + "displayName": "Buy8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 166, + "height": 90, + "rawWidth": 166, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -83, + -45, + 0, + 83, + -45, + 0, + -83, + 45, + 0, + 83, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 90, + 166, + 90, + 0, + 0, + 166, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -83, + -45, + 0 + ], + "maxPos": [ + 83, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6dc80f59-da48-48a1-b08c-c50f6ec2a492@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6dc80f59-da48-48a1-b08c-c50f6ec2a492@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FREELoading.png b/assets/resources/i18nSprite2/zh/FREELoading.png new file mode 100755 index 0000000..830a0e5 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FREELoading.png differ diff --git a/assets/resources/i18nSprite2/zh/FREELoading.png.meta b/assets/resources/i18nSprite2/zh/FREELoading.png.meta new file mode 100644 index 0000000..616577b --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FREELoading.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f86bec4-0791-47b4-9d21-4fdf54e678ed", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f86bec4-0791-47b4-9d21-4fdf54e678ed@6c48a", + "displayName": "FREELoading", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f86bec4-0791-47b4-9d21-4fdf54e678ed", + "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": "4f86bec4-0791-47b4-9d21-4fdf54e678ed@f9941", + "displayName": "FREELoading", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 898, + "height": 273, + "rawWidth": 898, + "rawHeight": 273, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -449, + -136.5, + 0, + 449, + -136.5, + 0, + -449, + 136.5, + 0, + 449, + 136.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 273, + 898, + 273, + 0, + 0, + 898, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -449, + -136.5, + 0 + ], + "maxPos": [ + 449, + 136.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f86bec4-0791-47b4-9d21-4fdf54e678ed@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f86bec4-0791-47b4-9d21-4fdf54e678ed@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FREELoading1.png b/assets/resources/i18nSprite2/zh/FREELoading1.png new file mode 100755 index 0000000..7653bdd Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FREELoading1.png differ diff --git a/assets/resources/i18nSprite2/zh/FREELoading1.png.meta b/assets/resources/i18nSprite2/zh/FREELoading1.png.meta new file mode 100644 index 0000000..b5ff3a3 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FREELoading1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a2ec5706-bcf5-4142-86ba-3c1fe0440e84", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a2ec5706-bcf5-4142-86ba-3c1fe0440e84@6c48a", + "displayName": "FREELoading1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a2ec5706-bcf5-4142-86ba-3c1fe0440e84", + "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": "a2ec5706-bcf5-4142-86ba-3c1fe0440e84@f9941", + "displayName": "FREELoading1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 898, + "height": 53, + "rawWidth": 902, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -449, + -26.5, + 0, + 449, + -26.5, + 0, + -449, + 26.5, + 0, + 449, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 900, + 55, + 2, + 2, + 900, + 2 + ], + "nuv": [ + 0.0022172949002217295, + 0.03508771929824561, + 0.9977827050997783, + 0.03508771929824561, + 0.0022172949002217295, + 0.9649122807017544, + 0.9977827050997783, + 0.9649122807017544 + ], + "minPos": [ + -449, + -26.5, + 0 + ], + "maxPos": [ + 449, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a2ec5706-bcf5-4142-86ba-3c1fe0440e84@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a2ec5706-bcf5-4142-86ba-3c1fe0440e84@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FREELoading2.png b/assets/resources/i18nSprite2/zh/FREELoading2.png new file mode 100755 index 0000000..95adf35 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FREELoading2.png differ diff --git a/assets/resources/i18nSprite2/zh/FREELoading2.png.meta b/assets/resources/i18nSprite2/zh/FREELoading2.png.meta new file mode 100644 index 0000000..e618385 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FREELoading2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1783db3d-0272-4e89-bead-b5e30a0752f5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1783db3d-0272-4e89-bead-b5e30a0752f5@6c48a", + "displayName": "FREELoading2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1783db3d-0272-4e89-bead-b5e30a0752f5", + "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": "1783db3d-0272-4e89-bead-b5e30a0752f5@f9941", + "displayName": "FREELoading2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 185, + "height": 90, + "rawWidth": 185, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -92.5, + -45, + 0, + 92.5, + -45, + 0, + -92.5, + 45, + 0, + 92.5, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 90, + 185, + 90, + 0, + 0, + 185, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -92.5, + -45, + 0 + ], + "maxPos": [ + 92.5, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1783db3d-0272-4e89-bead-b5e30a0752f5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1783db3d-0272-4e89-bead-b5e30a0752f5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FREESPIN2.png b/assets/resources/i18nSprite2/zh/FREESPIN2.png new file mode 100755 index 0000000..e79f5f3 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FREESPIN2.png differ diff --git a/assets/resources/i18nSprite2/zh/FREESPIN2.png.meta b/assets/resources/i18nSprite2/zh/FREESPIN2.png.meta new file mode 100644 index 0000000..5cfb26d --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FREESPIN2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a882b5d7-b523-4b4b-becb-81655132b42c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a882b5d7-b523-4b4b-becb-81655132b42c@6c48a", + "displayName": "FREESPIN2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a882b5d7-b523-4b4b-becb-81655132b42c", + "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": "a882b5d7-b523-4b4b-becb-81655132b42c@f9941", + "displayName": "FREESPIN2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 618, + "height": 75, + "rawWidth": 618, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -309, + -37.5, + 0, + 309, + -37.5, + 0, + -309, + 37.5, + 0, + 309, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 618, + 75, + 0, + 0, + 618, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -309, + -37.5, + 0 + ], + "maxPos": [ + 309, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a882b5d7-b523-4b4b-becb-81655132b42c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a882b5d7-b523-4b4b-becb-81655132b42c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FREESPIN4.png b/assets/resources/i18nSprite2/zh/FREESPIN4.png new file mode 100755 index 0000000..0e90999 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FREESPIN4.png differ diff --git a/assets/resources/i18nSprite2/zh/FREESPIN4.png.meta b/assets/resources/i18nSprite2/zh/FREESPIN4.png.meta new file mode 100644 index 0000000..8378b71 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FREESPIN4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "81fcb52a-731c-4c70-8f06-26c6c19b71f1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "81fcb52a-731c-4c70-8f06-26c6c19b71f1@6c48a", + "displayName": "FREESPIN4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "81fcb52a-731c-4c70-8f06-26c6c19b71f1", + "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": "81fcb52a-731c-4c70-8f06-26c6c19b71f1@f9941", + "displayName": "FREESPIN4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 193, + "height": 91, + "rawWidth": 197, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -96.5, + -45.5, + 0, + 96.5, + -45.5, + 0, + -96.5, + 45.5, + 0, + 96.5, + 45.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 93, + 195, + 93, + 2, + 2, + 195, + 2 + ], + "nuv": [ + 0.01015228426395939, + 0.021052631578947368, + 0.9898477157360406, + 0.021052631578947368, + 0.01015228426395939, + 0.9789473684210527, + 0.9898477157360406, + 0.9789473684210527 + ], + "minPos": [ + -96.5, + -45.5, + 0 + ], + "maxPos": [ + 96.5, + 45.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "81fcb52a-731c-4c70-8f06-26c6c19b71f1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "81fcb52a-731c-4c70-8f06-26c6c19b71f1@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FREESPIN5.png b/assets/resources/i18nSprite2/zh/FREESPIN5.png new file mode 100755 index 0000000..35a508e Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FREESPIN5.png differ diff --git a/assets/resources/i18nSprite2/zh/FREESPIN5.png.meta b/assets/resources/i18nSprite2/zh/FREESPIN5.png.meta new file mode 100644 index 0000000..b439d6b --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FREESPIN5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c760987-9f6d-484d-9967-edc4614e3b4c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c760987-9f6d-484d-9967-edc4614e3b4c@6c48a", + "displayName": "FREESPIN5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c760987-9f6d-484d-9967-edc4614e3b4c", + "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": "7c760987-9f6d-484d-9967-edc4614e3b4c@f9941", + "displayName": "FREESPIN5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 753, + "height": 288, + "rawWidth": 753, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -376.5, + -144, + 0, + 376.5, + -144, + 0, + -376.5, + 144, + 0, + 376.5, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 753, + 288, + 0, + 0, + 753, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -376.5, + -144, + 0 + ], + "maxPos": [ + 376.5, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c760987-9f6d-484d-9967-edc4614e3b4c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c760987-9f6d-484d-9967-edc4614e3b4c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/FSFS.png b/assets/resources/i18nSprite2/zh/FSFS.png new file mode 100755 index 0000000..eeaf9e1 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/FSFS.png differ diff --git a/assets/resources/i18nSprite2/zh/FSFS.png.meta b/assets/resources/i18nSprite2/zh/FSFS.png.meta new file mode 100644 index 0000000..c324bf3 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/FSFS.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b7f50800-2780-48f4-9189-82f0d3e2267d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b7f50800-2780-48f4-9189-82f0d3e2267d@6c48a", + "displayName": "FSFS", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b7f50800-2780-48f4-9189-82f0d3e2267d", + "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": "b7f50800-2780-48f4-9189-82f0d3e2267d@f9941", + "displayName": "FSFS", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 539, + "height": 164, + "rawWidth": 539, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -269.5, + -82, + 0, + 269.5, + -82, + 0, + -269.5, + 82, + 0, + 269.5, + 82, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 164, + 539, + 164, + 0, + 0, + 539, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -269.5, + -82, + 0 + ], + "maxPos": [ + 269.5, + 82, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b7f50800-2780-48f4-9189-82f0d3e2267d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b7f50800-2780-48f4-9189-82f0d3e2267d@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Free.png b/assets/resources/i18nSprite2/zh/Free.png new file mode 100755 index 0000000..0d68aaa Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Free.png differ diff --git a/assets/resources/i18nSprite2/zh/Free.png.meta b/assets/resources/i18nSprite2/zh/Free.png.meta new file mode 100644 index 0000000..9a1ec25 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Free.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "34fcebc6-38c7-4bd2-87c9-8f3e37fca500", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "34fcebc6-38c7-4bd2-87c9-8f3e37fca500@6c48a", + "displayName": "Free", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "34fcebc6-38c7-4bd2-87c9-8f3e37fca500", + "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": "34fcebc6-38c7-4bd2-87c9-8f3e37fca500@f9941", + "displayName": "Free", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 395, + "height": 201, + "rawWidth": 395, + "rawHeight": 201, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -197.5, + -100.5, + 0, + 197.5, + -100.5, + 0, + -197.5, + 100.5, + 0, + 197.5, + 100.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 201, + 395, + 201, + 0, + 0, + 395, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -197.5, + -100.5, + 0 + ], + "maxPos": [ + 197.5, + 100.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "34fcebc6-38c7-4bd2-87c9-8f3e37fca500@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "34fcebc6-38c7-4bd2-87c9-8f3e37fca500@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Free1.png b/assets/resources/i18nSprite2/zh/Free1.png new file mode 100755 index 0000000..9ca0bd9 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Free1.png differ diff --git a/assets/resources/i18nSprite2/zh/Free1.png.meta b/assets/resources/i18nSprite2/zh/Free1.png.meta new file mode 100644 index 0000000..aa93874 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Free1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dde1a5cf-05d0-45b4-be44-4a512610d0e5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dde1a5cf-05d0-45b4-be44-4a512610d0e5@6c48a", + "displayName": "Free1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dde1a5cf-05d0-45b4-be44-4a512610d0e5", + "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": "dde1a5cf-05d0-45b4-be44-4a512610d0e5@f9941", + "displayName": "Free1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 400, + "height": 199, + "rawWidth": 400, + "rawHeight": 199, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -200, + -99.5, + 0, + 200, + -99.5, + 0, + -200, + 99.5, + 0, + 200, + 99.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 199, + 400, + 199, + 0, + 0, + 400, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -200, + -99.5, + 0 + ], + "maxPos": [ + 200, + 99.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dde1a5cf-05d0-45b4-be44-4a512610d0e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dde1a5cf-05d0-45b4-be44-4a512610d0e5@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal1.png b/assets/resources/i18nSprite2/zh/Normal1.png new file mode 100755 index 0000000..1787ac4 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal1.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal1.png.meta b/assets/resources/i18nSprite2/zh/Normal1.png.meta new file mode 100644 index 0000000..1c7c783 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6dd3cc62-6965-4c91-a240-8b1cee81cc25", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6dd3cc62-6965-4c91-a240-8b1cee81cc25@6c48a", + "displayName": "Normal1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6dd3cc62-6965-4c91-a240-8b1cee81cc25", + "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": "6dd3cc62-6965-4c91-a240-8b1cee81cc25@f9941", + "displayName": "Normal1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 532, + "height": 53, + "rawWidth": 532, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -266, + -26.5, + 0, + 266, + -26.5, + 0, + -266, + 26.5, + 0, + 266, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 53, + 532, + 53, + 0, + 0, + 532, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -266, + -26.5, + 0 + ], + "maxPos": [ + 266, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6dd3cc62-6965-4c91-a240-8b1cee81cc25@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6dd3cc62-6965-4c91-a240-8b1cee81cc25@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal10.png b/assets/resources/i18nSprite2/zh/Normal10.png new file mode 100755 index 0000000..17271e8 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal10.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal10.png.meta b/assets/resources/i18nSprite2/zh/Normal10.png.meta new file mode 100644 index 0000000..f43ac39 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a4355aa8-f0bc-448c-8332-318d99df06fb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a4355aa8-f0bc-448c-8332-318d99df06fb@6c48a", + "displayName": "Normal10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a4355aa8-f0bc-448c-8332-318d99df06fb", + "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": "a4355aa8-f0bc-448c-8332-318d99df06fb@f9941", + "displayName": "Normal10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 744, + "height": 53, + "rawWidth": 748, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -372, + -26.5, + 0, + 372, + -26.5, + 0, + -372, + 26.5, + 0, + 372, + 26.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 55, + 746, + 55, + 2, + 2, + 746, + 2 + ], + "nuv": [ + 0.00267379679144385, + 0.03508771929824561, + 0.9973262032085561, + 0.03508771929824561, + 0.00267379679144385, + 0.9649122807017544, + 0.9973262032085561, + 0.9649122807017544 + ], + "minPos": [ + -372, + -26.5, + 0 + ], + "maxPos": [ + 372, + 26.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a4355aa8-f0bc-448c-8332-318d99df06fb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a4355aa8-f0bc-448c-8332-318d99df06fb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal11.png b/assets/resources/i18nSprite2/zh/Normal11.png new file mode 100755 index 0000000..e468209 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal11.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal11.png.meta b/assets/resources/i18nSprite2/zh/Normal11.png.meta new file mode 100644 index 0000000..571401d --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d8f36196-965b-4cdc-96a0-e2fa7b348799", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8f36196-965b-4cdc-96a0-e2fa7b348799@6c48a", + "displayName": "Normal11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8f36196-965b-4cdc-96a0-e2fa7b348799", + "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": "d8f36196-965b-4cdc-96a0-e2fa7b348799@f9941", + "displayName": "Normal11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 484, + "height": 78, + "rawWidth": 484, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -242, + -39, + 0, + 242, + -39, + 0, + -242, + 39, + 0, + 242, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 484, + 78, + 0, + 0, + 484, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -242, + -39, + 0 + ], + "maxPos": [ + 242, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8f36196-965b-4cdc-96a0-e2fa7b348799@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8f36196-965b-4cdc-96a0-e2fa7b348799@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal2.png b/assets/resources/i18nSprite2/zh/Normal2.png new file mode 100755 index 0000000..fd24096 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal2.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal2.png.meta b/assets/resources/i18nSprite2/zh/Normal2.png.meta new file mode 100644 index 0000000..78920a5 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb56f831-f642-4fc7-8352-7377830e65bb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb56f831-f642-4fc7-8352-7377830e65bb@6c48a", + "displayName": "Normal2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb56f831-f642-4fc7-8352-7377830e65bb", + "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": "cb56f831-f642-4fc7-8352-7377830e65bb@f9941", + "displayName": "Normal2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 229, + "height": 54, + "rawWidth": 229, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -114.5, + -27, + 0, + 114.5, + -27, + 0, + -114.5, + 27, + 0, + 114.5, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 54, + 229, + 54, + 0, + 0, + 229, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -114.5, + -27, + 0 + ], + "maxPos": [ + 114.5, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb56f831-f642-4fc7-8352-7377830e65bb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb56f831-f642-4fc7-8352-7377830e65bb@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal3.png b/assets/resources/i18nSprite2/zh/Normal3.png new file mode 100755 index 0000000..6e051c0 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal3.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal3.png.meta b/assets/resources/i18nSprite2/zh/Normal3.png.meta new file mode 100644 index 0000000..21d2fb2 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d919b7a0-787c-45ff-90ae-a27015a87338", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d919b7a0-787c-45ff-90ae-a27015a87338@6c48a", + "displayName": "Normal3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d919b7a0-787c-45ff-90ae-a27015a87338", + "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": "d919b7a0-787c-45ff-90ae-a27015a87338@f9941", + "displayName": "Normal3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 191, + "height": 51, + "rawWidth": 195, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -95.5, + -25.5, + 0, + 95.5, + -25.5, + 0, + -95.5, + 25.5, + 0, + 95.5, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 193, + 53, + 2, + 2, + 193, + 2 + ], + "nuv": [ + 0.010256410256410256, + 0.03636363636363636, + 0.9897435897435898, + 0.03636363636363636, + 0.010256410256410256, + 0.9636363636363636, + 0.9897435897435898, + 0.9636363636363636 + ], + "minPos": [ + -95.5, + -25.5, + 0 + ], + "maxPos": [ + 95.5, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d919b7a0-787c-45ff-90ae-a27015a87338@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d919b7a0-787c-45ff-90ae-a27015a87338@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal4.png b/assets/resources/i18nSprite2/zh/Normal4.png new file mode 100755 index 0000000..fdfd3c9 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal4.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal4.png.meta b/assets/resources/i18nSprite2/zh/Normal4.png.meta new file mode 100644 index 0000000..9a51a05 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a1169388-0a99-4df9-b3ab-dd123ce35091", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a1169388-0a99-4df9-b3ab-dd123ce35091@6c48a", + "displayName": "Normal4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a1169388-0a99-4df9-b3ab-dd123ce35091", + "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": "a1169388-0a99-4df9-b3ab-dd123ce35091@f9941", + "displayName": "Normal4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 320, + "height": 54, + "rawWidth": 324, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -160, + -27, + 0, + 160, + -27, + 0, + -160, + 27, + 0, + 160, + 27, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 56, + 322, + 56, + 2, + 2, + 322, + 2 + ], + "nuv": [ + 0.006172839506172839, + 0.034482758620689655, + 0.9938271604938271, + 0.034482758620689655, + 0.006172839506172839, + 0.9655172413793104, + 0.9938271604938271, + 0.9655172413793104 + ], + "minPos": [ + -160, + -27, + 0 + ], + "maxPos": [ + 160, + 27, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a1169388-0a99-4df9-b3ab-dd123ce35091@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a1169388-0a99-4df9-b3ab-dd123ce35091@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal5.png b/assets/resources/i18nSprite2/zh/Normal5.png new file mode 100755 index 0000000..7dd932c Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal5.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal5.png.meta b/assets/resources/i18nSprite2/zh/Normal5.png.meta new file mode 100644 index 0000000..be40633 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04fec521-b501-4203-801a-4753cdfaed9b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04fec521-b501-4203-801a-4753cdfaed9b@6c48a", + "displayName": "Normal5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04fec521-b501-4203-801a-4753cdfaed9b", + "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": "04fec521-b501-4203-801a-4753cdfaed9b@f9941", + "displayName": "Normal5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 64, + "height": 33, + "rawWidth": 68, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -32, + -16.5, + 0, + 32, + -16.5, + 0, + -32, + 16.5, + 0, + 32, + 16.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 35, + 66, + 35, + 2, + 2, + 66, + 2 + ], + "nuv": [ + 0.029411764705882353, + 0.05405405405405406, + 0.9705882352941176, + 0.05405405405405406, + 0.029411764705882353, + 0.9459459459459459, + 0.9705882352941176, + 0.9459459459459459 + ], + "minPos": [ + -32, + -16.5, + 0 + ], + "maxPos": [ + 32, + 16.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04fec521-b501-4203-801a-4753cdfaed9b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04fec521-b501-4203-801a-4753cdfaed9b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal6.png b/assets/resources/i18nSprite2/zh/Normal6.png new file mode 100755 index 0000000..5130a38 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal6.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal6.png.meta b/assets/resources/i18nSprite2/zh/Normal6.png.meta new file mode 100644 index 0000000..2c8d202 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5503ad78-773a-4373-9fbb-0a2c70d5c832", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5503ad78-773a-4373-9fbb-0a2c70d5c832@6c48a", + "displayName": "Normal6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5503ad78-773a-4373-9fbb-0a2c70d5c832", + "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": "5503ad78-773a-4373-9fbb-0a2c70d5c832@f9941", + "displayName": "Normal6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 63, + "height": 64, + "rawWidth": 67, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -31.5, + -32, + 0, + 31.5, + -32, + 0, + -31.5, + 32, + 0, + 31.5, + 32, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 66, + 65, + 66, + 2, + 2, + 65, + 2 + ], + "nuv": [ + 0.029850746268656716, + 0.029411764705882353, + 0.9701492537313433, + 0.029411764705882353, + 0.029850746268656716, + 0.9705882352941176, + 0.9701492537313433, + 0.9705882352941176 + ], + "minPos": [ + -31.5, + -32, + 0 + ], + "maxPos": [ + 31.5, + 32, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5503ad78-773a-4373-9fbb-0a2c70d5c832@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5503ad78-773a-4373-9fbb-0a2c70d5c832@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal7.png b/assets/resources/i18nSprite2/zh/Normal7.png new file mode 100755 index 0000000..4549eb7 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal7.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal7.png.meta b/assets/resources/i18nSprite2/zh/Normal7.png.meta new file mode 100644 index 0000000..f5acda8 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "91268caa-6b44-4445-8e20-1d6c49f3777b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "91268caa-6b44-4445-8e20-1d6c49f3777b@6c48a", + "displayName": "Normal7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "91268caa-6b44-4445-8e20-1d6c49f3777b", + "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": "91268caa-6b44-4445-8e20-1d6c49f3777b@f9941", + "displayName": "Normal7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 196, + "height": 65, + "rawWidth": 200, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -98, + -32.5, + 0, + 98, + -32.5, + 0, + -98, + 32.5, + 0, + 98, + 32.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 67, + 198, + 67, + 2, + 2, + 198, + 2 + ], + "nuv": [ + 0.01, + 0.028985507246376812, + 0.99, + 0.028985507246376812, + 0.01, + 0.9710144927536232, + 0.99, + 0.9710144927536232 + ], + "minPos": [ + -98, + -32.5, + 0 + ], + "maxPos": [ + 98, + 32.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "91268caa-6b44-4445-8e20-1d6c49f3777b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "91268caa-6b44-4445-8e20-1d6c49f3777b@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal8.png b/assets/resources/i18nSprite2/zh/Normal8.png new file mode 100755 index 0000000..225c445 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal8.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal8.png.meta b/assets/resources/i18nSprite2/zh/Normal8.png.meta new file mode 100644 index 0000000..7f35d58 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee4cae35-8199-4f2e-9767-c88c6fd99c1c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee4cae35-8199-4f2e-9767-c88c6fd99c1c@6c48a", + "displayName": "Normal8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee4cae35-8199-4f2e-9767-c88c6fd99c1c", + "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": "ee4cae35-8199-4f2e-9767-c88c6fd99c1c@f9941", + "displayName": "Normal8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 738, + "height": 51, + "rawWidth": 742, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -369, + -25.5, + 0, + 369, + -25.5, + 0, + -369, + 25.5, + 0, + 369, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 53, + 740, + 53, + 2, + 2, + 740, + 2 + ], + "nuv": [ + 0.0026954177897574125, + 0.03636363636363636, + 0.9973045822102425, + 0.03636363636363636, + 0.0026954177897574125, + 0.9636363636363636, + 0.9973045822102425, + 0.9636363636363636 + ], + "minPos": [ + -369, + -25.5, + 0 + ], + "maxPos": [ + 369, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee4cae35-8199-4f2e-9767-c88c6fd99c1c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee4cae35-8199-4f2e-9767-c88c6fd99c1c@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Normal9.png b/assets/resources/i18nSprite2/zh/Normal9.png new file mode 100755 index 0000000..9a4f3cd Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Normal9.png differ diff --git a/assets/resources/i18nSprite2/zh/Normal9.png.meta b/assets/resources/i18nSprite2/zh/Normal9.png.meta new file mode 100644 index 0000000..667d768 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Normal9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9da02d04-45dc-4ae4-93d2-79e7da67b442", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9da02d04-45dc-4ae4-93d2-79e7da67b442@6c48a", + "displayName": "Normal9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9da02d04-45dc-4ae4-93d2-79e7da67b442", + "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": "9da02d04-45dc-4ae4-93d2-79e7da67b442@f9941", + "displayName": "Normal9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 601, + "height": 75, + "rawWidth": 601, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -300.5, + -37.5, + 0, + 300.5, + -37.5, + 0, + -300.5, + 37.5, + 0, + 300.5, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 75, + 601, + 75, + 0, + 0, + 601, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -300.5, + -37.5, + 0 + ], + "maxPos": [ + 300.5, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9da02d04-45dc-4ae4-93d2-79e7da67b442@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9da02d04-45dc-4ae4-93d2-79e7da67b442@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Win1.png b/assets/resources/i18nSprite2/zh/Win1.png new file mode 100755 index 0000000..2ab8e8a Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Win1.png differ diff --git a/assets/resources/i18nSprite2/zh/Win1.png.meta b/assets/resources/i18nSprite2/zh/Win1.png.meta new file mode 100644 index 0000000..71809a9 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Win1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "260cefef-1f65-4fc2-bb3d-86ce365a4ab3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "260cefef-1f65-4fc2-bb3d-86ce365a4ab3@6c48a", + "displayName": "Win1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "260cefef-1f65-4fc2-bb3d-86ce365a4ab3", + "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": "260cefef-1f65-4fc2-bb3d-86ce365a4ab3@f9941", + "displayName": "Win1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 563, + "height": 294, + "rawWidth": 563, + "rawHeight": 294, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -281.5, + -147, + 0, + 281.5, + -147, + 0, + -281.5, + 147, + 0, + 281.5, + 147, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 294, + 563, + 294, + 0, + 0, + 563, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -281.5, + -147, + 0 + ], + "maxPos": [ + 281.5, + 147, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "260cefef-1f65-4fc2-bb3d-86ce365a4ab3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "260cefef-1f65-4fc2-bb3d-86ce365a4ab3@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Win2.png b/assets/resources/i18nSprite2/zh/Win2.png new file mode 100755 index 0000000..ab010dc Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Win2.png differ diff --git a/assets/resources/i18nSprite2/zh/Win2.png.meta b/assets/resources/i18nSprite2/zh/Win2.png.meta new file mode 100644 index 0000000..3b43c39 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Win2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b77b93cb-3ac0-4a2a-8f76-747fb17ed489", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b77b93cb-3ac0-4a2a-8f76-747fb17ed489@6c48a", + "displayName": "Win2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b77b93cb-3ac0-4a2a-8f76-747fb17ed489", + "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": "b77b93cb-3ac0-4a2a-8f76-747fb17ed489@f9941", + "displayName": "Win2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 548, + "height": 294, + "rawWidth": 548, + "rawHeight": 294, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -274, + -147, + 0, + 274, + -147, + 0, + -274, + 147, + 0, + 274, + 147, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 294, + 548, + 294, + 0, + 0, + 548, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -274, + -147, + 0 + ], + "maxPos": [ + 274, + 147, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b77b93cb-3ac0-4a2a-8f76-747fb17ed489@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b77b93cb-3ac0-4a2a-8f76-747fb17ed489@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/Win3.png b/assets/resources/i18nSprite2/zh/Win3.png new file mode 100755 index 0000000..709e305 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/Win3.png differ diff --git a/assets/resources/i18nSprite2/zh/Win3.png.meta b/assets/resources/i18nSprite2/zh/Win3.png.meta new file mode 100644 index 0000000..508b17f --- /dev/null +++ b/assets/resources/i18nSprite2/zh/Win3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "67d7af88-6116-400a-8aa9-efedbe5244b4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "67d7af88-6116-400a-8aa9-efedbe5244b4@6c48a", + "displayName": "Win3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "67d7af88-6116-400a-8aa9-efedbe5244b4", + "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": "67d7af88-6116-400a-8aa9-efedbe5244b4@f9941", + "displayName": "Win3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 931, + "height": 278, + "rawWidth": 931, + "rawHeight": 278, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -465.5, + -139, + 0, + 465.5, + -139, + 0, + -465.5, + 139, + 0, + 465.5, + 139, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 278, + 931, + 278, + 0, + 0, + 931, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -465.5, + -139, + 0 + ], + "maxPos": [ + 465.5, + 139, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "67d7af88-6116-400a-8aa9-efedbe5244b4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "67d7af88-6116-400a-8aa9-efedbe5244b4@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/logo1.png b/assets/resources/i18nSprite2/zh/logo1.png new file mode 100755 index 0000000..fca657d Binary files /dev/null and b/assets/resources/i18nSprite2/zh/logo1.png differ diff --git a/assets/resources/i18nSprite2/zh/logo1.png.meta b/assets/resources/i18nSprite2/zh/logo1.png.meta new file mode 100644 index 0000000..6b69a6e --- /dev/null +++ b/assets/resources/i18nSprite2/zh/logo1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7b32201a-9f8d-4fa7-828d-05de06163f80", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7b32201a-9f8d-4fa7-828d-05de06163f80@6c48a", + "displayName": "logo1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7b32201a-9f8d-4fa7-828d-05de06163f80", + "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": "7b32201a-9f8d-4fa7-828d-05de06163f80@f9941", + "displayName": "logo1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 679, + "height": 238, + "rawWidth": 679, + "rawHeight": 238, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -339.5, + -119, + 0, + 339.5, + -119, + 0, + -339.5, + 119, + 0, + 339.5, + 119, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 238, + 679, + 238, + 0, + 0, + 679, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -339.5, + -119, + 0 + ], + "maxPos": [ + 339.5, + 119, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7b32201a-9f8d-4fa7-828d-05de06163f80@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7b32201a-9f8d-4fa7-828d-05de06163f80@6c48a" + } +} diff --git a/assets/resources/i18nSprite2/zh/zxksctter.png b/assets/resources/i18nSprite2/zh/zxksctter.png new file mode 100755 index 0000000..31913e2 Binary files /dev/null and b/assets/resources/i18nSprite2/zh/zxksctter.png differ diff --git a/assets/resources/i18nSprite2/zh/zxksctter.png.meta b/assets/resources/i18nSprite2/zh/zxksctter.png.meta new file mode 100644 index 0000000..e4c9344 --- /dev/null +++ b/assets/resources/i18nSprite2/zh/zxksctter.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "48b188ac-83fb-4883-b348-75d35d81d7a9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "48b188ac-83fb-4883-b348-75d35d81d7a9@6c48a", + "displayName": "zxksctter", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "48b188ac-83fb-4883-b348-75d35d81d7a9", + "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": "48b188ac-83fb-4883-b348-75d35d81d7a9@f9941", + "displayName": "zxksctter", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 268, + "height": 126, + "rawWidth": 272, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -134, + -63, + 0, + 134, + -63, + 0, + -134, + 63, + 0, + 134, + 63, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 128, + 270, + 128, + 2, + 2, + 270, + 2 + ], + "nuv": [ + 0.007352941176470588, + 0.015384615384615385, + 0.9926470588235294, + 0.015384615384615385, + 0.007352941176470588, + 0.9846153846153847, + 0.9926470588235294, + 0.9846153846153847 + ], + "minPos": [ + -134, + -63, + 0 + ], + "maxPos": [ + 134, + 63, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "48b188ac-83fb-4883-b348-75d35d81d7a9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "48b188ac-83fb-4883-b348-75d35d81d7a9@6c48a" + } +} diff --git a/settings/v2/packages/builder.json b/settings/v2/packages/builder.json index 7526e40..7c6eb74 100644 --- a/settings/v2/packages/builder.json +++ b/settings/v2/packages/builder.json @@ -1,3 +1,11 @@ { - "__version__": "1.3.9" + "__version__": "1.3.9", + "splash-setting": { + "logo": { + "type": "none" + }, + "background": { + "type": "default" + } + } } diff --git a/settings/v2/packages/information.json b/settings/v2/packages/information.json index 866911e..051c22a 100644 --- a/settings/v2/packages/information.json +++ b/settings/v2/packages/information.json @@ -6,7 +6,7 @@ "label": "customSplash", "enable": true, "customSplash": { - "complete": false, + "complete": true, "form": "https://creator-api.cocos.com/api/form/show?sid=0ec06da7277f8cd92c7de60e497f8ded" } }, diff --git a/settings/v2/packages/project.json b/settings/v2/packages/project.json index 4129dde..527da87 100644 --- a/settings/v2/packages/project.json +++ b/settings/v2/packages/project.json @@ -1,3 +1,9 @@ { - "__version__": "1.0.6" + "__version__": "1.0.6", + "general": { + "designResolution": { + "width": 1080, + "height": 1920 + } + } }