Commit 62a8b719 authored by limingzhe's avatar limingzhe

fix: debug

parent b046046d
{
"ver": "2.0.1",
"uuid": "08b3f566-1860-4624-9783-40c4dc4a1968",
"downloadMode": 0,
"duration": 5.184,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "ad07b764-31dc-40f6-8faf-abf9f88f073b",
"downloadMode": 0,
"duration": 2.592,
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
...@@ -266,16 +266,105 @@ cc.Class({ ...@@ -266,16 +266,105 @@ cc.Class({
return; return;
} }
// this.initData();
// this.initView();
// this.initListener();
// cb();
// return;
this.initData(); this.initData();
this.initMask();
this.initView();
this.getState(() => {
window["air"].hideAirClassLoading();
this.initView();
this.initListener(); this.initListener();
cb(); cb();
})
},
isFirst : null,
isLast : null,
playTimes : null,
jumpData : null,
getState(cb) {
this.isFirst = this.checkIsFirst(); // data.first; //this.checkIsFirst();
this.isLast = this.checkIsLast(); // data.last // this.checkIsLast();
this.playTimes = this.checkPlayTimes(); // data.playTime// this.checkPlayTimes();
this.jumpData = this.getJumpData(); //data.saveData // this.getJumpData();
cb()
return;
console.log(' in getState 1');
callMiddleLayerFunction('PSQS_get_course_info', {}, (data) => {
console.log(' in getState 2');
this.isFirst = this.checkIsFirst(); // data.first; //this.checkIsFirst();
this.isLast = this.checkIsLast(); // data.last // this.checkIsLast();
this.playTimes = this.checkPlayTimes(); // data.playTime// this.checkPlayTimes();
this.jumpData = this.getJumpData(); //data.saveData // this.getJumpData();
if (this.data.isDebug) {
this.playTimes += 1;
}
cb && cb();
})
}, },
checkIsFirst() {
return true;
},
checkIsLast() {
return false;
},
checkPlayTimes() {
return 0;
},
getJumpData() {
return //{step: 2};
},
maskSpr: null,
initMask() {
const mask = getSprNode('black');
const sx = this.canvas.width / mask.width;
const sy = this.canvas.height / mask.height;
mask.scaleX = sx;
mask.scaleY = sy;
mask.opacity = 255;
this.canvas.addChild(mask, 21);
this.maskSpr = mask;
},
initMusic() { initMusic() {
cc.assetManager.loadRemote(this.data.bg_audio_url, (err, clip) => { cc.assetManager.loadRemote(this.data.bg_audio_url, (err, clip) => {
cc.audioEngine.setMusicVolume(0.3); cc.audioEngine.setMusicVolume(0.3);
...@@ -338,6 +427,9 @@ cc.Class({ ...@@ -338,6 +427,9 @@ cc.Class({
audioGoodjob: null, audioGoodjob: null,
audioTryagain: null, audioTryagain: null,
readyClip: null,
goClip: null,
goodjobClip: null,
initAudioEffect() { initAudioEffect() {
const audioNode = cc.find('Canvas/res/audio'); const audioNode = cc.find('Canvas/res/audio');
...@@ -349,7 +441,12 @@ cc.Class({ ...@@ -349,7 +441,12 @@ cc.Class({
// this.audioGoodjob = getAudioByResName('goodjob'); // this.audioGoodjob = getAudioByResName('goodjob');
// this.audioTryagain = getAudioByResName('tryagain'); // this.audioTryagain = getAudioByResName('tryagain');
this.wrongClip = getAudioByResName('wrong'); this.readyClip = getAudioByResName('ready');
this.goClip = getAudioByResName('go');
this.goodjobClip = getAudioByResName('goodjob');
}, },
...@@ -396,11 +493,21 @@ cc.Class({ ...@@ -396,11 +493,21 @@ cc.Class({
initView() { initView() {
console.log( ' in initView')
this.hideMask();
this.initVideo(); this.initVideo();
this.initHand(); this.initHand();
this.initHotZone(); this.initHotZone();
if (this.isFirst) {
this.initStartView();
return;
}
}, },
...@@ -410,6 +517,171 @@ cc.Class({ ...@@ -410,6 +517,171 @@ cc.Class({
}, },
initStartView() {
this.showStartLight();
if (this.playTimes > 0) {
this.showStartTitleGo();
} else {
this.showStartTitleReady();
}
},
lightBg: null,
lightLeft: null,
lightRight: null,
showStartLight() {
const lightBg = getSprNode('black');
lightBg.scaleX = this.canvas.width / lightBg.width;
lightBg.scaleY = this.canvas.height / lightBg.height;
lightBg.opacity = 180;
this.canvas.addChild(lightBg, 10);
const lightLeft = getSprNode('light');
lightLeft.anchorY = 0.9;
lightLeft.x = -this.canvas.width / 2;
lightLeft.y = this.canvas.height / 2;
lightLeft.scale = this._mapScaleMin;
lightLeft.zIndex = 10;
lightLeft.parent = this.canvas;
lightLeft.rotation = 45;
lightLeft.opacity = 0;
cc.tween(lightLeft)
.to(1, {rotation: -45}, {easing: "cubicOut"})
.start();
cc.tween(lightLeft)
.to(0.5, {opacity: 255})
.start();
const lightRight = getSprNode('light');
lightRight.anchorY = 0.9;
lightRight.x = this.canvas.width / 2;
lightRight.y = this.canvas.height / 2;
lightRight.scale = this._mapScaleMin;
lightRight.zIndex = 10;
lightRight.parent = this.canvas;
lightRight.rotation = -45;
lightRight.opacity = 0;
cc.tween(lightRight)
.to(1, {rotation: 45}, {easing: "cubicOut"})
.start();
cc.tween(lightRight)
.to(0.5, {opacity: 255})
.start();
this.lightBg = lightBg;
this.lightLeft = lightLeft;
this.lightRight = lightRight;
},
title: null,
showStartTitleReady() {
const title = getSprNode('start_title');
title.scale = this._mapScaleMin;
title.y = this.canvas.height / 2 + title.height * title.scaleY;
title.parent = this.canvas;
title.zIndex = 11;
cc.tween(title)
.delay(0.3)
.call(() => {
playAudio(this.readyClip, (() => {
this.startAudioEnd();
}));
})
.to(1.5, {y: 0}, {easing: "elasticOut"})
.start();
this.title = title
},
async showStartTitleGo() {
const title = new cc.Node();
title.parent = this.canvas;
title.zIndex = 11;
title.scale = this._mapScaleMin;
this.title = title
playAudio(this.goClip, (() => {
this.startAudioEnd();
}));
const popNum = (name, time = 1) => {
const sprNode = getSprNode(name);
title.addChild(sprNode);
sprNode.scale = 0.2;
sprNode.opacity = 0;
cc.tween(sprNode)
.to(time/10, {opacity: 255})
.start();
cc.tween(sprNode)
.to(0.8 * time, {scale: this._mapScaleMin}, {easing: 'elasticOut'})
.delay(0 * time)
.to(0.2 * time, {opacity: 0})
.start();
}
await asyncDelay(2.2);
popNum('go_1', 0.7);
await asyncDelay(0.7);
popNum('go_2', 0.7);
await asyncDelay(0.7);
popNum('go_3', 0.7);
await asyncDelay(0.7);
popNum('go_0');
await asyncDelay(1);
},
isDestroy: null,
startAudioEnd() {
if (this.isDestroy) {
return;
}
this.hideStartView();
},
async hideStartView() {
const hideSpr = (sprNode, cb=null) => {
cc.tween(sprNode)
.to(0.3, {opacity: 0})
.call(() => {
sprNode.active = false;
cb && cb();
})
.start();
}
hideSpr(this.lightLeft);
hideSpr(this.lightRight);
hideSpr(this.title);
await asyncDelay(0.2)
hideSpr(this.lightBg, () => {
if (this.isDestroy) {
return;
}
this.startQuesVideo();
});
},
serverStartTest(text) { serverStartTest(text) {
...@@ -426,31 +698,18 @@ cc.Class({ ...@@ -426,31 +698,18 @@ cc.Class({
this.addMask(); this.addMask();
}, },
maskNode: null,
addMask() {
if (!this.maskNode) {
const node = new cc.Node();
node.width = this.canvas.width;
node.height = this.canvas.height;
this.canvas.addChild(node, 100);
node.addComponent(cc.BlockInputEvents);
this.maskNode = node;
}
this.maskNode.active = true;
},
hideMask() {
if (!this.maskNode) { hideMask(cb = null) {
return; const mask = this.maskSpr;
} mask.opacity = 255;
this.maskNode.active = false;
cc.tween(mask)
.to(0.2, {opacity: 0}, {easing: "sineOut"})
.call(() => {
// mask.active = false;
cb && cb();
})
.start();
}, },
serverStopTest(item) { serverStopTest(item) {
...@@ -630,6 +889,9 @@ cc.Class({ ...@@ -630,6 +889,9 @@ cc.Class({
this.curQues.hotZoneBg.active = true; this.curQues.hotZoneBg.active = true;
this.hand.active = true; this.hand.active = true;
this.hand.x = this.curQues.hotZoneBg.handX;
this.hand.y = this.curQues.hotZoneBg.handY;
return; return;
// const videoNode = this.curQues?.videoObj?.wait_video; // const videoNode = this.curQues?.videoObj?.wait_video;
// const video = videoNode.getComponent(cc.VideoPlayer); // const video = videoNode.getComponent(cc.VideoPlayer);
...@@ -819,7 +1081,9 @@ cc.Class({ ...@@ -819,7 +1081,9 @@ cc.Class({
if (video.currentTime > 0) { if (video.currentTime > 0) {
video.node.isLoadEnd = true; video.node.isLoadEnd = true;
this.startQuesVideo(); video.pause();
// this.startQuesVideo();
if (this.data.jumpTime) { if (this.data.jumpTime) {
video.currentTime = Number(this.data.jumpTime); video.currentTime = Number(this.data.jumpTime);
...@@ -2252,11 +2516,11 @@ cc.Class({ ...@@ -2252,11 +2516,11 @@ cc.Class({
const rectNode = this.setOneRect(data, bg); const rectNode = this.setOneRect(data, bg);
const worldPos = rectNode.parent.convertToWorldSpaceAR(cc.v2(rectNode.x + rectNode.width / 2, rectNode.y + rectNode.height / 2))
const worldPos = rectNode.parent.convertToWorldSpaceAR(cc.v2(rectNode.x - rectNode.width, rectNode.y + rectNode.height / 2))
const pos = this.hand.parent.convertToNodeSpaceAR(worldPos); const pos = this.hand.parent.convertToNodeSpaceAR(worldPos);
this.hand.x = pos.x;
this.hand.y = pos.y; bg.handX = pos.x;
bg.handY = pos.y;
}, },
setOneRect(data, bg) { setOneRect(data, bg) {
......
{
"ver": "2.3.5",
"uuid": "0e0c4901-0115-48d5-bcc7-59507bbfa31a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 941,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "304565c0-7b9d-4762-87a0-e1473bf3b4bc",
"rawTextureUuid": "0e0c4901-0115-48d5-bcc7-59507bbfa31a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 941,
"rawWidth": 1280,
"rawHeight": 941,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5f210dbe-2e3b-4c05-929d-a95355f3ba6c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 409,
"height": 409,
"platformSettings": {},
"subMetas": {
"bg_circle": {
"ver": "1.0.4",
"uuid": "b058825c-ff54-4925-9d1b-41a3ea19e1ff",
"rawTextureUuid": "5f210dbe-2e3b-4c05-929d-a95355f3ba6c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 409,
"height": 409,
"rawWidth": 409,
"rawHeight": 409,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "bb3716ea-7388-48bb-adad-03c308053e99",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 171,
"platformSettings": {},
"subMetas": {
"bg_grass": {
"ver": "1.0.4",
"uuid": "dc14429a-257f-4ada-a523-f849ac8c5e29",
"rawTextureUuid": "bb3716ea-7388-48bb-adad-03c308053e99",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 171,
"rawWidth": 1280,
"rawHeight": 171,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "91e77916-1319-49e1-aa69-248c74f874ec",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 663,
"height": 744,
"platformSettings": {},
"subMetas": {
"bg_house": {
"ver": "1.0.4",
"uuid": "8bc77e6a-43b1-4b21-8e5f-5cdeafa15f54",
"rawTextureUuid": "91e77916-1319-49e1-aa69-248c74f874ec",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 663,
"height": 744,
"rawWidth": 663,
"rawHeight": 744,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f0c82ff4-20ac-47af-911e-bbd29da51e49",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 663,
"height": 744,
"platformSettings": {},
"subMetas": {
"bg_house_mask": {
"ver": "1.0.4",
"uuid": "e58ddcc4-c6a5-43a7-8341-bee0a60e72b9",
"rawTextureUuid": "f0c82ff4-20ac-47af-911e-bbd29da51e49",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -7.5,
"trimX": 22,
"trimY": 208,
"width": 618,
"height": 343,
"rawWidth": 663,
"rawHeight": 744,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "25a91a8c-674c-4ce5-b3ae-058a136a8157", "uuid": "c9c64576-a943-45d8-9fa1-e01eaaf8665b",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 48, "width": 10,
"height": 46, "height": 10,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_star": { "black": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "9366e217-a71e-41a9-bc3f-3ec99d9877f5", "uuid": "6d32fd6a-1b60-44e1-9ea0-d978f7f9696d",
"rawTextureUuid": "25a91a8c-674c-4ce5-b3ae-058a136a8157", "rawTextureUuid": "c9c64576-a943-45d8-9fa1-e01eaaf8665b",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 48, "width": 10,
"height": 46, "height": 10,
"rawWidth": 48, "rawWidth": 10,
"rawHeight": 46, "rawHeight": 10,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "ea3753ce-e9ea-4ed6-9fe7-465208c047d9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 61,
"platformSettings": {},
"subMetas": {
"btn_record_bg": {
"ver": "1.0.4",
"uuid": "97814882-22f4-4fb9-a4b1-7f44fba16b04",
"rawTextureUuid": "ea3753ce-e9ea-4ed6-9fe7-465208c047d9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 61,
"height": 61,
"rawWidth": 61,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d618434d-8e1e-4eba-ab44-12d6154951d4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 114,
"height": 114,
"platformSettings": {},
"subMetas": {
"btn_record_bg_2": {
"ver": "1.0.4",
"uuid": "c9489038-8a17-425d-99f8-8bcbba317223",
"rawTextureUuid": "d618434d-8e1e-4eba-ab44-12d6154951d4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 114,
"height": 114,
"rawWidth": 114,
"rawHeight": 114,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e06973dc-93de-4c8d-90ca-824823417620",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 61,
"platformSettings": {},
"subMetas": {
"btn_record_play": {
"ver": "1.0.4",
"uuid": "a76e32f4-ee6b-4281-a57a-cb0be88462c3",
"rawTextureUuid": "e06973dc-93de-4c8d-90ca-824823417620",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 61,
"height": 61,
"rawWidth": 61,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "94ab24ad-1762-4947-b673-f7c7bad4559c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 61,
"platformSettings": {},
"subMetas": {
"btn_record_stop": {
"ver": "1.0.4",
"uuid": "db537c84-6981-4185-b4ca-afc59564048c",
"rawTextureUuid": "94ab24ad-1762-4947-b673-f7c7bad4559c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 61,
"height": 61,
"rawWidth": 61,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "da06c1cb-03af-4b96-b940-8649d4fc2b7a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 262,
"height": 268,
"platformSettings": {},
"subMetas": {
"btn_restart": {
"ver": "1.0.4",
"uuid": "36c94b0e-1649-4943-bfc2-b30216742b1c",
"rawTextureUuid": "da06c1cb-03af-4b96-b940-8649d4fc2b7a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 262,
"height": 268,
"rawWidth": 262,
"rawHeight": 268,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "27d67aa8-00d8-4a43-8c23-a70d19417258", "uuid": "d25c264e-9c65-47c2-ab1c-df4163083c94",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 61, "width": 443,
"height": 61, "height": 239,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_listen": { "go_0": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "09f9e545-c800-4c59-b34b-a17475a44299", "uuid": "ec8c8523-4fe4-47bb-a640-0adfbd3595bf",
"rawTextureUuid": "27d67aa8-00d8-4a43-8c23-a70d19417258", "rawTextureUuid": "d25c264e-9c65-47c2-ab1c-df4163083c94",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 61, "width": 443,
"height": 61, "height": 239,
"rawWidth": 61, "rawWidth": 443,
"rawHeight": 61, "rawHeight": 239,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "45654c7f-b39c-4534-b094-f661852472ba",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 149,
"height": 267,
"platformSettings": {},
"subMetas": {
"go_1": {
"ver": "1.0.4",
"uuid": "543f8bd6-5842-46ea-8e8a-df5c35cbae38",
"rawTextureUuid": "45654c7f-b39c-4534-b094-f661852472ba",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 4,
"trimX": 6,
"trimY": 2,
"width": 135,
"height": 255,
"rawWidth": 149,
"rawHeight": 267,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "2b349127-e67b-4853-ad7e-7527e603bd78", "uuid": "b00c069b-297d-4ec3-ae7c-1f2daae5ed48",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 682, "width": 213,
"height": 266, "height": 266,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_goodjob": { "go_2": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "40aab58f-fbef-4edb-b57a-d219604ac0f2", "uuid": "444909fc-fc25-4767-a741-31041d0f12e9",
"rawTextureUuid": "2b349127-e67b-4853-ad7e-7527e603bd78", "rawTextureUuid": "b00c069b-297d-4ec3-ae7c-1f2daae5ed48",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 4.5,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 1,
"width": 682, "width": 213,
"height": 266, "height": 255,
"rawWidth": 682, "rawWidth": 213,
"rawHeight": 266, "rawHeight": 266,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "63eab6f7-44ca-47ec-b765-8c4dbb173d69", "uuid": "f051477e-f3f8-413f-ab5f-38d5e66451b7",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 48, "width": 196,
"height": 46, "height": 269,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_star_bg": { "go_3": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "5664ef8d-4847-407d-9147-92df3bb5a0e4", "uuid": "70d8e9ad-3c4e-412f-874f-25e0ffd39651",
"rawTextureUuid": "63eab6f7-44ca-47ec-b765-8c4dbb173d69", "rawTextureUuid": "f051477e-f3f8-413f-ab5f-38d5e66451b7",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 4.5,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 2,
"width": 48, "width": 196,
"height": 46, "height": 256,
"rawWidth": 48, "rawWidth": 196,
"rawHeight": 46, "rawHeight": 269,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "ea1079e5-fe0a-4c24-aa3d-0da1d194bccb",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 126,
"height": 60,
"platformSettings": {},
"subMetas": {
"icon_goodjob": {
"ver": "1.0.4",
"uuid": "eb8df11a-b9b3-4c44-98a3-6061c9cca3f3",
"rawTextureUuid": "ea1079e5-fe0a-4c24-aa3d-0da1d194bccb",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 1,
"trimY": 0,
"width": 124,
"height": 60,
"rawWidth": 126,
"rawHeight": 60,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e1baa7d4-f1c1-4c40-8432-644eb1fdf5e1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 61,
"platformSettings": {},
"subMetas": {
"icon_record_normal": {
"ver": "1.0.4",
"uuid": "7f620b81-b2a1-43e6-ad26-31ce65cfafcc",
"rawTextureUuid": "e1baa7d4-f1c1-4c40-8432-644eb1fdf5e1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 1.5,
"trimX": 15,
"trimY": 9,
"width": 31,
"height": 40,
"rawWidth": 61,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1ee3f7ff-ffe0-42a9-8562-0a2f50149ace",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 114,
"height": 114,
"platformSettings": {},
"subMetas": {
"icon_record_normal_2": {
"ver": "1.0.4",
"uuid": "0f33a2a7-12bc-4be5-bb1d-cbec5010d2fd",
"rawTextureUuid": "1ee3f7ff-ffe0-42a9-8562-0a2f50149ace",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 27,
"trimY": 19,
"width": 61,
"height": 77,
"rawWidth": 114,
"rawHeight": 114,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fdac0ef1-0ed6-4e09-8c1c-1b825f3284f7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 126,
"height": 60,
"platformSettings": {},
"subMetas": {
"icon_tryagain": {
"ver": "1.0.4",
"uuid": "78f3c1fb-a514-48a5-90f6-78082ef7f90b",
"rawTextureUuid": "fdac0ef1-0ed6-4e09-8c1c-1b825f3284f7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 1,
"trimY": 0,
"width": 124,
"height": 60,
"rawWidth": 126,
"rawHeight": 60,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "800ae7eb-2800-463e-b93c-33319db15a24", "uuid": "0e8f97c5-f1d7-4f30-b2fc-aeabf2950170",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 199, "width": 402,
"height": 91, "height": 1254,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_compose": { "light": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "0fe26c76-9e66-422c-8234-916d6de7499a", "uuid": "e1c7090f-f852-4cbe-ab87-6b14ba2985cc",
"rawTextureUuid": "800ae7eb-2800-463e-b93c-33319db15a24", "rawTextureUuid": "0e8f97c5-f1d7-4f30-b2fc-aeabf2950170",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0.5,
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 1,
"trimY": 0, "trimY": 0,
"width": 199, "width": 401,
"height": 91, "height": 1254,
"rawWidth": 199, "rawWidth": 402,
"rawHeight": 91, "rawHeight": 1254,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "85cff953-25f5-4296-a1ee-9bde671e1c1b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 582,
"height": 232,
"platformSettings": {},
"subMetas": {
"record_item": {
"ver": "1.0.4",
"uuid": "141b193b-ef4b-4b3e-9edc-0e5a4ede8b0e",
"rawTextureUuid": "85cff953-25f5-4296-a1ee-9bde671e1c1b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 582,
"height": 232,
"rawWidth": 582,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ca074efa-0875-4993-b466-eee08f2ddb89",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 582,
"height": 232,
"platformSettings": {},
"subMetas": {
"record_item_choose": {
"ver": "1.0.4",
"uuid": "9e90a486-38ba-44d7-a6fe-01f6446b70be",
"rawTextureUuid": "ca074efa-0875-4993-b466-eee08f2ddb89",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -17,
"trimX": 0,
"trimY": 34,
"width": 582,
"height": 198,
"rawWidth": 582,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9772b9e3-16b8-4b4a-807d-f94e2a5b1363",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 582,
"height": 232,
"platformSettings": {},
"subMetas": {
"record_item_mask": {
"ver": "1.0.4",
"uuid": "8bd2b2f1-d433-4b72-82ea-a93c054e3a86",
"rawTextureUuid": "9772b9e3-16b8-4b4a-807d-f94e2a5b1363",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3,
"trimX": 2,
"trimY": 0,
"width": 578,
"height": 226,
"rawWidth": 582,
"rawHeight": 232,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "91aa91e6-6b54-4632-a693-7344f7500b46",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 61,
"platformSettings": {},
"subMetas": {
"record_progress_btn": {
"ver": "1.0.4",
"uuid": "e5b91f48-f0d7-4589-a7fa-761276b115ef",
"rawTextureUuid": "91aa91e6-6b54-4632-a693-7344f7500b46",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 61,
"height": 61,
"rawWidth": 61,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "affca68c-ef43-4869-b5fb-e7e95634e011", "uuid": "9d439303-2435-409c-acd4-258ac64436e5",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 682, "width": 645,
"height": 266, "height": 112,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_tryagain": { "start_title": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "c92658cf-ebe0-4305-bfbb-cf9bec6bfd3d", "uuid": "ac5839b6-7c92-460f-a285-446e0e34ace0",
"rawTextureUuid": "affca68c-ef43-4869-b5fb-e7e95634e011", "rawTextureUuid": "9d439303-2435-409c-acd4-258ac64436e5",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": -1,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 3,
"width": 682, "width": 645,
"height": 266, "height": 108,
"rawWidth": 682, "rawWidth": 645,
"rawHeight": 266, "rawHeight": 112,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "26350aea-4815-4d4e-817c-8e3758cd8f60",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 920,
"height": 103,
"platformSettings": {},
"subMetas": {
"video_controler_bg": {
"ver": "1.0.4",
"uuid": "7661c980-e8f3-4e4b-8732-30209058ff09",
"rawTextureUuid": "26350aea-4815-4d4e-817c-8e3758cd8f60",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 920,
"height": 103,
"rawWidth": 920,
"rawHeight": 103,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "789c42d5-6368-43b5-9eb5-15d6fd4047cb",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 91,
"height": 76,
"platformSettings": {},
"subMetas": {
"video_pause": {
"ver": "1.0.4",
"uuid": "66322678-0f63-48a8-94eb-454c540d733c",
"rawTextureUuid": "789c42d5-6368-43b5-9eb5-15d6fd4047cb",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 91,
"height": 76,
"rawWidth": 91,
"rawHeight": 76,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "146c9d0b-bb57-4188-a41c-9c8fcd823859",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 91,
"height": 76,
"platformSettings": {},
"subMetas": {
"video_play": {
"ver": "1.0.4",
"uuid": "dfa90a64-afe8-493c-a412-2de649c20ec9",
"rawTextureUuid": "146c9d0b-bb57-4188-a41c-9c8fcd823859",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 91,
"height": 76,
"rawWidth": 91,
"rawHeight": 76,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "67b255c7-ee5d-4a80-8ef3-ed4700a05417",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 710,
"height": 16,
"platformSettings": {},
"subMetas": {
"video_progress_bar": {
"ver": "1.0.4",
"uuid": "a8201f9f-03fc-48d2-9f43-a0917940cb78",
"rawTextureUuid": "67b255c7-ee5d-4a80-8ef3-ed4700a05417",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 710,
"height": 16,
"rawWidth": 710,
"rawHeight": 16,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "efc3f927-d3cf-498f-87e1-8736dc6b5608",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 710,
"height": 16,
"platformSettings": {},
"subMetas": {
"video_progress_bg": {
"ver": "1.0.4",
"uuid": "9555c468-2b8c-4c9f-ac56-054593b20d59",
"rawTextureUuid": "efc3f927-d3cf-498f-87e1-8736dc6b5608",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 710,
"height": 16,
"rawWidth": 710,
"rawHeight": 16,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a3251325-fa44-45ae-8ba7-4539f2ccbfc4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "point",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 42,
"height": 42,
"platformSettings": {},
"subMetas": {
"video_progress_btn": {
"ver": "1.0.4",
"uuid": "56cddb82-bb4e-4b3e-be65-85c45a71483e",
"rawTextureUuid": "a3251325-fa44-45ae-8ba7-4539f2ccbfc4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 42,
"height": 42,
"rawWidth": 42,
"rawHeight": 42,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
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