初始 版本
|
@ -7220,7 +7220,7 @@
|
|||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-421.43,
|
||||
-390,
|
||||
-90.338,
|
||||
0,
|
||||
0,
|
||||
|
|
|
@ -188,6 +188,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
|
||||
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
|
||||
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
|
||||
console.log("当前关卡时间", this.timeNumber);
|
||||
|
||||
this.count_Time = 0;
|
||||
this.add_Time = 0;
|
||||
|
@ -195,7 +196,7 @@ export default class MapConroler extends cc.Component {
|
|||
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
|
||||
// this.timeLabel.string = timeTemp.toString();
|
||||
NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 50, 20, "level_", this.levelLabel, false)
|
||||
|
||||
console.log("当前关卡", cc.fx.GameConfig.GM_INFO.level + 1);
|
||||
//this.startTimeCutDown();
|
||||
|
||||
this.mapWidth = cc.fx.GameConfig.LEVEL_INFO[0].map[0];
|
||||
|
|
|
@ -1133,10 +1133,12 @@ export namespace MiniGameSdk {
|
|||
}
|
||||
|
||||
static shushu_Login() {
|
||||
API._ta.login(cc.fx.GameConfig.GM_INFO.openid);
|
||||
const result = "success";
|
||||
API.shushu_Track("login", result);
|
||||
API.shushu_SetSuperProperties();
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
API._ta.login(cc.fx.GameConfig.GM_INFO.openid);
|
||||
const result = "success";
|
||||
API.shushu_Track("login", result);
|
||||
API.shushu_SetSuperProperties();
|
||||
}
|
||||
}
|
||||
|
||||
static shushu_userSet(time) {
|
||||
|
|
116
assets/Script/setUi.ts
Normal file
|
@ -0,0 +1,116 @@
|
|||
// Learn TypeScript:
|
||||
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
|
||||
// Learn Attribute:
|
||||
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
|
||||
// Learn life-cycle callbacks:
|
||||
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
|
||||
|
||||
|
||||
const { ccclass, property } = cc._decorator;
|
||||
|
||||
|
||||
@ccclass
|
||||
export default class setUi extends cc.Component {
|
||||
static _instance: any;
|
||||
time: number = 0;
|
||||
|
||||
@property(cc.Node)
|
||||
music: cc.Node = null;
|
||||
|
||||
@property(cc.Node)
|
||||
effect: cc.Node = null;
|
||||
|
||||
@property(cc.Node)
|
||||
vibrate: cc.Node = null;
|
||||
|
||||
|
||||
// mapInfo: number[][] = [];
|
||||
|
||||
musicState: boolean = true;
|
||||
effectState: boolean = true;
|
||||
vibrateState: boolean = true;
|
||||
|
||||
onLoad() {
|
||||
|
||||
this.musicState = cc.fx.GameConfig.GM_INFO.musicOpen;
|
||||
this.effectState = cc.fx.GameConfig.GM_INFO.effectOpen;
|
||||
this.vibrateState = cc.fx.GameConfig.GM_INFO.vibrateOpen;
|
||||
console.log("音乐状态", this.musicState);
|
||||
console.log("音效状态", this.effectState);
|
||||
console.log("震动状态", this.vibrateState);
|
||||
this.syncToggleState();
|
||||
}
|
||||
|
||||
start() {
|
||||
}
|
||||
|
||||
init(time) {
|
||||
|
||||
}
|
||||
|
||||
clickMusic() {
|
||||
if (this.musicState) {
|
||||
this.musicState = false;
|
||||
cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState;
|
||||
|
||||
this.setMusicConfig();
|
||||
cc.fx.AudioManager._instance.stopMusic();
|
||||
}
|
||||
else {
|
||||
this.musicState = true;
|
||||
cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState;
|
||||
this.setMusicConfig();
|
||||
cc.fx.AudioManager._instance.playMusicGame();
|
||||
}
|
||||
}
|
||||
|
||||
setMusicConfig() {
|
||||
let audioInfo = {
|
||||
"musicOpen": cc.fx.GameConfig.GM_INFO.musicOpen, //音乐
|
||||
"effectOpen": cc.fx.GameConfig.GM_INFO.effectOpen, //音效
|
||||
"vibrateOpen": cc.fx.GameConfig.GM_INFO.vibrateOpen, //震动
|
||||
}
|
||||
cc.fx.StorageMessage.setStorage("music", audioInfo);
|
||||
}
|
||||
|
||||
clickEffect() {
|
||||
if (this.effectState) {
|
||||
this.effectState = false;
|
||||
cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState;
|
||||
this.setMusicConfig();
|
||||
}
|
||||
else {
|
||||
this.effectState = true;
|
||||
cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState;
|
||||
this.setMusicConfig();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
clickVibrate() {
|
||||
if (this.vibrateState) {
|
||||
this.vibrateState = false;
|
||||
cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState;
|
||||
this.setMusicConfig();
|
||||
|
||||
}
|
||||
else {
|
||||
this.vibrateState = true;
|
||||
cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState;
|
||||
this.setMusicConfig();
|
||||
|
||||
}
|
||||
}
|
||||
syncToggleState() {
|
||||
this.music.getComponent(cc.Toggle).isChecked = !this.musicState;
|
||||
this.effect.getComponent(cc.Toggle).isChecked = !this.effectState;
|
||||
this.vibrate.getComponent(cc.Toggle).isChecked = !this.vibrateState;
|
||||
}
|
||||
|
||||
//关闭ui
|
||||
closeUi() {
|
||||
this.node.active = false;
|
||||
}
|
||||
|
||||
// update (dt) {}
|
||||
}
|
10
assets/Script/setUi.ts.meta
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "19d95d9d-e645-41ac-b4b3-00819e12514a",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
1766
assets/UI/UI/set/commonUi-0.plist
Normal file
3095
assets/UI/UI/set/commonUi-0.plist.meta
Normal file
BIN
assets/UI/UI/set/commonUi-0.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
15
assets/UI/UI/set/commonUi-0.png.meta
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "e05177b7-0b07-4cd3-8573-0cd2432f6181",
|
||||
"importer": "texture",
|
||||
"type": "raw",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 1866,
|
||||
"height": 1792,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
}
|
1766
assets/UI/UI/set/texture_atlas-0.plist
Normal file
2960
assets/UI/UI/set/texture_atlas-0.plist.meta
Normal file
BIN
assets/UI/UI/案例.jpg
Normal file
After Width: | Height: | Size: 273 KiB |
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "fcaa412a-64a2-4cdc-937f-1f4fbc527dfc",
|
||||
"uuid": "de563d8c-eee2-42f8-bbbb-47b6149eed20",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
|
@ -8,15 +8,15 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 154,
|
||||
"height": 598,
|
||||
"width": 1080,
|
||||
"height": 2340,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"tiaodik": {
|
||||
"案例": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "abe182b3-b936-4f20-ba7c-8d2456d35c89",
|
||||
"uuid": "39358efa-d18b-425f-b6ee-4b63813bccea",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "fcaa412a-64a2-4cdc-937f-1f4fbc527dfc",
|
||||
"rawTextureUuid": "de563d8c-eee2-42f8-bbbb-47b6149eed20",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
|
@ -24,10 +24,10 @@
|
|||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 154,
|
||||
"height": 598,
|
||||
"rawWidth": 154,
|
||||
"rawHeight": 598,
|
||||
"width": 1080,
|
||||
"height": 2340,
|
||||
"rawWidth": 1080,
|
||||
"rawHeight": 2340,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
Before Width: | Height: | Size: 3.6 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "ea09c71c-5b5d-4b24-9b62-d93b291d93c2",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 99,
|
||||
"height": 531,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"btn1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "45958bbb-14ca-46de-8371-3da25ccfb808",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ea09c71c-5b5d-4b24-9b62-d93b291d93c2",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 99,
|
||||
"height": 531,
|
||||
"rawWidth": 99,
|
||||
"rawHeight": 531,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 13 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "5f5f473c-d88a-4bff-bb6b-2a5f6b2208e8",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 163,
|
||||
"height": 151,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "d0050bfc-d0b9-4848-807e-cbacf0c4a253",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "5f5f473c-d88a-4bff-bb6b-2a5f6b2208e8",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 163,
|
||||
"height": 151,
|
||||
"rawWidth": 163,
|
||||
"rawHeight": 151,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 17 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "14a00731-8325-4675-8abd-da6b581a7266",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 171,
|
||||
"height": 191,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins4": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9b9d9148-3213-4a92-a6a3-37e7606d73df",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "14a00731-8325-4675-8abd-da6b581a7266",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 171,
|
||||
"height": 191,
|
||||
"rawWidth": 171,
|
||||
"rawHeight": 191,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 19 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "270ef871-ac9d-4ba7-91d1-7d7624c3aed9",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 231,
|
||||
"height": 169,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins5": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "7afab640-c900-437d-bf03-4d10d3c5b91e",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "270ef871-ac9d-4ba7-91d1-7d7624c3aed9",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 231,
|
||||
"height": 169,
|
||||
"rawWidth": 231,
|
||||
"rawHeight": 169,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 21 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "30543705-d10e-4279-a2fb-d2225b570bb4",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 240,
|
||||
"height": 182,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins6": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "d59eec63-4069-4240-8862-3a5dec033980",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "30543705-d10e-4279-a2fb-d2225b570bb4",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 240,
|
||||
"height": 182,
|
||||
"rawWidth": 240,
|
||||
"rawHeight": 182,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 21 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "96c15f9c-935e-4e9d-b5c0-f95e5d429f5c",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 185,
|
||||
"height": 206,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins7": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "cc4ed551-4143-40db-a3b6-d2c09a978701",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "96c15f9c-935e-4e9d-b5c0-f95e5d429f5c",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 185,
|
||||
"height": 206,
|
||||
"rawWidth": 185,
|
||||
"rawHeight": 206,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 23 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "4dbc349a-8dbd-4753-8e82-378b916ea36b",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 213,
|
||||
"height": 195,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins8": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "a1f844fe-88a2-4ea6-a719-ad1ea3d9302a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "4dbc349a-8dbd-4753-8e82-378b916ea36b",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 213,
|
||||
"height": 195,
|
||||
"rawWidth": 213,
|
||||
"rawHeight": 195,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 13 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1e3dbd9c-6c1c-420b-9320-e27f3195e6d0",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 327,
|
||||
"height": 454,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_di": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c4ffe50c-173b-4bff-9661-3573003616ca",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1e3dbd9c-6c1c-420b-9320-e27f3195e6d0",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 327,
|
||||
"height": 454,
|
||||
"rawWidth": 327,
|
||||
"rawHeight": 454,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "0734a70a-118d-4d9d-9a9f-9a61c11641d2",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 47,
|
||||
"height": 49,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz0": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9e677504-e0a3-481d-9b9f-c02de8347b7e",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "0734a70a-118d-4d9d-9a9f-9a61c11641d2",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 47,
|
||||
"height": 49,
|
||||
"rawWidth": 47,
|
||||
"rawHeight": 49,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1010 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "58481a2a-4229-43d2-bd30-69e4f09cfe4b",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 23,
|
||||
"height": 51,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "292f0765-53d0-4c3b-8220-35bf2bc17034",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "58481a2a-4229-43d2-bd30-69e4f09cfe4b",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 23,
|
||||
"height": 51,
|
||||
"rawWidth": 23,
|
||||
"rawHeight": 51,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 617 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "6c076da3-bb21-4e43-9e7e-d88b44bd01f4",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 19,
|
||||
"height": 23,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz10": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "6fe20747-a786-4f14-9f08-82415430bfa8",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "6c076da3-bb21-4e43-9e7e-d88b44bd01f4",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 19,
|
||||
"height": 23,
|
||||
"rawWidth": 19,
|
||||
"rawHeight": 23,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1004 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "852ff94f-f07c-447b-93fa-a9adcb1a069b",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 39,
|
||||
"height": 47,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz11": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "d2daf530-25b4-4c2c-99bc-bfd1b7745219",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "852ff94f-f07c-447b-93fa-a9adcb1a069b",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 39,
|
||||
"height": 47,
|
||||
"rawWidth": 39,
|
||||
"rawHeight": 47,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 2.0 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "6112faa1-3935-48de-a5a8-3369a63cead8",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 64,
|
||||
"height": 65,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz12": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "2952f12c-0d8c-490a-8fc0-62704a384180",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "6112faa1-3935-48de-a5a8-3369a63cead8",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 64,
|
||||
"height": 65,
|
||||
"rawWidth": 64,
|
||||
"rawHeight": 65,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "efc62fa5-f8bc-4661-8eb9-f6e2cb5b4ad7",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 67,
|
||||
"height": 69,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz13": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "e500caa6-8465-4a14-9eb8-75bc09a5462a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "efc62fa5-f8bc-4661-8eb9-f6e2cb5b4ad7",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 67,
|
||||
"height": 69,
|
||||
"rawWidth": 67,
|
||||
"rawHeight": 69,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1217c0be-cc7e-41be-b105-7c26baf444ff",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 44,
|
||||
"height": 50,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b3ba5b71-7bdb-4a06-8c79-54b3e60d190d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1217c0be-cc7e-41be-b105-7c26baf444ff",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 44,
|
||||
"height": 50,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 50,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "e9077dbb-d18e-45d5-aae4-9f46b103ed05",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 44,
|
||||
"height": 61,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz3": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c9bbe275-ebab-49b9-95e9-b6169ef4fe06",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "e9077dbb-d18e-45d5-aae4-9f46b103ed05",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 44,
|
||||
"height": 61,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "76467e5a-9a87-4d17-afae-777d7ff638a1",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 44,
|
||||
"height": 63,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz4": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "443993eb-6346-401e-94a4-f898f6ab86af",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "76467e5a-9a87-4d17-afae-777d7ff638a1",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 44,
|
||||
"height": 63,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 63,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "774d1aad-d081-44e1-9d68-9a3fd767aba3",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 42,
|
||||
"height": 60,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz5": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "ab144d76-17a8-43f2-a8da-3767e4f801fe",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "774d1aad-d081-44e1-9d68-9a3fd767aba3",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 42,
|
||||
"height": 60,
|
||||
"rawWidth": 42,
|
||||
"rawHeight": 60,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "08a0b3cf-1219-46ba-8171-206dfe24151b",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 44,
|
||||
"height": 60,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz6": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f6eaa69d-1533-4a6f-a7b5-9daf1d3ced4e",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "08a0b3cf-1219-46ba-8171-206dfe24151b",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 44,
|
||||
"height": 60,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 60,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "47d4dd52-9152-4724-ab77-4e9d15e14c2e",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 42,
|
||||
"height": 59,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz7": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "88efa2bb-2d4d-49c9-ae8b-cf4c3154cfbe",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "47d4dd52-9152-4724-ab77-4e9d15e14c2e",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 42,
|
||||
"height": 59,
|
||||
"rawWidth": 42,
|
||||
"rawHeight": 59,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.9 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "74db3129-e7a8-4b0b-baf9-e271bdfab9ba",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 44,
|
||||
"height": 63,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz8": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "fd18d6ff-5af2-4edf-a197-040823eb5855",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "74db3129-e7a8-4b0b-baf9-e271bdfab9ba",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 44,
|
||||
"height": 63,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 63,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "3b8e0a01-7634-402d-a8d2-349fbbc809f6",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 43,
|
||||
"height": 61,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"coins_sz9": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c512f489-2fcc-429d-8d24-51a7b9f52b2b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "3b8e0a01-7634-402d-a8d2-349fbbc809f6",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 43,
|
||||
"height": 61,
|
||||
"rawWidth": 43,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 855 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "12c63ed2-bf61-4b5b-8d37-781d02f4386c",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 30,
|
||||
"height": 38,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_0": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b024605a-48a6-437b-aa90-9daca75bc6d0",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "12c63ed2-bf61-4b5b-8d37-781d02f4386c",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 30,
|
||||
"height": 38,
|
||||
"rawWidth": 30,
|
||||
"rawHeight": 38,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 389 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "b6cc00c9-4bc9-48a7-b075-af04e0f8cfe8",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 16,
|
||||
"height": 36,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "8e065543-ec06-474c-af70-702fef926644",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "b6cc00c9-4bc9-48a7-b075-af04e0f8cfe8",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 16,
|
||||
"height": 36,
|
||||
"rawWidth": 16,
|
||||
"rawHeight": 36,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 271 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "76a01e2d-248a-494c-a56c-c14e4f26a3b0",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 9,
|
||||
"height": 10,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_10": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "57b54d9a-f5da-4b63-ab6b-c5f53ec4a0b7",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "76a01e2d-248a-494c-a56c-c14e4f26a3b0",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 9,
|
||||
"height": 10,
|
||||
"rawWidth": 9,
|
||||
"rawHeight": 10,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 275 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1019c0e2-cc2c-4dde-93e4-86b676bc69cd",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 33,
|
||||
"height": 33,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_11": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "84079931-0966-46a2-956e-a0951ca34b32",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1019c0e2-cc2c-4dde-93e4-86b676bc69cd",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 33,
|
||||
"height": 33,
|
||||
"rawWidth": 33,
|
||||
"rawHeight": 33,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 741 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "227db116-a70e-4157-b553-bfe8d6d18a6a",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 25,
|
||||
"height": 37,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "629ee23a-5227-4422-86d7-cddfb32e1d2a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "227db116-a70e-4157-b553-bfe8d6d18a6a",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 25,
|
||||
"height": 37,
|
||||
"rawWidth": 25,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 748 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "db683201-2fb0-4753-bf65-3ae7ef314627",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 23,
|
||||
"height": 37,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_3": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "74c44682-bd60-4ab9-ba74-d1a6de9c80d7",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "db683201-2fb0-4753-bf65-3ae7ef314627",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 23,
|
||||
"height": 37,
|
||||
"rawWidth": 23,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 618 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "f1cd9c7b-a0b7-41fc-94c2-db60d6a51281",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 28,
|
||||
"height": 37,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_4": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b7e6594c-63af-4309-87ee-b9f1476a9d4b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "f1cd9c7b-a0b7-41fc-94c2-db60d6a51281",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 28,
|
||||
"height": 37,
|
||||
"rawWidth": 28,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 694 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "9ffc3971-f097-4de5-b88a-2e5e6d78104a",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 25,
|
||||
"height": 36,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_5": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f0d924c0-19bb-45cd-b55c-f3c9451f0f55",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "9ffc3971-f097-4de5-b88a-2e5e6d78104a",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 25,
|
||||
"height": 36,
|
||||
"rawWidth": 25,
|
||||
"rawHeight": 36,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 750 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "c8b66182-996c-4377-8d0a-024d8b17e581",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 26,
|
||||
"height": 38,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_6": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5d07235b-2f5d-48b7-996f-96c720a1b95d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "c8b66182-996c-4377-8d0a-024d8b17e581",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 26,
|
||||
"height": 38,
|
||||
"rawWidth": 26,
|
||||
"rawHeight": 38,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 622 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "f0c1b219-0608-4a6c-aef0-59fc9db4955e",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 29,
|
||||
"height": 37,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_7": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5e41d88b-082f-4943-868a-ed7dbe069b38",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "f0c1b219-0608-4a6c-aef0-59fc9db4955e",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 29,
|
||||
"height": 37,
|
||||
"rawWidth": 29,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 806 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "c6022e1d-b8c5-498b-a3c1-740387f6d647",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 26,
|
||||
"height": 38,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_8": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "66dc5e3b-049f-4fe0-a915-588ff847477c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "c6022e1d-b8c5-498b-a3c1-740387f6d647",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 26,
|
||||
"height": 38,
|
||||
"rawWidth": 26,
|
||||
"rawHeight": 38,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 780 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "621ae85f-f4e4-48a1-9e97-1cdfd769677d",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 27,
|
||||
"height": 39,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_9": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "058187b7-47d9-4c89-a131-e700f642ebf9",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "621ae85f-f4e4-48a1-9e97-1cdfd769677d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 27,
|
||||
"height": 39,
|
||||
"rawWidth": 27,
|
||||
"rawHeight": 39,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 883 B |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "6b7f9211-7903-45b4-b2e2-d388ba17e935",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 46,
|
||||
"height": 43,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"cost_yuan": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "cb33205e-e96b-4d22-bd92-4b201b1247de",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "6b7f9211-7903-45b4-b2e2-d388ba17e935",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 46,
|
||||
"height": 43,
|
||||
"rawWidth": 46,
|
||||
"rawHeight": 43,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 260 KiB After Width: | Height: | Size: 448 KiB |
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1742fc3d-1b8c-4003-9979-8f29dadd7520",
|
||||
"uuid": "0fb4aec7-ce6d-40d7-949d-563c8710f75c",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
|
@ -14,9 +14,9 @@
|
|||
"subMetas": {
|
||||
"shop_1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "e03c6d2e-80b8-4f9b-abab-5f18bcdd71b8",
|
||||
"uuid": "11bc6aa1-f82e-42c0-8581-7cc70ba6cde0",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1742fc3d-1b8c-4003-9979-8f29dadd7520",
|
||||
"rawTextureUuid": "0fb4aec7-ce6d-40d7-949d-563c8710f75c",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
|
|
431
assets/shop/img/shuzi.plist
Normal file
|
@ -0,0 +1,431 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>frames</key>
|
||||
<dict>
|
||||
<key>coins_sz0.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{47,49}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{47,49}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{72,68},{47,49}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz1.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{23,51}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{23,51}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,72},{23,51}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz10.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{19,23}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{19,23}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{319,42},{19,23}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>coins_sz11.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{39,47}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{39,47}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{121,68},{39,47}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz12.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{64,65}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{64,65}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{70,1},{64,65}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz13.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{67,69}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{67,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,1},{67,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz2.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{44,50}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{44,50}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{26,72},{44,50}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz3.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{44,61}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{44,61}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{207,66},{44,61}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>coins_sz4.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{44,63}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{44,63}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{136,1},{44,63}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz5.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{42,60}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{42,60}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{314,63},{42,60}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz6.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{44,60}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{44,60}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{273,1},{44,60}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz7.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{42,59}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{42,59}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{270,64},{42,59}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz8.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{44,63}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{44,63}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{182,1},{44,63}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>coins_sz9.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{43,61}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{43,61}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{228,1},{43,61}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_0.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{30,38}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{30,38}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{348,1},{30,38}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_1.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{16,36}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{16,36}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{344,42},{16,36}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>cost_10.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{9,10}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{9,10}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{162,114},{9,10}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>cost_11.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{33,33}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{33,33}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{415,87},{33,33}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_2.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{25,37}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{25,37}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{388,80},{25,37}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_3.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{23,37}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{23,37}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{382,41},{23,37}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_4.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{28,37}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{28,37}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{358,80},{28,37}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_5.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{25,36}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{25,36}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{415,60},{25,36}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>cost_6.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{26,38}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{26,38}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{380,1},{26,38}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_7.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{29,37}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{29,37}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{408,29},{29,37}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>cost_8.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{26,38}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{26,38}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{408,1},{26,38}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>cost_9.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{27,39}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{27,39}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{319,1},{27,39}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>cost_yuan.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{46,43}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{46,43}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{162,66},{46,43}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>metadata</key>
|
||||
<dict>
|
||||
<key>format</key>
|
||||
<integer>3</integer>
|
||||
<key>pixelFormat</key>
|
||||
<string>RGBA8888</string>
|
||||
<key>premultiplyAlpha</key>
|
||||
<false/>
|
||||
<key>realTextureFileName</key>
|
||||
<string>shuzi.png</string>
|
||||
<key>size</key>
|
||||
<string>{452,124}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:8c3cfc1457784699e71137301f770832:95b2536c4bbcfe6d3258b23f832effb5:8dfcd9ca55e684c31f5e6d4475a4bd24$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>shuzi.png</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
634
assets/shop/img/shuzi.plist.meta
Normal file
|
@ -0,0 +1,634 @@
|
|||
{
|
||||
"ver": "1.2.6",
|
||||
"uuid": "569f5a4d-beff-465f-be16-fc3bcf467850",
|
||||
"importer": "asset",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"size": {
|
||||
"width": 452,
|
||||
"height": 124
|
||||
},
|
||||
"type": "Texture Packer",
|
||||
"subMetas": {
|
||||
"coins_sz0.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f7cd0a40-56e7-4d44-ae0f-c0b8336cd9a0",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 72,
|
||||
"trimY": 68,
|
||||
"width": 47,
|
||||
"height": 49,
|
||||
"rawWidth": 47,
|
||||
"rawHeight": 49,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz1.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5a89f992-acc9-4739-8233-c57b5db0a123",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 72,
|
||||
"width": 23,
|
||||
"height": 51,
|
||||
"rawWidth": 23,
|
||||
"rawHeight": 51,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz10.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "49628cf9-eb96-41b2-a2c9-13168b9b03c1",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 319,
|
||||
"trimY": 42,
|
||||
"width": 19,
|
||||
"height": 23,
|
||||
"rawWidth": 19,
|
||||
"rawHeight": 23,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz11.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "86abe80b-15ed-4c52-892e-7ced36bbbea5",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 121,
|
||||
"trimY": 68,
|
||||
"width": 39,
|
||||
"height": 47,
|
||||
"rawWidth": 39,
|
||||
"rawHeight": 47,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz12.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "a69c275d-feb7-4eb6-aa11-104d24cf2da0",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 70,
|
||||
"trimY": 1,
|
||||
"width": 64,
|
||||
"height": 65,
|
||||
"rawWidth": 64,
|
||||
"rawHeight": 65,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz13.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "d5ac310b-0de6-4b85-9854-eceb6dbf39f5",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 1,
|
||||
"width": 67,
|
||||
"height": 69,
|
||||
"rawWidth": 67,
|
||||
"rawHeight": 69,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz2.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "3109fbd4-cfef-48a7-ac0f-56fb5fe101c7",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 26,
|
||||
"trimY": 72,
|
||||
"width": 44,
|
||||
"height": 50,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 50,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz3.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "bfe1bfb2-6b06-4ed2-a183-a20bd676ff2c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 207,
|
||||
"trimY": 66,
|
||||
"width": 44,
|
||||
"height": 61,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz4.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "4869026f-04ec-47b5-85f7-02ee2a1865d9",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 136,
|
||||
"trimY": 1,
|
||||
"width": 44,
|
||||
"height": 63,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 63,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz5.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "993d5de7-a09c-4c74-9d31-7abbe35d2ae1",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 314,
|
||||
"trimY": 63,
|
||||
"width": 42,
|
||||
"height": 60,
|
||||
"rawWidth": 42,
|
||||
"rawHeight": 60,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz6.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "cc957ffd-6fe4-4f67-80cb-ebf8a1d5d11d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 273,
|
||||
"trimY": 1,
|
||||
"width": 44,
|
||||
"height": 60,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 60,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz7.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "2f5b7b7c-5329-4e26-bc0d-869df502b262",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 270,
|
||||
"trimY": 64,
|
||||
"width": 42,
|
||||
"height": 59,
|
||||
"rawWidth": 42,
|
||||
"rawHeight": 59,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz8.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "ae8eff19-6ef0-46cc-88ba-5cc74fbd7e19",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 182,
|
||||
"trimY": 1,
|
||||
"width": 44,
|
||||
"height": 63,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 63,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"coins_sz9.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9f12c901-afef-41f1-8111-c7f7c4ec860f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 228,
|
||||
"trimY": 1,
|
||||
"width": 43,
|
||||
"height": 61,
|
||||
"rawWidth": 43,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_0.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "eda6def7-3f41-4e71-b328-27b858a8f167",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 348,
|
||||
"trimY": 1,
|
||||
"width": 30,
|
||||
"height": 38,
|
||||
"rawWidth": 30,
|
||||
"rawHeight": 38,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_1.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "3ae58373-6b26-4cad-9373-d00a87902b60",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 344,
|
||||
"trimY": 42,
|
||||
"width": 16,
|
||||
"height": 36,
|
||||
"rawWidth": 16,
|
||||
"rawHeight": 36,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_10.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "646c3b71-e143-4d0f-94e6-534c77123f6d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 162,
|
||||
"trimY": 114,
|
||||
"width": 9,
|
||||
"height": 10,
|
||||
"rawWidth": 9,
|
||||
"rawHeight": 10,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_11.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c5b62989-f18e-41f8-a950-68be1c4be79a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 415,
|
||||
"trimY": 87,
|
||||
"width": 33,
|
||||
"height": 33,
|
||||
"rawWidth": 33,
|
||||
"rawHeight": 33,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_2.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "1ced933d-f1a4-404f-893e-46a0e0a8b47f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 388,
|
||||
"trimY": 80,
|
||||
"width": 25,
|
||||
"height": 37,
|
||||
"rawWidth": 25,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_3.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "0474e049-57c0-451a-ba18-17d624cb4aef",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 382,
|
||||
"trimY": 41,
|
||||
"width": 23,
|
||||
"height": 37,
|
||||
"rawWidth": 23,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_4.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "2934e269-db62-4cd7-9c0c-c4c9358cfaa6",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 358,
|
||||
"trimY": 80,
|
||||
"width": 28,
|
||||
"height": 37,
|
||||
"rawWidth": 28,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_5.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c27b90ef-5231-40ff-9c47-380561e1cc77",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 415,
|
||||
"trimY": 60,
|
||||
"width": 25,
|
||||
"height": 36,
|
||||
"rawWidth": 25,
|
||||
"rawHeight": 36,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_6.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "30b3ef49-bd7e-47a6-84b2-da05678348a6",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 380,
|
||||
"trimY": 1,
|
||||
"width": 26,
|
||||
"height": 38,
|
||||
"rawWidth": 26,
|
||||
"rawHeight": 38,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_7.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "478f346f-7aa8-4f88-bb46-877d0e27e9f6",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 408,
|
||||
"trimY": 29,
|
||||
"width": 29,
|
||||
"height": 37,
|
||||
"rawWidth": 29,
|
||||
"rawHeight": 37,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_8.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "3ad60e42-8744-4068-b7dd-24ef792c21fe",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 408,
|
||||
"trimY": 1,
|
||||
"width": 26,
|
||||
"height": 38,
|
||||
"rawWidth": 26,
|
||||
"rawHeight": 38,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_9.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5b7e89b0-02ab-4c9b-814d-15978168c9e7",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 319,
|
||||
"trimY": 1,
|
||||
"width": 27,
|
||||
"height": 39,
|
||||
"rawWidth": 27,
|
||||
"rawHeight": 39,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"cost_yuan.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "8becca83-dce4-46e0-8d90-a3d85c978728",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 162,
|
||||
"trimY": 66,
|
||||
"width": 46,
|
||||
"height": 43,
|
||||
"rawWidth": 46,
|
||||
"rawHeight": 43,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/shop/img/shuzi.png
Normal file
After Width: | Height: | Size: 34 KiB |
15
assets/shop/img/shuzi.png.meta
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||
"importer": "texture",
|
||||
"type": "raw",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 452,
|
||||
"height": 124,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
}
|
Before Width: | Height: | Size: 8.1 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "a7020897-1d42-416a-ab6f-b99429684626",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 188,
|
||||
"height": 207,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"tx": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b8df47eb-4775-44ce-b2fc-5b694bcaaf2f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "a7020897-1d42-416a-ab6f-b99429684626",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 188,
|
||||
"height": 207,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 207,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 2.4 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "d824166e-71a9-461c-bd7d-2be020ff85b7",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 907,
|
||||
"height": 62,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"txt1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "546a566e-6902-431f-a072-b3d00fe9f788",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "d824166e-71a9-461c-bd7d-2be020ff85b7",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 907,
|
||||
"height": 62,
|
||||
"rawWidth": 907,
|
||||
"rawHeight": 62,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 2.5 KiB |
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "06097023-184a-44ab-be97-104b5b23de45",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 907,
|
||||
"height": 63,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"txt2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5cfee8ac-c734-44b4-9098-08a82de9f636",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "06097023-184a-44ab-be97-104b5b23de45",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 907,
|
||||
"height": 63,
|
||||
"rawWidth": 907,
|
||||
"rawHeight": 63,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -543,7 +543,9 @@
|
|||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_spriteFrame": null,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "11bc6aa1-f82e-42c0-8581-7cc70ba6cde0"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_fillType": 0,
|
||||
|
|
27
library/imports/00/0067bef8-35b3-4e41-9d45-ffb39b74450e.json
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"__type__": "cc.SpriteFrame",
|
||||
"content": {
|
||||
"name": "音乐tuzi_1",
|
||||
"atlas": "b5630b1e-0e45-4b38-a5c4-76b2fa8fad52",
|
||||
"rect": [
|
||||
1340,
|
||||
702,
|
||||
311,
|
||||
100
|
||||
],
|
||||
"offset": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"originalSize": [
|
||||
311,
|
||||
100
|
||||
],
|
||||
"capInsets": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|