Commit 8e7f2ef6 authored by 李维's avatar 李维

更新宝石素材

parent b739e1fc
...@@ -284,6 +284,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -284,6 +284,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
asyncPlayDragonBoneAnimation(playerDB, 'jump', -1); asyncPlayDragonBoneAnimation(playerDB, 'jump', -1);
return new Promise((resovle, reject) =>{ return new Promise((resovle, reject) =>{
cc.tween(playerNode).to(0.5, {x: pos.x, y: pos.y}).call(()=>{ cc.tween(playerNode).to(0.5, {x: pos.x, y: pos.y}).call(()=>{
gemNode.__node_text.active = false;
asyncPlayDragonBoneAnimation(playerDB, 'squat', -1); asyncPlayDragonBoneAnimation(playerDB, 'squat', -1);
resovle(null); resovle(null);
}).start(); }).start();
...@@ -291,7 +292,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -291,7 +292,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
} }
// 小人回家 // 小人回家
playerToHome(playerNode, homeNode) { playerToHome(playerNode, homeNode, gemNode) {
const pos = localPosTolocalPos(playerNode, homeNode); const pos = localPosTolocalPos(playerNode, homeNode);
playerNode.scaleX = 1; // 右看 playerNode.scaleX = 1; // 右看
let playerDB = null; let playerDB = null;
...@@ -300,10 +301,11 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -300,10 +301,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
} else { } else {
playerDB = this.bluePlayerDB; playerDB = this.bluePlayerDB;
} }
asyncPlayDragonBoneAnimation(playerDB, 'normal', -1);
asyncPlayDragonBoneAnimation(playerDB, 'jump', -1); asyncPlayDragonBoneAnimation(playerDB, 'jump', -1);
return new Promise((resovle, reject) =>{ return new Promise((resovle, reject) =>{
cc.tween(playerNode).to(0.5, {x: pos.x, y: pos.y}).call(()=>{ cc.tween(playerNode).to(0.5, {x: pos.x, y: pos.y}).call(()=>{
asyncPlayDragonBoneAnimation(playerDB, 'normal', -1); gemNode.__node_text.active = true;
resovle(null); resovle(null);
}).start(); }).start();
}) })
...@@ -560,32 +562,28 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -560,32 +562,28 @@ export default class SceneComponent extends MyCocosSceneComponent {
initGemstone() { initGemstone() {
const gemstoneGroup = cc.find("Canvas/center_map/gemstone"); const gemstoneGroup = cc.find("Canvas/center_map/gemstone");
gemstoneGroup.children.forEach((gem,index)=>{ gemstoneGroup.children.forEach((gem,index)=>{
let itemData = gem.addComponent('OPW_BoardGame_L5R4_word_dataitem');
gem['__index'] = index; gem['__index'] = index;
gem['__isDone'] = false; gem['__isDone'] = false;
itemData.index = index; gem['__node_icon_text'] = cc.find("icon_text", gem);
itemData.word = gem.name.split("_")[0]; gem['__node_icon'] = cc.find("icon", gem);
itemData.score = Number(gem.name.split("_")[1]); gem['__node_text'] = cc.find("text", gem);
itemData.parentNode = gem;
itemData.beforeNode = cc.find("before", gem);
itemData.afterNode = cc.find("after", gem);
gem['__score'] = itemData.score;
gem['__letter'] = gem.name.split("_")[0]; gem['__letter'] = gem.name.split("_")[0];
gem['__score'] = Number(gem.name.split("_")[1]);
if(itemData.score == 1) { if(gem['__score'] == 1) {
gem['__arrIndex1'] = 0; gem['__arrIndex1'] = 0;
this.gemstones[0].push(gem); this.gemstones[0].push(gem);
} else if(itemData.score == 2) { } else if(gem['__score'] == 2) {
gem['__arrIndex1'] = 1; gem['__arrIndex1'] = 1;
this.gemstones[1].push(gem); this.gemstones[1].push(gem);
} else if(itemData.score == 3) { } else if(gem['__score'] == 3) {
gem['__arrIndex1'] = 2; gem['__arrIndex1'] = 2;
this.gemstones[2].push(gem); this.gemstones[2].push(gem);
} }
gem['__arrIndex2'] = index; gem['__arrIndex2'] = index;
gem['__node_icon_text'].active = false;
this.gemstonesAll.push(gem); this.gemstonesAll.push(gem);
itemData.afterNode.active = false;
}) })
} }
...@@ -652,11 +650,11 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -652,11 +650,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
} }
} else { } else {
if(this.currentGameSide == RED) { if(this.currentGameSide == RED) {
this.playerToHome(this.redPlayerNode, this.redPlayerHomeNode).then(()=>{ this.playerToHome(this.redPlayerNode, this.redPlayerHomeNode, this.gemstonesAll[param.gemIndex]).then(()=>{
next() next()
}) })
} else { } else {
this.playerToHome(this.bluePlayerNode, this.bluePlayerHomeNode).then(()=>{ this.playerToHome(this.bluePlayerNode, this.bluePlayerHomeNode, this.gemstonesAll[param.gemIndex]).then(()=>{
next() next()
}) })
} }
...@@ -721,7 +719,9 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -721,7 +719,9 @@ export default class SceneComponent extends MyCocosSceneComponent {
}, DEBUG?10:2000); }, DEBUG?10:2000);
} else { } else {
this.coolCat.active = false; this.coolCat.active = false;
this.pronunciationTestLayer.showVoice(this.gemstonesAll[param.index], this.gemstonesAll[param.index].__letter).then(res=>{ let testNodeShow = cc.instantiate(this.gemstonesAll[param.index].__node_icon_text);
testNodeShow.active = true;
this.pronunciationTestLayer.showVoice(testNodeShow, this.gemstonesAll[param.index].__letter).then(res=>{
this.coolCat.active = true; this.coolCat.active = true;
this.runEvent(MSG_PLAYER_TO_HOME, {success: res, gemIndex: param.index}); this.runEvent(MSG_PLAYER_TO_HOME, {success: res, gemIndex: param.index});
}) })
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 342, "height": 342,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"beautiful_befor": { "beautiful_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "dd2d0ac6-1613-4708-854d-8a74eb13aa29", "uuid": "dd2d0ac6-1613-4708-854d-8a74eb13aa29",
"rawTextureUuid": "48170526-146d-42d0-864c-9647f1284abd", "rawTextureUuid": "48170526-146d-42d0-864c-9647f1284abd",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 228, "height": 228,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"castle_befor": { "castle_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "df3ecbb0-cd3c-4339-ad1c-ad8fa07d2a14", "uuid": "df3ecbb0-cd3c-4339-ad1c-ad8fa07d2a14",
"rawTextureUuid": "ceca222d-0342-4411-a75d-d46236a14f02", "rawTextureUuid": "ceca222d-0342-4411-a75d-d46236a14f02",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 204, "height": 204,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"comb_befor": { "comb_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "398527d9-4cf9-4397-9268-3399f5fc0d7b", "uuid": "398527d9-4cf9-4397-9268-3399f5fc0d7b",
"rawTextureUuid": "92a6b742-7bca-4ffc-8b0c-6219d07dc8f4", "rawTextureUuid": "92a6b742-7bca-4ffc-8b0c-6219d07dc8f4",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 342, "height": 342,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"dangerous_befor": { "dangerous_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "76241bdb-7766-45df-a5ff-b2e32bdd7d33", "uuid": "76241bdb-7766-45df-a5ff-b2e32bdd7d33",
"rawTextureUuid": "5768186f-39fa-4c81-9bb1-d7ab01299467", "rawTextureUuid": "5768186f-39fa-4c81-9bb1-d7ab01299467",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 342, "height": 342,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"excursion_befor": { "excursion_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "944717c3-be29-4a0d-b4db-e2f75824783f", "uuid": "944717c3-be29-4a0d-b4db-e2f75824783f",
"rawTextureUuid": "d000e503-c27d-402c-9178-731e92fcb52b", "rawTextureUuid": "d000e503-c27d-402c-9178-731e92fcb52b",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 220, "height": 220,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"famous_befor": { "famous_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "31bc7b04-062c-43cc-92cd-1f1132b02b01", "uuid": "31bc7b04-062c-43cc-92cd-1f1132b02b01",
"rawTextureUuid": "9a7d90cb-1151-4396-a24d-a774e7d7ccf5", "rawTextureUuid": "9a7d90cb-1151-4396-a24d-a774e7d7ccf5",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 215, "height": 215,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"glove_befor": { "glove_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "39936b93-02aa-4d6d-8362-3976784d7588", "uuid": "39936b93-02aa-4d6d-8362-3976784d7588",
"rawTextureUuid": "77117e76-7e06-4b91-86cc-ab99ee25c7a2", "rawTextureUuid": "77117e76-7e06-4b91-86cc-ab99ee25c7a2",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 252, "height": 252,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"helpful_befor": { "helpful_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "0b436236-00cc-4f46-815b-348858f449ac", "uuid": "0b436236-00cc-4f46-815b-348858f449ac",
"rawTextureUuid": "d4a96e70-4e3a-4bde-b21e-487dca91ec3f", "rawTextureUuid": "d4a96e70-4e3a-4bde-b21e-487dca91ec3f",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 214, "height": 214,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"knee_befor": { "knee_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "27b06dbf-001d-4532-9aaf-e23c3f334d53", "uuid": "27b06dbf-001d-4532-9aaf-e23c3f334d53",
"rawTextureUuid": "f993c258-23bc-4115-ac43-339f93c24e91", "rawTextureUuid": "f993c258-23bc-4115-ac43-339f93c24e91",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 212, "height": 212,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"knife_befor": { "knife_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "5da8b1b8-a1b3-45e8-af8f-13e9dcffeb7a", "uuid": "5da8b1b8-a1b3-45e8-af8f-13e9dcffeb7a",
"rawTextureUuid": "b74e4639-1ad0-49a3-81bf-195249c2d008", "rawTextureUuid": "b74e4639-1ad0-49a3-81bf-195249c2d008",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 242, "height": 242,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"lamb_befor": { "lamb_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "ce3404cd-b5fa-47fb-a1c5-daa5aeed6d68", "uuid": "ce3404cd-b5fa-47fb-a1c5-daa5aeed6d68",
"rawTextureUuid": "33dd32a1-31e6-4347-b17b-8832a295fb7b", "rawTextureUuid": "33dd32a1-31e6-4347-b17b-8832a295fb7b",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 215, "height": 215,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"live_befor": { "live_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "45942699-88ce-4b3c-ac64-9018977e385b", "uuid": "45942699-88ce-4b3c-ac64-9018977e385b",
"rawTextureUuid": "7e6a369a-4512-4872-b89f-950b8c5797c3", "rawTextureUuid": "7e6a369a-4512-4872-b89f-950b8c5797c3",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 194, "height": 194,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"measure_befor": { "measure_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "a866f731-0e4b-4fe6-88c5-8c9a5c2e4540", "uuid": "a866f731-0e4b-4fe6-88c5-8c9a5c2e4540",
"rawTextureUuid": "ede2dfc7-7880-4daa-8ba9-22dfe47cb92b", "rawTextureUuid": "ede2dfc7-7880-4daa-8ba9-22dfe47cb92b",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 216, "height": 216,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"nature_befor": { "nature_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b4074160-6daa-4089-a8a2-d4abff318ab5", "uuid": "b4074160-6daa-4089-a8a2-d4abff318ab5",
"rawTextureUuid": "3f8c37b6-b52a-4083-9e7a-6f718211a2aa", "rawTextureUuid": "3f8c37b6-b52a-4083-9e7a-6f718211a2aa",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 258, "height": 258,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"picture_befor": { "picture_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "85ab564e-3d30-489f-a12b-e8aac1b744d0", "uuid": "85ab564e-3d30-489f-a12b-e8aac1b744d0",
"rawTextureUuid": "55b17d7a-ca12-4ad9-84ad-f0d08b738c1c", "rawTextureUuid": "55b17d7a-ca12-4ad9-84ad-f0d08b738c1c",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 220, "height": 220,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"rhino_befor": { "rhino_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "1be2503c-7338-451c-8a3a-fab2d1bd1437", "uuid": "1be2503c-7338-451c-8a3a-fab2d1bd1437",
"rawTextureUuid": "45b29dab-17fa-4c3c-9814-36ffaa2f2b3c", "rawTextureUuid": "45b29dab-17fa-4c3c-9814-36ffaa2f2b3c",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 212, "height": 212,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"rhubarb_befor": { "rhubarb_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "4d986bb5-1c03-40de-9129-dd65698f681d", "uuid": "4d986bb5-1c03-40de-9129-dd65698f681d",
"rawTextureUuid": "13236aab-7e5f-45bf-8bab-84400b18a74b", "rawTextureUuid": "13236aab-7e5f-45bf-8bab-84400b18a74b",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 256, "height": 256,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"satation_befor": { "satation_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e9c9660e-548c-4a55-b624-e3bf28bae6ac", "uuid": "e9c9660e-548c-4a55-b624-e3bf28bae6ac",
"rawTextureUuid": "6bcc22f8-7c11-40c2-a278-40563f4b118f", "rawTextureUuid": "6bcc22f8-7c11-40c2-a278-40563f4b118f",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 342, "height": 342,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"television_befor": { "television_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "f3a411bf-9379-420a-a917-ea2687c54b52", "uuid": "f3a411bf-9379-420a-a917-ea2687c54b52",
"rawTextureUuid": "703eebfe-3124-4274-8001-86e4b0419713", "rawTextureUuid": "703eebfe-3124-4274-8001-86e4b0419713",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 212, "height": 212,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"wnistle_befor": { "wnistle_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "dcd18b9e-053c-4750-96e4-9e3a1ee2f60c", "uuid": "dcd18b9e-053c-4750-96e4-9e3a1ee2f60c",
"rawTextureUuid": "1e3d21ee-ce1c-4de2-95c9-9a2d05cb6da5", "rawTextureUuid": "1e3d21ee-ce1c-4de2-95c9-9a2d05cb6da5",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 242, "height": 242,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"write_befor": { "write_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b6bf7058-2fea-4ec0-9cd2-f5de1a000029", "uuid": "b6bf7058-2fea-4ec0-9cd2-f5de1a000029",
"rawTextureUuid": "8024f4a2-d45d-4938-89ed-1587178d83b7", "rawTextureUuid": "8024f4a2-d45d-4938-89ed-1587178d83b7",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 212, "height": 212,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"wrong_befor": { "wrong_icon_text": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "67e03f4a-2c62-45c2-8c0b-e9ab1277559d", "uuid": "67e03f4a-2c62-45c2-8c0b-e9ab1277559d",
"rawTextureUuid": "0012e448-d2ba-4476-881b-1ae57bb0a5c4", "rawTextureUuid": "0012e448-d2ba-4476-881b-1ae57bb0a5c4",
......
{
"ver": "1.1.2",
"uuid": "66b50a14-bf4c-4ffe-a1ee-f095629923cb",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "353bdbf7-f4d8-4d3d-8a80-46ce893bdb0e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 288,
"height": 342,
"platformSettings": {},
"subMetas": {
"beautiful_icon": {
"ver": "1.0.4",
"uuid": "38374c39-9a5c-4791-9427-dc7e2931455a",
"rawTextureUuid": "353bdbf7-f4d8-4d3d-8a80-46ce893bdb0e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": -3.5,
"trimX": 36,
"trimY": 39,
"width": 219,
"height": 271,
"rawWidth": 288,
"rawHeight": 342,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c4acd6a3-93d0-4ff4-8729-868c653a6102",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 208,
"height": 228,
"platformSettings": {},
"subMetas": {
"castle_icon": {
"ver": "1.0.4",
"uuid": "337bc810-569e-4758-9244-6e01cc15d4e7",
"rawTextureUuid": "c4acd6a3-93d0-4ff4-8729-868c653a6102",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 11.5,
"trimX": 28,
"trimY": 8,
"width": 150,
"height": 189,
"rawWidth": 208,
"rawHeight": 228,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "44411cbc-2c30-4f35-9e8c-f3869f396242",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 254,
"height": 204,
"platformSettings": {},
"subMetas": {
"comb_icon": {
"ver": "1.0.4",
"uuid": "7dfb0893-d1ad-4b86-9510-5c0a153c0f70",
"rawTextureUuid": "44411cbc-2c30-4f35-9e8c-f3869f396242",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -3,
"offsetY": 1.5,
"trimX": 12,
"trimY": 26,
"width": 224,
"height": 149,
"rawWidth": 254,
"rawHeight": 204,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ec1245dd-a042-4e1f-aba8-ee08d911dec5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 288,
"height": 342,
"platformSettings": {},
"subMetas": {
"dangerous_icon": {
"ver": "1.0.4",
"uuid": "2a4d77ba-bcfe-40ac-8b9a-3b0065886d20",
"rawTextureUuid": "ec1245dd-a042-4e1f-aba8-ee08d911dec5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 34,
"trimY": 37,
"width": 220,
"height": 269,
"rawWidth": 288,
"rawHeight": 342,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "776d512e-c5b3-4f89-b5e9-11f5be0d5b6a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 288,
"height": 342,
"platformSettings": {},
"subMetas": {
"excursion_icon": {
"ver": "1.0.4",
"uuid": "2488baa1-edf0-44b5-8c51-5910a833eed7",
"rawTextureUuid": "776d512e-c5b3-4f89-b5e9-11f5be0d5b6a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -6,
"trimX": 33,
"trimY": 43,
"width": 219,
"height": 268,
"rawWidth": 288,
"rawHeight": 342,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f5660d6f-3887-45d2-aacb-440072afbe39",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 202,
"height": 220,
"platformSettings": {},
"subMetas": {
"famous_icon": {
"ver": "1.0.4",
"uuid": "97b446eb-de95-4dd4-8934-a716d8c60984",
"rawTextureUuid": "f5660d6f-3887-45d2-aacb-440072afbe39",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -4,
"offsetY": 7.5,
"trimX": 20,
"trimY": 16,
"width": 154,
"height": 173,
"rawWidth": 202,
"rawHeight": 220,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fa3a8ead-6c4c-4803-a44e-b2bfee67c211",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 265,
"height": 215,
"platformSettings": {},
"subMetas": {
"glove_icon": {
"ver": "1.0.4",
"uuid": "a4884c14-a815-4745-9a96-7a8f8c26c793",
"rawTextureUuid": "fa3a8ead-6c4c-4803-a44e-b2bfee67c211",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 4.5,
"trimX": 20,
"trimY": 21,
"width": 223,
"height": 164,
"rawWidth": 265,
"rawHeight": 215,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ebf6ae32-7c47-400e-aa6e-5e4e05f8de97",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 188,
"height": 252,
"platformSettings": {},
"subMetas": {
"helpful_icon": {
"ver": "1.0.4",
"uuid": "5720ddca-4bc2-47be-a9e1-176d1312f511",
"rawTextureUuid": "ebf6ae32-7c47-400e-aa6e-5e4e05f8de97",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -2.5,
"offsetY": -1,
"trimX": 17,
"trimY": 18,
"width": 149,
"height": 218,
"rawWidth": 188,
"rawHeight": 252,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bff030b9-9d76-4f9a-a79a-e0ca6225430b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 254,
"height": 214,
"platformSettings": {},
"subMetas": {
"knee_icon": {
"ver": "1.0.4",
"uuid": "8863c161-a242-440d-868a-1f08c2249df0",
"rawTextureUuid": "bff030b9-9d76-4f9a-a79a-e0ca6225430b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 9,
"trimX": 16,
"trimY": 22,
"width": 223,
"height": 152,
"rawWidth": 254,
"rawHeight": 214,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6e46ad84-574b-4323-bfe2-b95ab92f0d98",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 198,
"height": 212,
"platformSettings": {},
"subMetas": {
"knife_icon": {
"ver": "1.0.4",
"uuid": "a7ab707a-efd3-416b-b895-7e4c06ad170d",
"rawTextureUuid": "6e46ad84-574b-4323-bfe2-b95ab92f0d98",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -7,
"offsetY": 7.5,
"trimX": 17,
"trimY": 26,
"width": 150,
"height": 145,
"rawWidth": 198,
"rawHeight": 212,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c0699780-48cb-48b5-a8fd-56f6c07b89c5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 246,
"height": 242,
"platformSettings": {},
"subMetas": {
"lamb_icon": {
"ver": "1.0.4",
"uuid": "3d9267c4-7f7c-434e-9f66-e5a0ecb6fd24",
"rawTextureUuid": "c0699780-48cb-48b5-a8fd-56f6c07b89c5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 48,
"trimY": 50,
"width": 150,
"height": 146,
"rawWidth": 246,
"rawHeight": 242,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dfb7bb0d-7906-4750-b200-e8987f14fb7c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 265,
"height": 215,
"platformSettings": {},
"subMetas": {
"live_icon": {
"ver": "1.0.4",
"uuid": "4f6161e6-53a5-4c6d-83c1-1d34242a4e62",
"rawTextureUuid": "dfb7bb0d-7906-4750-b200-e8987f14fb7c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 7.5,
"trimX": 21,
"trimY": 24,
"width": 223,
"height": 152,
"rawWidth": 265,
"rawHeight": 215,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "0d1a8071-1b48-40a8-8094-3931a274991e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 194,
"height": 194,
"platformSettings": {},
"subMetas": {
"measure_icon": {
"ver": "1.0.4",
"uuid": "6aa0828e-50ca-465c-8e7e-2ad9ef3ace09",
"rawTextureUuid": "0d1a8071-1b48-40a8-8094-3931a274991e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -4,
"offsetY": 5,
"trimX": 17,
"trimY": 17,
"width": 152,
"height": 150,
"rawWidth": 194,
"rawHeight": 194,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1e034739-ada5-4e12-9ace-06fd0edd4f93",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 204,
"height": 216,
"platformSettings": {},
"subMetas": {
"nature_icon": {
"ver": "1.0.4",
"uuid": "ee3593fc-baff-4b45-a908-4c8ded784de5",
"rawTextureUuid": "1e034739-ada5-4e12-9ace-06fd0edd4f93",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -6,
"offsetY": 1,
"trimX": 11,
"trimY": 25,
"width": 170,
"height": 164,
"rawWidth": 204,
"rawHeight": 216,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d58796bb-2cbb-4ede-a546-11b777b64f1b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 246,
"height": 258,
"platformSettings": {},
"subMetas": {
"picture_icon": {
"ver": "1.0.4",
"uuid": "39a4a26c-ef16-422d-bb56-fb05cb59cde4",
"rawTextureUuid": "d58796bb-2cbb-4ede-a546-11b777b64f1b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -5.5,
"offsetY": -3,
"trimX": 40,
"trimY": 46,
"width": 155,
"height": 172,
"rawWidth": 246,
"rawHeight": 258,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "453fbca8-035c-4716-a3c1-ffadfd55e5ae",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 252,
"height": 220,
"platformSettings": {},
"subMetas": {
"rhino_icon": {
"ver": "1.0.4",
"uuid": "98973fbf-d30f-4bec-a2a7-e5aa09f6ecb5",
"rawTextureUuid": "453fbca8-035c-4716-a3c1-ffadfd55e5ae",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 3,
"trimX": 14,
"trimY": 30,
"width": 223,
"height": 154,
"rawWidth": 252,
"rawHeight": 220,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c4441e04-a010-43eb-85f1-867a6bb97acd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 266,
"height": 212,
"platformSettings": {},
"subMetas": {
"rhubarb_icon": {
"ver": "1.0.4",
"uuid": "26abb7c7-ee34-4869-945a-d71e907c893c",
"rawTextureUuid": "c4441e04-a010-43eb-85f1-867a6bb97acd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -3,
"offsetY": 12,
"trimX": 19,
"trimY": 20,
"width": 222,
"height": 148,
"rawWidth": 266,
"rawHeight": 212,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3fb6d785-bb40-4388-b2b6-90a7e275d3fa",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 218,
"height": 256,
"platformSettings": {},
"subMetas": {
"satation_icon": {
"ver": "1.0.4",
"uuid": "07a1b3c3-f98b-4a3b-9341-2f2de753a43f",
"rawTextureUuid": "3fb6d785-bb40-4388-b2b6-90a7e275d3fa",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 4.5,
"offsetY": -10,
"trimX": 37,
"trimY": 30,
"width": 153,
"height": 216,
"rawWidth": 218,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e42874c5-b4ec-4b00-ac40-3774d7a26b5d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 288,
"height": 342,
"platformSettings": {},
"subMetas": {
"television_icon": {
"ver": "1.0.4",
"uuid": "16402227-7641-4d21-b939-63d37dab46a5",
"rawTextureUuid": "e42874c5-b4ec-4b00-ac40-3774d7a26b5d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0.5,
"trimX": 35,
"trimY": 38,
"width": 219,
"height": 265,
"rawWidth": 288,
"rawHeight": 342,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4205b342-c1d9-47af-a686-1cbca52cb952",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 198,
"height": 212,
"platformSettings": {},
"subMetas": {
"wnistle_icon": {
"ver": "1.0.4",
"uuid": "f5ff4e68-e310-44a0-9ac7-81aac144ce08",
"rawTextureUuid": "4205b342-c1d9-47af-a686-1cbca52cb952",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 10,
"trimX": 14,
"trimY": 14,
"width": 169,
"height": 164,
"rawWidth": 198,
"rawHeight": 212,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "42894442-a1bd-414b-ac31-57301c78b296",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 216,
"height": 242,
"platformSettings": {},
"subMetas": {
"write_icon": {
"ver": "1.0.4",
"uuid": "41ca2b94-625b-4ec5-b86b-a042953f0754",
"rawTextureUuid": "42894442-a1bd-414b-ac31-57301c78b296",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 2.5,
"trimX": 30,
"trimY": 33,
"width": 154,
"height": 171,
"rawWidth": 216,
"rawHeight": 242,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "74d21358-b673-47a4-b498-4d5dfe17241c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 210,
"height": 212,
"platformSettings": {},
"subMetas": {
"wrong_icon": {
"ver": "1.0.4",
"uuid": "7e69b173-f4dd-4a57-af2a-9c6842d3b1eb",
"rawTextureUuid": "74d21358-b673-47a4-b498-4d5dfe17241c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -7,
"trimX": 0,
"trimY": 14,
"width": 210,
"height": 198,
"rawWidth": 210,
"rawHeight": 212,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "e170f032-1ff1-484e-8101-28170334daf3",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3d4e67cc-d552-46b1-8e6e-2ff7f28ca39b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": true,
"genMipmaps": false,
"packable": true,
"width": 178,
"height": 40,
"platformSettings": {},
"subMetas": {
"beautiful": {
"ver": "1.0.4",
"uuid": "27dcaef7-ef18-413f-96bf-46184510aabb",
"rawTextureUuid": "3d4e67cc-d552-46b1-8e6e-2ff7f28ca39b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 3,
"trimY": 5,
"width": 173,
"height": 31,
"rawWidth": 178,
"rawHeight": 40,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9656430c-d69f-4ad9-bf54-84522479ab31",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": true,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 34,
"platformSettings": {},
"subMetas": {
"castle": {
"ver": "1.0.4",
"uuid": "26e1fb23-059f-4848-8e28-a19d7049f33d",
"rawTextureUuid": "9656430c-d69f-4ad9-bf54-84522479ab31",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 0.5,
"trimX": 2,
"trimY": 1,
"width": 114,
"height": 31,
"rawWidth": 120,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7fa9d6f9-d346-419e-8ce9-31d6d96cc9a7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": true,
"genMipmaps": false,
"packable": true,
"width": 111,
"height": 37,
"platformSettings": {},
"subMetas": {
"comb": {
"ver": "1.0.4",
"uuid": "208c4a2e-832c-497d-a1c9-2edf721f0d56",
"rawTextureUuid": "7fa9d6f9-d346-419e-8ce9-31d6d96cc9a7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 2,
"trimY": 3,
"width": 107,
"height": 31,
"rawWidth": 111,
"rawHeight": 37,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cabd70bc-4c76-4e1e-8449-d1bbd6546f62",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": true,
"genMipmaps": false,
"packable": true,
"width": 214,
"height": 44,
"platformSettings": {},
"subMetas": {
"dangerous": {
"ver": "1.0.4",
"uuid": "b6247f94-2814-49e1-9039-7ef0152dab07",
"rawTextureUuid": "cabd70bc-4c76-4e1e-8449-d1bbd6546f62",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 1,
"trimX": 2,
"trimY": 1,
"width": 211,
"height": 40,
"rawWidth": 214,
"rawHeight": 44,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment