Commit b6132b6f authored by 李帅's avatar 李帅

完成

parent 3d36cbfc
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
initView() {
this.initBg();
this.initPic();
this.initBtn();
this.initIcon();
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
pic1 = null;
pic2 = null;
initPic() {
const canvas = cc.find('Canvas');
const maxW = canvas.width * 0.7;
this.getSprNodeByUrl(this.data.pic_url, (sprNode) => {
const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x;
canvas.addChild(picNode1);
this.pic1 = picNode1;
const labelNode = new cc.Node();
labelNode.color = cc.Color.YELLOW;
const label = labelNode.addComponent(cc.Label);
label.string = this.data.text;
label.fontSize = 60;
label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode);
});
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
const picNode2 = sprNode;
picNode2.scale = maxW / picNode2.width;
canvas.addChild(picNode2);
picNode2.x = canvas.width;
picNode2.baseX = picNode2.x;
this.pic2 = picNode2;
const labelNode = new cc.Node();
const label = labelNode.addComponent(cc.RichText);
const size = 60
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent(cc.Label).font;
label.string = `<outline color=#751e00 width=4><size=${size}><color=#ffffff>${this.data.text}</color></size></outline>`
label.lineHeight = size;
picNode2.addChild(labelNode);
});
}
initIcon() {
const iconNode = this.getSprNode('icon');
iconNode.zIndex = 5;
iconNode.anchorX = 1;
iconNode.anchorY = 1;
iconNode.parent = cc.find('Canvas');
iconNode.x = iconNode.parent.width / 2 - 10;
iconNode.y = iconNode.parent.height / 2 - 10;
iconNode.on(cc.Node.EventType.TOUCH_START, () => {
this.playAudioByUrl(this.data.audio_url);
})
}
curPage = null;
initBtn() {
this.curPage = 0;
const bottomPart = cc.find('Canvas/bottomPart');
bottomPart.zIndex = 5; // 提高层级
bottomPart.x = bottomPart.parent.width / 2;
bottomPart.y = -bottomPart.parent.height / 2;
const leftBtnNode = bottomPart.getChildByName('btn_left');
//节点中添加了button组件 则可以添加click事件监听
leftBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 0) {
return;
}
this.curPage = 0
this.leftMove();
this.playLocalAudio('btn');
})
const rightBtnNode = bottomPart.getChildByName('btn_right');
//节点中添加了button组件 则可以添加click事件监听
rightBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 1) {
return;
}
this.curPage = 1
this.rightMove();
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
this.playLocalAudio('btn');
})
}
leftMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
rightMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX - len }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX - len }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
// update (dt) {},
initListener() {
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "ed12615d-9b16-4dc3-953c-6b364b860dd3",
"subMetas": {}
}
\ No newline at end of file
{
"name": "girl",
"imagePath": "girl_tex.png",
"SubTexture": [
{ "name": "动画/阴影", "x": 1, "height": 51, "y": 236, "width": 200 },
{ "name": "动画/右腿", "x": 1, "height": 93, "y": 289, "width": 50 },
{ "name": "动画/左腿", "x": 53, "height": 93, "y": 289, "width": 50 },
{ "name": "动画/右辫子", "x": 470, "height": 70, "y": 1, "width": 35 },
{ "name": "动画/右边斗篷", "x": 203, "height": 96, "y": 236, "width": 68 },
{ "name": "动画/右手", "x": 1, "height": 48, "y": 167, "width": 106 },
{ "name": "动画/衣服", "x": 189, "height": 137, "y": 1, "width": 170 },
{ "name": "动画/脖子", "x": 162, "height": 16, "y": 215, "width": 20 },
{ "name": "动画/左手", "x": 158, "height": 85, "y": 289, "width": 28 },
{ "name": "动画/左边斗篷", "x": 361, "height": 114, "y": 1, "width": 107 },
{ "name": "动画/领结", "x": 109, "height": 48, "y": 167, "width": 51 },
{ "name": "动画/帽子", "x": 1, "height": 164, "y": 1, "width": 186 },
{ "name": "动画/左辫子", "x": 105, "height": 81, "y": 289, "width": 51 },
{ "name": "动画/脸", "x": 344, "height": 94, "y": 140, "width": 130 },
{ "name": "动画/右眼", "x": 162, "height": 23, "y": 167, "width": 21 },
{ "name": "动画/头发", "x": 189, "height": 94, "y": 140, "width": 153 },
{ "name": "动画/左眼", "x": 470, "height": 30, "y": 100, "width": 28 },
{ "name": "动画/眉毛", "x": 180, "height": 6, "y": 192, "width": 6 },
{ "name": "动画/嘴2", "x": 361, "height": 8, "y": 117, "width": 34 },
{ "name": "动画/嘴", "x": 470, "height": 25, "y": 73, "width": 37 },
{ "name": "动画/鼻子", "x": 162, "height": 21, "y": 192, "width": 16 }
],
"height": 512,
"width": 512
}
{
"ver": "1.0.1",
"uuid": "cae7e608-ff60-449e-b03d-905f0c219a2a",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "44ccdf0e-e062-4254-b4a8-60d2de4245bd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"girl_tex": {
"ver": "1.0.4",
"uuid": "8fb47a1d-f573-4f15-a186-929b88a19ee2",
"rawTextureUuid": "44ccdf0e-e062-4254-b4a8-60d2de4245bd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -2,
"offsetY": 64.5,
"trimX": 1,
"trimY": 1,
"width": 506,
"height": 381,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "1.1.0", "ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1", "uuid": "51d3d342-1e32-4cb7-81b1-b845b7056ad4",
"subMetas": {} "subMetas": {}
} }
\ No newline at end of file
/*
* @Author: ls
* @Date: 2022-04-14 19:58:47
* @LastEditors: ls
* @LastEditTime: 2022-04-16 16:16:39
* @Description: file content
* @FilePath: \ls_activity_before\assets\ls_activity_before\scene\ls_activity_before.ts
*/
import { MyCocosSceneComponent } from '../script/MyCocosSceneComponent';
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
for (let index = 0; index < this.data.gameInfo.length; index++) {
this._imageResList.push({ url: this.data.gameInfo[index].img });
}
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio });
}
addPreloadAnima() {}
onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_content = null;
initData() {
// 所有全局变量 默认都是null
this._content = [];
}
initView() {
this.initBg();
let dev = cc.find('Canvas/dev');
for (let index = 0; index < dev.children.length; index++) {
const element = dev.children[index];
if (this.data.gameInfo[index].img !== '') {
this.getSpriteFrimeByUrl(this.data.gameInfo[index].img, (sp) => {
cc.find('img', element).getComponent(cc.Sprite).spriteFrame = sp;
});
}
if (this.data.gameInfo[index].icon > 0) {
cc.find('done', element).active = true;
} else if (this.data.gameInfo[index].icon < 0) {
cc.find('done', element).active = false;
}
}
if (this.data.audio && this.data.audio !== '') {
let girl_ske = cc.find('Canvas/girl_ske').getComponent(dragonBones.ArmatureDisplay);
girl_ske.playAnimation('speak', 0);
this.playAudioByUrl(this.data.audio, () => {
girl_ske.playAnimation('normal', 0);
});
} else {
let girl_ske = cc.find('Canvas/girl_ske').getComponent(dragonBones.ArmatureDisplay);
girl_ske.playAnimation('normal', 0);
}
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
initListener() {}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
});
}
onCallBack(event, str) {
this.playLocalAudio('btn');
// TODO
if (str === '0') {
} else if (str === '1') {
} else if (str === '2') {
} else if (str === '3') {
}
}
}
/*
* @Author: ls
* @Date: 2022-04-14 19:58:47
* @LastEditors: ls
* @LastEditTime: 2022-04-16 16:13:29
* @Description: file content
* @FilePath: \ls_activity_before\assets\ls_activity_before\script\defaultData.ts
*/
export const defaultData = {
title: '活动前',
audio: 'http://staging-teach.cdn.ireadabc.com/c08af4f22c71ad8b3d8786a837787ac9.mp3',
gameInfo: [
{
id: 10001,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: 0,
},
{
id: 10002,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
{
id: 10003,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
{
id: 10004,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
{
id: 10005,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
],
};
{
"ver": "1.1.2",
"uuid": "bb834f46-31a8-4de9-a0f3-f1186386475a",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "57c0d2e9-25bd-4ec2-adf5-75af8e7f0a77",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": true,
"genMipmaps": false,
"packable": false,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_bg": {
"ver": "1.0.4",
"uuid": "78e96401-706a-4725-8936-c0e3064d41ec",
"rawTextureUuid": "57c0d2e9-25bd-4ec2-adf5-75af8e7f0a77",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 750,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4b37b579-6a5c-4849-b312-4dd555d93446",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 142,
"platformSettings": {},
"subMetas": {
"bg_front": {
"ver": "1.0.4",
"uuid": "8bb99d69-7e17-4785-a195-0147c2957475",
"rawTextureUuid": "4b37b579-6a5c-4849-b312-4dd555d93446",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 142,
"rawWidth": 1334,
"rawHeight": 142,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "18d07592-51a9-421e-8972-0f67b68d29e1", "uuid": "324f7bb0-46b1-4dcb-86cc-011e72560720",
"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": 144, "width": 412,
"height": 144, "height": 503,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon": { "bg_pic": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a", "uuid": "1af89af0-006b-420d-9fba-8c8c3e547269",
"rawTextureUuid": "18d07592-51a9-421e-8972-0f67b68d29e1", "rawTextureUuid": "324f7bb0-46b1-4dcb-86cc-011e72560720",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -1,
"offsetY": -0.5, "offsetY": -1,
"trimX": 3, "trimX": 0,
"trimY": 2, "trimY": 2,
"width": 138, "width": 410,
"height": 141, "height": 501,
"rawWidth": 144, "rawWidth": 412,
"rawHeight": 144, "rawHeight": 503,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f", "uuid": "b16e2e8a-9cf6-45ec-8c9c-dec97aea07f0",
"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": 366, "width": 1334,
"height": 336, "height": 596,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"1orange": { "bg_sky": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "43d1e79d-6de8-4dcb-b8ce-d767df7913aa", "uuid": "10124f6f-7a00-46a6-af19-5d73e95b4c17",
"rawTextureUuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f", "rawTextureUuid": "b16e2e8a-9cf6-45ec-8c9c-dec97aea07f0",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": -0.5, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 1, "trimY": 0,
"width": 366, "width": 1334,
"height": 335, "height": 596,
"rawWidth": 366, "rawWidth": 1334,
"rawHeight": 336, "rawHeight": 596,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b", "uuid": "464a292e-921c-4324-8124-4f28820c22da",
"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": 1280, "width": 159,
"height": 720, "height": 69,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg": { "bg_stone": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd", "uuid": "d3db55b9-13ad-44b2-8887-59d394ee72a0",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b", "rawTextureUuid": "464a292e-921c-4324-8124-4f28820c22da",
"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": 1280, "width": 159,
"height": 720, "height": 69,
"rawWidth": 1280, "rawWidth": 159,
"rawHeight": 720, "rawHeight": 69,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "ea0e83b7-e417-4734-8b5e-6c67004de240",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 862,
"height": 573,
"platformSettings": {},
"subMetas": {
"bg_tree": {
"ver": "1.0.4",
"uuid": "92c53c99-f66e-4d69-8d15-1239166580b3",
"rawTextureUuid": "ea0e83b7-e417-4734-8b5e-6c67004de240",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 862,
"height": 573,
"rawWidth": 862,
"rawHeight": 573,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "9a79969a-0506-48d4-bc98-3c05d109b027", "uuid": "007413d5-174e-49aa-a6ea-0034e4f84943",
"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": 72,
"height": 67, "height": 75,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_left": { "icon_key": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "ce19457d-e8f3-4c38-ae3e-d4b99208ddb5", "uuid": "82d30c65-668d-406f-9801-05ff6911aba4",
"rawTextureUuid": "9a79969a-0506-48d4-bc98-3c05d109b027", "rawTextureUuid": "007413d5-174e-49aa-a6ea-0034e4f84943",
"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": 72,
"height": 67, "height": 75,
"rawWidth": 61, "rawWidth": 72,
"rawHeight": 67, "rawHeight": 75,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "8377ed5e-335f-449b-a3db-33e405325fcd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 63,
"height": 73,
"platformSettings": {},
"subMetas": {
"icon_stone": {
"ver": "1.0.4",
"uuid": "c619af22-fc95-4800-9d4c-1dabffa352df",
"rawTextureUuid": "8377ed5e-335f-449b-a3db-33e405325fcd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0.5,
"trimX": 1,
"trimY": 0,
"width": 62,
"height": 72,
"rawWidth": 63,
"rawHeight": 73,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "86307c17-5f09-466e-a006-f2a2a9f827f5",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "967f2c78-bb78-4238-bc5f-9ac5df6de6f6",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "d582359e-924e-4ee9-9964-1fc4bb417e71", "uuid": "533aec3b-73ba-40b6-a5b1-fd2da1817890",
"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": 797,
"height": 67, "height": 533,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_right": { "bg_di": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59", "uuid": "6392c589-592f-4f4b-b67c-ddc64e72c091",
"rawTextureUuid": "d582359e-924e-4ee9-9964-1fc4bb417e71", "rawTextureUuid": "533aec3b-73ba-40b6-a5b1-fd2da1817890",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": -0.5, "offsetX": -0.5,
"offsetY": 0.5, "offsetY": 0,
"trimX": 0, "trimX": 4,
"trimY": 0, "trimY": 0,
"width": 60, "width": 788,
"height": 66, "height": 533,
"rawWidth": 61, "rawWidth": 797,
"rawHeight": 67, "rawHeight": 533,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "3d47756d-711f-4bcd-a195-3189d5f12c80",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 219,
"height": 109,
"platformSettings": {},
"subMetas": {
"bg_title1": {
"ver": "1.0.4",
"uuid": "128221d5-ec72-48e1-b297-24890918bbae",
"rawTextureUuid": "3d47756d-711f-4bcd-a195-3189d5f12c80",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 219,
"height": 109,
"rawWidth": 219,
"rawHeight": 109,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "708495df-b306-4463-8865-f6e7e1715602",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 219,
"height": 109,
"platformSettings": {},
"subMetas": {
"bg_title2": {
"ver": "1.0.4",
"uuid": "956c6be6-1f6d-49e4-bc93-38df4a1ec37c",
"rawTextureUuid": "708495df-b306-4463-8865-f6e7e1715602",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 219,
"height": 109,
"rawWidth": 219,
"rawHeight": 109,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "52a4ae1b-db1c-49e5-8259-741c1ecf69b5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 467,
"height": 471,
"platformSettings": {},
"subMetas": {
"bg_video": {
"ver": "1.0.4",
"uuid": "9da57643-8aa5-4e52-aee5-ac4f1eb9baaa",
"rawTextureUuid": "52a4ae1b-db1c-49e5-8259-741c1ecf69b5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 467,
"height": 471,
"rawWidth": 467,
"rawHeight": 471,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "88022fac-5c88-4998-b1d9-45a59c314fbe",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 230,
"height": 235,
"platformSettings": {},
"subMetas": {
"btn_game1": {
"ver": "1.0.4",
"uuid": "7bcc24d9-8535-4a3f-911e-40c028be3a66",
"rawTextureUuid": "88022fac-5c88-4998-b1d9-45a59c314fbe",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 1,
"width": 229,
"height": 233,
"rawWidth": 230,
"rawHeight": 235,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "68ce57c2-ded7-4c93-9bf5-d0901cc2eb52",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 185,
"height": 352,
"platformSettings": {},
"subMetas": {
"btn_game2": {
"ver": "1.0.4",
"uuid": "660c5efe-f507-4c1e-8c99-3b20faed721c",
"rawTextureUuid": "68ce57c2-ded7-4c93-9bf5-d0901cc2eb52",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 185,
"height": 352,
"rawWidth": 185,
"rawHeight": 352,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cc76529d-689a-4185-9921-858c99873038",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 474,
"height": 237,
"platformSettings": {},
"subMetas": {
"btn_reading": {
"ver": "1.0.4",
"uuid": "40ba29ea-4403-4c50-9344-be3885c27aad",
"rawTextureUuid": "cc76529d-689a-4185-9921-858c99873038",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 1,
"trimY": 1,
"width": 473,
"height": 235,
"rawWidth": 474,
"rawHeight": 237,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b2c4d9b0-ad96-49b3-ad91-d4ced8e94c2c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 109,
"height": 95,
"platformSettings": {},
"subMetas": {
"btn_return": {
"ver": "1.0.4",
"uuid": "02723345-93ef-4da1-90f0-d77244104fed",
"rawTextureUuid": "b2c4d9b0-ad96-49b3-ad91-d4ced8e94c2c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 109,
"height": 95,
"rawWidth": 109,
"rawHeight": 95,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c6f5a051-753b-44e2-8bfc-5ac852557600",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 117,
"height": 117,
"platformSettings": {},
"subMetas": {
"btn_video-play": {
"ver": "1.0.4",
"uuid": "ae733cde-872d-4049-bb09-1ddbe750c95d",
"rawTextureUuid": "c6f5a051-753b-44e2-8bfc-5ac852557600",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 117,
"height": 117,
"rawWidth": 117,
"rawHeight": 117,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9b22a7e0-5722-40da-b4a3-c32851082e99",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 107,
"height": 53,
"platformSettings": {},
"subMetas": {
"icon_done": {
"ver": "1.0.4",
"uuid": "857d465a-22fd-44d4-8a4d-9d4bde0dd7db",
"rawTextureUuid": "9b22a7e0-5722-40da-b4a3-c32851082e99",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 107,
"height": 53,
"rawWidth": 107,
"rawHeight": 53,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "22b7e8c3-7ab5-4435-affe-d3a4d2973088",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"6-活动前": {
"ver": "1.0.4",
"uuid": "5e8ee6d4-6c41-411d-ba83-196f52455b76",
"rawTextureUuid": "22b7e8c3-7ab5-4435-affe-d3a4d2973088",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 750,
"rawWidth": 1334,
"rawHeight": 750,
"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