Commit 2503cdba authored by 范雪寒's avatar 范雪寒

feat:

parent 9f5f5457
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "348cc968-3b76-445a-8527-1bc738bbdaa2",
"subMetas": {}
}
\ No newline at end of file
{"name":"mao","imagePath":"mao_tex.png","SubTexture":[{"name":"猫01/影子","x":1,"height":66,"y":343,"width":337},{"name":"猫01/尾巴","x":1,"height":109,"y":188,"width":175},{"name":"猫01/右腿","x":178,"height":117,"y":188,"width":104},{"name":"猫01/左腿","x":1,"height":115,"y":569,"width":64},{"name":"猫01/右手","x":427,"height":122,"y":590,"width":69},{"name":"猫01/左手","x":301,"height":74,"y":590,"width":124},{"name":"猫01伸/左手伸直","x":299,"height":169,"y":1,"width":168},{"name":"猫01伸/右手伸直","x":299,"height":169,"y":172,"width":168},{"name":"猫01/身体","x":340,"height":180,"y":343,"width":122},{"name":"猫01/领带","x":1,"height":156,"y":411,"width":120},{"name":"猫01/右耳","x":155,"height":76,"y":602,"width":90},{"name":"猫01/左耳","x":67,"height":85,"y":602,"width":86},{"name":"猫01/组_1","x":1,"height":185,"y":1,"width":296},{"name":"猫01/右眼","x":1,"height":60,"y":686,"width":59},{"name":"猫01/右眉毛","x":67,"height":5,"y":595,"width":33},{"name":"猫01/左眼","x":247,"height":60,"y":666,"width":59},{"name":"猫01/左眉毛","x":247,"height":12,"y":602,"width":31},{"name":"猫01/眼镜","x":301,"height":63,"y":525,"width":170},{"name":"猫01/胡子","x":123,"height":85,"y":515,"width":176},{"name":"猫01/鼻子","x":67,"height":24,"y":569,"width":28},{"name":"猫01/嘴","x":1,"height":30,"y":299,"width":65},{"name":"猫01/帽子","x":123,"height":102,"y":411,"width":158}],"height":1024,"width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d44190ae-5a51-4080-867d-ffe3b71039b8",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "83fea040-ea75-4653-bce8-a991ca3e5111",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"mao_tex": {
"ver": "1.0.4",
"uuid": "bdb2b47e-bde3-47b3-9a64-7008c1278d9b",
"rawTextureUuid": "83fea040-ea75-4653-bce8-a991ca3e5111",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -7.5,
"offsetY": 138.5,
"trimX": 1,
"trimY": 1,
"width": 495,
"height": 745,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
import { asyncDelay, onHomeworkFinish, RandomInt } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// this._imageResList.push({ url: this.data.pic_url });
}
onLoadEnd() {
this.initData();
this.initView();
}
initData() {
}
async initView() {
this.initProgress();
this.initBubbles();
this.initCountDown();
this.initBoats();
await this.startTest(0);
}
async startTest(idx: number) {
this.showTestFrame();
this.showTestImage(idx);
this.testCountDown();
await this.coolCatSay(this.data.startAudio);
}
showTestImage(idx: number) {
const img = cc.find(`images/img_${idx}`);
const testImg = cc.find('Canvas/testBg/img_bg/img');
testImg.getComponent(cc.Sprite).spriteFrame = img.getComponent(cc.Sprite).spriteFrame;
testImg.scale = Math.min(
(testImg.parent.width * 0.6) / testImg.width,
(testImg.parent.height * 0.6) / testImg.height
);
}
showTestFrame() {
const testBg = cc.find('Canvas/testBg');
testBg.active = true;
const result = cc.find('Canvas/testBg/result');
result.active = false;
const bg = cc.find('Canvas/testBg/bg');
cc.tween(bg)
.set({ opacity: 0 })
.to(0.5, { opacity: 100 })
.start();
}
hideTestFrame() {
const testBg = cc.find('Canvas/testBg');
testBg.active = false;
}
coolCatSay(startAudio: string) {
return new Promise((resolve) => {
const coolcat = cc.find('Canvas/testBg/coolcatbg/coolcat');
const display = coolcat.getComponent(dragonBones.ArmatureDisplay);
display.playAnimation('begin', -1);
this.playAudioByUrl(startAudio, () => {
display.playAnimation('normal', -1);
resolve(null);
});
});
}
testCountDown(time = 5) {
console.log('testCountDown');
const countDown = cc.find('Canvas/testBg/clock/countDown');
const countDownComponent = countDown.getComponent(cc.Sprite);
cc.tween(countDown)
.set({ opacity: 150 })
.to(time * 0.7, { opacity: 255 })
.start();
cc.tween(countDownComponent)
.set({ fillRange: 1 })
.to(time, { fillRange: 0 })
.call(() => {
this.showGoodJob();
})
.start();
}
showGoodJob() {
const result = cc.find('Canvas/testBg/result');
result.active = true;
const goodjob = cc.find('Canvas/testBg/result/goodjob');
goodjob.active = true;
const niceTry = cc.find('Canvas/testBg/result/niceTry');
niceTry.active = false;
const bg = cc.find('Canvas/testBg/result/bg');
bg.stopAllActions();
cc.tween(bg)
.by(0.5, { angle: 90 })
.call(() => {
})
.start();
}
showNiceTry() {
const result = cc.find('Canvas/testBg/result');
result.active = true;
const goodjob = cc.find('Canvas/testBg/result/goodjob');
goodjob.active = false;
const niceTry = cc.find('Canvas/testBg/result/niceTry');
niceTry.active = true;
const bg = cc.find('Canvas/testBg/result/bg');
bg.stopAllActions();
cc.tween(bg)
.by(2, { angle: 360 })
.repeatForever()
.start();
}
initBoats() {
let idxList = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15];
const boatList = idxList
.sort(() => Math.random() - 0.5)
.splice(0, 8);
for (let i = 0; i < 16; i++) {
const boatNode = cc.find(`Canvas/bg/boats/boat_${i}`);
boatNode.removeComponent(cc.Sprite);
if (boatList.indexOf(i) > -1) {
const boat = cc.instantiate(cc.find('boat'));
boat.parent = boatNode;
boat.setPosition(0, 0);
const image = cc.find(`images/img_${i}`);
const icon = boat.getChildByName('icon');
icon.getComponent(cc.Sprite).spriteFrame = image.getComponent(cc.Sprite).spriteFrame;
}
}
}
initCountDown() {
const progressTopBar = cc.find('Canvas/bg/progressTop/progressTopBar');
const spriteComponent = progressTopBar.getComponent(cc.Sprite);
cc.tween(spriteComponent)
.to(20, { fillRange: 0 })
.call(() => {
})
.start();
}
initProgress() {
const layoutLeft = cc.find('Canvas/bg/progress/layout');
for (let i = 0; i < 16; i++) {
const box = cc.instantiate(cc.find('box_green'));
box.setPosition(2.5, 0);
box.parent = layoutLeft;
box.name = `box_${i}`;
if (i < 4) {
this.changeNodeColor(box);
} else {
this.changeNodeGray(box);
}
}
const layoutRight = cc.find('Canvas/bg/progress2/layout');
for (let i = 0; i < 16; i++) {
const box = cc.instantiate(cc.find('box_orange'));
box.setPosition(2.5, 0);
box.parent = layoutRight;
box.name = `box_${i}`;
}
}
initBubbles() {
const mask1 = cc.find('Canvas/bg/progress/mask');
this.createBubbles(mask1);
const mask2 = cc.find('Canvas/bg/progress2/mask');
this.createBubbles(mask2);
}
createBubbles(node: cc.Node) {
cc.tween(this.node)
.call(() => {
this.createOneBubble(node);
})
.delay(0.7)
.union()
.repeatForever()
.start();
}
createOneBubble(node: cc.Node) {
const sprite = cc.find('bubble');
const bubble = cc.instantiate(sprite);
bubble.parent = node;
cc.tween(bubble)
.set({
x: RandomInt(node.width / -2, node.width / 2),
y: RandomInt(0, -20) - node.height / 2,
scale: Math.random() * 0.3 + 0.1,
})
.to(RandomInt(15, 18), {
y: node.height,
x: RandomInt(node.width / -2, node.width / 2),
scale: Math.random() * 0.1 + 0.2,
})
.removeSelf()
.start();
}
changeNodeGray(node) {
if (!node) {
return;
}
let material = cc.Material.createWithBuiltin('2d-gray-sprite', 0);
const sprite = node.getComponent(cc.Sprite);
let variant1 = cc.MaterialVariant.create(material, sprite);
sprite.setMaterial(0, variant1);
}
changeNodeColor(node) {
if (!node) {
return;
}
let material = cc.Material.createWithBuiltin('2d-sprite', 0);
const sprite = node.getComponent(cc.Sprite);
let variant1 = cc.MaterialVariant.create(material, sprite);
sprite.setMaterial(0, variant1);
}
}
{
"ver": "2.3.5",
"uuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f",
"uuid": "0cfcbca4-474f-4c1b-a03d-a0bf78496ac3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 366,
"height": 336,
"width": 567,
"height": 532,
"platformSettings": {},
"subMetas": {
"1orange": {
"LOSE": {
"ver": "1.0.4",
"uuid": "43d1e79d-6de8-4dcb-b8ce-d767df7913aa",
"rawTextureUuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f",
"uuid": "d43e049f-9e36-4b27-916e-70838f694d59",
"rawTextureUuid": "0cfcbca4-474f-4c1b-a03d-a0bf78496ac3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 1,
"width": 366,
"height": 335,
"rawWidth": 366,
"rawHeight": 336,
"trimY": 0,
"width": 567,
"height": 532,
"rawWidth": 567,
"rawHeight": 532,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "8bd72df4-070a-41b0-abc4-f5ba22524f4b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 67,
"width": 183,
"height": 84,
"platformSettings": {},
"subMetas": {
"btn_right": {
"RESTART": {
"ver": "1.0.4",
"uuid": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59",
"rawTextureUuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "efaf98be-aeda-422f-be01-78b9f5fa71ff",
"rawTextureUuid": "8bd72df4-070a-41b0-abc4-f5ba22524f4b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0.5,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 60,
"height": 66,
"rawWidth": 61,
"rawHeight": 67,
"width": 183,
"height": 84,
"rawWidth": 183,
"rawHeight": 84,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "e55533fd-2e3d-40c6-a657-80184a281fce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 568,
"height": 532,
"platformSettings": {},
"subMetas": {
"WIN": {
"ver": "1.0.4",
"uuid": "cb69ab28-4a6c-4b62-9c68-56f410145ca0",
"rawTextureUuid": "e55533fd-2e3d-40c6-a657-80184a281fce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 568,
"height": 532,
"rawWidth": 568,
"rawHeight": 532,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "dcc46375-25d0-4c99-8a51-86487754e6f4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -8,13 +8,13 @@
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 720,
"height": 960,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "52c83a1d-81ad-4688-8dbd-eaa3631251c3",
"rawTextureUuid": "dcc46375-25d0-4c99-8a51-86487754e6f4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......@@ -23,9 +23,9 @@
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 720,
"height": 960,
"rawWidth": 1280,
"rawHeight": 720,
"rawHeight": 960,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "c68d1420-6867-438c-bf6c-b7986feb6c5c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 277,
"height": 257,
"platformSettings": {},
"subMetas": {
"boat": {
"ver": "1.0.4",
"uuid": "4d47b466-0130-4b81-a3e0-d4090104be6d",
"rawTextureUuid": "c68d1420-6867-438c-bf6c-b7986feb6c5c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 277,
"height": 257,
"rawWidth": 277,
"rawHeight": 257,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5d953024-7d08-4584-a946-d3b0641386b1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 41,
"height": 34,
"platformSettings": {},
"subMetas": {
"box_green": {
"ver": "1.0.4",
"uuid": "3609535d-70a0-4170-b579-047afd0ff78b",
"rawTextureUuid": "5d953024-7d08-4584-a946-d3b0641386b1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 41,
"height": 34,
"rawWidth": 41,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c6e57ff7-45ba-465b-a788-90e9da87bb4f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 41,
"height": 34,
"platformSettings": {},
"subMetas": {
"box_orange": {
"ver": "1.0.4",
"uuid": "51499abf-ce0b-4e8f-8639-e4cb2bfcf74b",
"rawTextureUuid": "c6e57ff7-45ba-465b-a788-90e9da87bb4f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 41,
"height": 34,
"rawWidth": 41,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "20c91701-4c3e-44f3-b4ee-9b68c127d344",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 41,
"height": 34,
"platformSettings": {},
"subMetas": {
"btnRecord": {
"ver": "1.0.4",
"uuid": "005b7552-c567-49a0-956e-7bbefb916638",
"rawTextureUuid": "20c91701-4c3e-44f3-b4ee-9b68c127d344",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 41,
"height": 34,
"rawWidth": 41,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8ae7a3c0-e3b2-490a-a4cb-367f2c4295f5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 41,
"height": 34,
"platformSettings": {},
"subMetas": {
"btnRecord2": {
"ver": "1.0.4",
"uuid": "c9dc6d0d-4f19-4fc8-92af-d626fe580ed2",
"rawTextureUuid": "8ae7a3c0-e3b2-490a-a4cb-367f2c4295f5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 41,
"height": 34,
"rawWidth": 41,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "074dca37-d9e9-4187-a4bf-8ac9105f9df7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 30,
"height": 30,
"platformSettings": {},
"subMetas": {
"bubble": {
"ver": "1.0.4",
"uuid": "d708f9db-1871-4714-866a-d952f6960d5b",
"rawTextureUuid": "074dca37-d9e9-4187-a4bf-8ac9105f9df7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 30,
"height": 30,
"rawWidth": 30,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1de30675-36bd-4337-bd05-bc2333b65e94",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 402,
"height": 447,
"platformSettings": {},
"subMetas": {
"clock": {
"ver": "1.0.4",
"uuid": "de914835-d8c0-4d37-aedf-2d17d343fb79",
"rawTextureUuid": "1de30675-36bd-4337-bd05-bc2333b65e94",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 402,
"height": 447,
"rawWidth": 402,
"rawHeight": 447,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2a89fd7b-03eb-44a1-846e-a2be20c00f94",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 58,
"height": 59,
"platformSettings": {},
"subMetas": {
"clock_center": {
"ver": "1.0.4",
"uuid": "bd3d3b8a-a505-46d9-81a4-b20eb51f4680",
"rawTextureUuid": "2a89fd7b-03eb-44a1-846e-a2be20c00f94",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 58,
"height": 59,
"rawWidth": 58,
"rawHeight": 59,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7705a937-73e3-43bd-9709-75b068ac2106",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 130,
"height": 263,
"platformSettings": {},
"subMetas": {
"clock_red": {
"ver": "1.0.4",
"uuid": "046aa04a-531b-4516-8dab-6c49e6a83f25",
"rawTextureUuid": "7705a937-73e3-43bd-9709-75b068ac2106",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 259,
"height": 259,
"rawWidth": 259,
"rawHeight": 259,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "11a15fdd-db9b-4d86-a293-80791e4a5ba2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 182,
"height": 182,
"platformSettings": {},
"subMetas": {
"frame": {
"ver": "1.0.4",
"uuid": "0d6fe082-5bf3-4d8d-8a89-e799958aeaa5",
"rawTextureUuid": "11a15fdd-db9b-4d86-a293-80791e4a5ba2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 182,
"height": 182,
"rawWidth": 182,
"rawHeight": 182,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "902468dc-9cba-4d1a-aa70-f5cbb17646d2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 182,
"height": 182,
"platformSettings": {},
"subMetas": {
"frame2": {
"ver": "1.0.4",
"uuid": "0759dd2f-6bce-464a-9627-f0827191cd49",
"rawTextureUuid": "902468dc-9cba-4d1a-aa70-f5cbb17646d2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 182,
"height": 182,
"rawWidth": 182,
"rawHeight": 182,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "189ed384-a759-4ec7-bb44-2f995164fce3",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bd633115-df59-4806-9fe3-c70a3be98846",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1068,
"height": 416,
"platformSettings": {},
"subMetas": {
"goodjob": {
"ver": "1.0.4",
"uuid": "5266f8b9-974a-45a4-936b-d027a6ade3be",
"rawTextureUuid": "bd633115-df59-4806-9fe3-c70a3be98846",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1068,
"height": 416,
"rawWidth": 1068,
"rawHeight": 416,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e66707da-2a1e-416e-a834-b5eeb4c1696f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 16,
"height": 580,
"platformSettings": {},
"subMetas": {
"grey": {
"ver": "1.0.4",
"uuid": "22a7f2eb-c320-4834-8c0e-616274e7361f",
"rawTextureUuid": "e66707da-2a1e-416e-a834-b5eeb4c1696f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 16,
"height": 580,
"rawWidth": 16,
"rawHeight": 580,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1e4cc648-1a30-4ad7-9962-07deda0f2a0b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 27,
"height": 33,
"platformSettings": {},
"subMetas": {
"iconLock": {
"ver": "1.0.4",
"uuid": "59cb3073-24cb-4f59-98c2-abb6b62b0066",
"rawTextureUuid": "1e4cc648-1a30-4ad7-9962-07deda0f2a0b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 27,
"height": 33,
"rawWidth": 27,
"rawHeight": 33,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8c33ab12-3956-4651-b992-08ad69b8e16c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 440,
"height": 440,
"platformSettings": {},
"subMetas": {
"img_bg": {
"ver": "1.0.4",
"uuid": "43cf30e7-2803-450c-8b0f-7b6466da2203",
"rawTextureUuid": "8c33ab12-3956-4651-b992-08ad69b8e16c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 440,
"height": 440,
"rawWidth": 440,
"rawHeight": 440,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "30270d90-0c6b-4d44-8931-4cb239608e68",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f9e230bf-ce9a-4b5d-9c7b-8dece5f07a8f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 118,
"height": 89,
"platformSettings": {},
"subMetas": {
"arm": {
"ver": "1.0.4",
"uuid": "45c3501b-8a8e-4b76-a439-52a2da03fb45",
"rawTextureUuid": "f9e230bf-ce9a-4b5d-9c7b-8dece5f07a8f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 118,
"height": 89,
"rawWidth": 118,
"rawHeight": 89,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "589e1b18-a4ee-4417-9eab-c65bbaaea1fd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 145,
"height": 94,
"platformSettings": {},
"subMetas": {
"blue": {
"ver": "1.0.4",
"uuid": "8d231526-fc24-4765-b4bd-7b32398cd863",
"rawTextureUuid": "589e1b18-a4ee-4417-9eab-c65bbaaea1fd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 145,
"height": 94,
"rawWidth": 145,
"rawHeight": 94,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "db660d56-8644-41ee-be91-2d10ceef01c6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 159,
"height": 76,
"platformSettings": {},
"subMetas": {
"boat": {
"ver": "1.0.4",
"uuid": "8aa7e7b1-2598-4b93-aa9b-d4e34636c6ce",
"rawTextureUuid": "db660d56-8644-41ee-be91-2d10ceef01c6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 159,
"height": 76,
"rawWidth": 159,
"rawHeight": 76,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9a79969a-0506-48d4-bc98-3c05d109b027",
"uuid": "7954e96e-e6b9-4151-ab7c-d102141bba0e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"width": 80,
"height": 67,
"platformSettings": {},
"subMetas": {
"btn_left": {
"boot": {
"ver": "1.0.4",
"uuid": "ce19457d-e8f3-4c38-ae3e-d4b99208ddb5",
"rawTextureUuid": "9a79969a-0506-48d4-bc98-3c05d109b027",
"uuid": "164585bc-1156-4797-ae7f-356bebe00c1a",
"rawTextureUuid": "7954e96e-e6b9-4151-ab7c-d102141bba0e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......@@ -22,9 +22,9 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 61,
"width": 80,
"height": 67,
"rawWidth": 61,
"rawWidth": 80,
"rawHeight": 67,
"borderTop": 0,
"borderBottom": 0,
......
{
"ver": "2.3.5",
"uuid": "113abfe3-a885-4101-b3e3-1f17af787b30",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 124,
"height": 97,
"platformSettings": {},
"subMetas": {
"coat": {
"ver": "1.0.4",
"uuid": "3fe3f5fb-ba75-40f8-9995-f8aad924b288",
"rawTextureUuid": "113abfe3-a885-4101-b3e3-1f17af787b30",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 124,
"height": 97,
"rawWidth": 124,
"rawHeight": 97,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "40abdca0-cdad-4c8b-8333-bf43f5eb785f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 116,
"height": 85,
"platformSettings": {},
"subMetas": {
"cross": {
"ver": "1.0.4",
"uuid": "29ad0338-8338-45b2-87ff-1889b2bff92a",
"rawTextureUuid": "40abdca0-cdad-4c8b-8333-bf43f5eb785f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 116,
"height": 85,
"rawWidth": 116,
"rawHeight": 85,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a9a122a2-a750-4ba6-9a58-b5ead7e872c5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 111,
"height": 80,
"platformSettings": {},
"subMetas": {
"finger_print": {
"ver": "1.0.4",
"uuid": "54433234-8138-4350-bd6b-603c5f47bc49",
"rawTextureUuid": "a9a122a2-a750-4ba6-9a58-b5ead7e872c5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 111,
"height": 80,
"rawWidth": 111,
"rawHeight": 80,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3bcc26a2-0517-4e91-b37a-e33408a08fba",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 133,
"height": 94,
"platformSettings": {},
"subMetas": {
"fuit": {
"ver": "1.0.4",
"uuid": "6a45a802-77d7-4fe0-aeae-2d77b9ca5b7d",
"rawTextureUuid": "3bcc26a2-0517-4e91-b37a-e33408a08fba",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 133,
"height": 94,
"rawWidth": 133,
"rawHeight": 94,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3d84aae1-9449-43e2-a4b0-c37a5412704a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 126,
"height": 87,
"platformSettings": {},
"subMetas": {
"goat": {
"ver": "1.0.4",
"uuid": "4a26b7f7-e623-415a-9472-af3822cdb064",
"rawTextureUuid": "3d84aae1-9449-43e2-a4b0-c37a5412704a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 126,
"height": 87,
"rawWidth": 126,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "13950eba-e066-4a76-8497-b314292f71ea",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 165,
"height": 98,
"platformSettings": {},
"subMetas": {
"moon": {
"ver": "1.0.4",
"uuid": "1ade2c26-29a2-4811-a5dd-aae206b582b8",
"rawTextureUuid": "13950eba-e066-4a76-8497-b314292f71ea",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 165,
"height": 98,
"rawWidth": 165,
"rawHeight": 98,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"uuid": "49c87684-7234-4b7a-9d5a-cd85943871a2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 144,
"height": 144,
"width": 138,
"height": 83,
"platformSettings": {},
"subMetas": {
"icon": {
"shoe_box": {
"ver": "1.0.4",
"uuid": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a",
"rawTextureUuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"uuid": "246a7884-9e7f-420f-a20e-ef06c9d369fb",
"rawTextureUuid": "49c87684-7234-4b7a-9d5a-cd85943871a2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 3,
"trimY": 2,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 138,
"height": 141,
"rawWidth": 144,
"rawHeight": 144,
"height": 83,
"rawWidth": 138,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "a0051838-3790-4783-8242-8b081fc26d1e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 150,
"height": 96,
"platformSettings": {},
"subMetas": {
"shui": {
"ver": "1.0.4",
"uuid": "f058db94-78e4-4b63-a487-2c7540fc19fa",
"rawTextureUuid": "a0051838-3790-4783-8242-8b081fc26d1e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 150,
"height": 96,
"rawWidth": 150,
"rawHeight": 96,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "826b9f60-ecae-4b14-b27b-37672cebfada",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 176,
"height": 94,
"platformSettings": {},
"subMetas": {
"suit": {
"ver": "1.0.4",
"uuid": "342f649f-a6fe-4cc2-b75c-406c8eeb441b",
"rawTextureUuid": "826b9f60-ecae-4b14-b27b-37672cebfada",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 176,
"height": 94,
"rawWidth": 176,
"rawHeight": 94,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5dfd690d-e790-4d5d-b594-5ff01cee3bda",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 115,
"height": 100,
"platformSettings": {},
"subMetas": {
"toad": {
"ver": "1.0.4",
"uuid": "58a75c27-9f7a-490d-be16-90bf2041cf49",
"rawTextureUuid": "5dfd690d-e790-4d5d-b594-5ff01cee3bda",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 115,
"height": 100,
"rawWidth": 115,
"rawHeight": 100,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f6990b94-2571-4006-b9a0-507f7b19ece5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 110,
"height": 81,
"platformSettings": {},
"subMetas": {
"window": {
"ver": "1.0.4",
"uuid": "a44c817b-b479-4b01-b747-4c8014a6efc6",
"rawTextureUuid": "f6990b94-2571-4006-b9a0-507f7b19ece5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 110,
"height": 81,
"rawWidth": 110,
"rawHeight": 81,
"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.
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