Commit 6ef4d05d authored by yu's avatar yu

1

parent 9f5f5457
This diff is collapsed.
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
{
"ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"uuid": "155aceeb-a442-4f9e-9846-2f474325f280",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.1.2",
"uuid": "cb9fa4ea-66ca-45af-ad31-e445c7b0ef32",
"uuid": "12e6fb2c-9078-4092-a388-123fe7de7d64",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b",
"uuid": "6aac7f12-2d92-4435-9aff-4b7e1b0476fc",
"downloadMode": 0,
"duration": 0.130612,
"subMetas": {}
......
{
"ver": "1.1.2",
"uuid": "0853721c-3f55-4eb2-873d-e3081cfadd4b",
"uuid": "175b749a-e575-4ba4-8932-a26dae39ff32",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{"name":"录音动画","version":"5.5","armature":[{"name":"Armature","slot":[{"name":"椭圆_11","color":{},"parent":"big"},{"name":"椭圆_11_拷贝","color":{},"z":1,"parent":"small"},{"name":"组_1","color":{},"z":2,"parent":"root"}],"bone":[{"name":"root","transform":{"x":0.4842,"skY":-0.0188,"y":0.4842,"skX":-0.0188}},{"name":"big","transform":{"x":-0.5,"skY":89.9812,"y":-1,"skX":89.9812},"parent":"root"},{"name":"small","transform":{"x":1.9369,"skY":179.9812,"y":0.0006,"skX":179.9812},"parent":"root"}],"aabb":{"x":-101.5312185134179,"height":208,"y":-103.03171071912247,"width":205},"defaultActions":[{"gotoAndPlay":"newAnimation"}],"animation":[{"name":"newAnimation","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"big","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":18},{"x":1.5,"y":1.5,"duration":0}]},{"name":"small","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":18},{"x":1.4,"y":1.4,"duration":0}]}],"playTimes":0,"ffd":[],"ik":[],"slot":[{"name":"椭圆_11","displayFrame":[],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":0,"color":{"aM":0}}]},{"name":"椭圆_11_拷贝","displayFrame":[],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":0,"color":{"aM":12}}]},{"name":"组_1","displayFrame":[],"colorFrame":[]}],"duration":18}],"ik":[],"skin":[{"name":"","slot":[{"name":"椭圆_11","display":[{"name":"提示/椭圆_11","transform":{"x":1.4845,"skY":-90,"y":-0.9839,"skX":-90},"type":"image","path":"提示/椭圆_11"}]},{"name":"椭圆_11_拷贝","display":[{"name":"提示/椭圆_11_拷贝","transform":{"x":-0.0038,"skY":-179.9215,"y":5.8107,"skX":-179.9215},"type":"image","path":"提示/椭圆_11_拷贝"}]},{"name":"组_1","display":[{"name":"提示/组_1","transform":{"x":1.0034,"y":-5.0077},"type":"image","path":"提示/组_1"}]}]}],"frameRate":24,"type":"Armature"}],"frameRate":24,"isGlobal":0}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "6891a5a4-b997-453d-b0e7-727f461ccf43",
"subMetas": {}
}
\ No newline at end of file
{"name":"录音动画","SubTexture":[{"name":"提示/椭圆_11","x":1,"height":208,"y":1,"width":205},{"name":"提示/椭圆_11_拷贝","x":208,"height":156,"y":1,"width":156},{"name":"提示/组_1","x":366,"height":130,"y":1,"width":90}],"height":256,"imagePath":"录音动画_tex.png","width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d822931c-8455-4fa5-8d4c-89142c798cd1",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "793468a0-6b16-4d66-8f62-a32eac270996",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 256,
"platformSettings": {},
"subMetas": {
"录音动画_tex": {
"ver": "1.0.4",
"uuid": "d820098f-39ec-4e1e-ba32-e139a4d47202",
"rawTextureUuid": "793468a0-6b16-4d66-8f62-a32eac270996",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -27.5,
"offsetY": 23,
"trimX": 1,
"trimY": 1,
"width": 455,
"height": 208,
"rawWidth": 512,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "20185448-a1ca-4de2-8b37-7bf6cdfccbae",
"uuid": "26823f59-1f99-4c7b-b61e-5853f72bcffe",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1",
"uuid": "33fab194-fec2-47ed-896c-442e9036771c",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "b8c8ab36-f250-4636-a99a-106d57aad97d",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "6a98d911-2cf7-470a-9bc2-cd7bfe3a0b63",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "e8bd16b0-3804-45a9-a8ca-f52c02224f55",
"uuid": "19e2d2dc-7339-4fdd-ae26-3a2908062f09",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
/*
* @Author: ls
* @Date: 2022-05-21 21:59:51
* @LastEditTime: 2022-06-13 10:34:48
* @LastEditors: ls
* @Description:
* @FilePath: \ls_gramophone\assets\ls_gramophone\script\Item.ts
*/
import simpleLabel from './simpleLabel';
const { ccclass, property } = cc._decorator;
@ccclass
export default class Item extends cc.Component {
@property(simpleLabel)
label: simpleLabel = null;
@property(cc.Node)
tip: cc.Node = null;
@property(cc.Node)
record: cc.Node = null;
@property(cc.Node)
record_click: cc.Node = null;
@property(cc.Node)
myrecord: cc.Node = null;
@property(cc.Node)
myrecord_play: cc.Node = null;
@property(cc.Node)
low: cc.Node = null;
// 录制中
_recording = false;
// 已录音
_recorded = false;
protected start(): void {
// this.init('One day,her grandma got sick!');
}
/**
* 初始化
* @param str 字符串
*/
init(str: string, content) {
this.label.setString(str, 580);//this.node.width 632
this.reset();
this.scheduleOnce(() => {
this.node.height = this.label.getRows() * 48; // 更新节点高度
let c = this.node.width - this.label.getLastStringLenght();
console.log(str);
// console.log("c: " + c);
if (this.node.width - this.label.getLastStringLenght() >= 118) {//170-48
this.record.getComponent(cc.Widget).enabled = false;
this.record_click.getComponent(cc.Widget).enabled = false;
this.myrecord.getComponent(cc.Widget).enabled = false;
this.myrecord_play.getComponent(cc.Widget).enabled = false;
this.record.y = 18;
this.record_click.y = 18;
this.myrecord.y = 18;
this.myrecord_play.y = 18;
this.record.x = this.label.getLastStringLenght() + 32;
this.record_click.x = this.label.getLastStringLenght() + 32;
this.myrecord.x = this.label.getLastStringLenght() + 32 + 86;
this.myrecord_play.x = this.label.getLastStringLenght() + 32 + 86;
}
this.stop();
content && content.getComponent(cc.Layout).updateLayout();
});
}
/**
* 重置所有按钮
*/
reset() {
this.tip.active = false;
this.record.active = true;
this.record_click.active = false;
this.myrecord.active = false;
this.myrecord_play.active = false;
}
/**
* 正在录制声音
*/
recording() {
this._recording = true;
this.record.active = false;
this.record_click.active = true;
}
/**
* 结束录制
*/
recorded() {
this._recording = false;
this.record.active = true;
this.record_click.active = false;
}
getRecording() {
return this._recording;
}
/**
* 未录制音频
*/
hideRecord() {
this._recorded = false;
this.myrecord.active = false;
this.myrecord_play.active = false;
}
/**
* 播放已录制声音
*/
playRecord() {
this._recorded = true;
this.myrecord.active = false;
this.myrecord_play.active = true;
}
/**
* 停止已录制声音
*/
stopRecord() {
this._recorded = true;
this.myrecord.active = true;
this.myrecord_play.active = false;
}
getRecorded() {
return this._recorded;
}
/**
* 正在播放中
*/
playing() {
this.tip.active = true;
// this.label.node.color = cc.color(255, 96, 0);
this.label.node.color = cc.color(251, 255, 177);
this.hideLow();
}
/**
* 播放完成
*/
stop() {
this.tip.active = false;
this.label.node.color = cc.color(255, 255, 255);
this.showLow();
}
hideLow() {
this.label.node.children.forEach((e) => {
e.active = false;
});
}
showLow() {
this.label.node.children.forEach((e) => {
e.active = true;
});
}
clearLow() {
this.label.node.removeAllChildren();
}
setLow(str: string, index: number = 1) {
let ps = this.label.getTargetStringPos(str);
if (index > ps.length) {
return;
}
let p = ps[index - 1];
let low = cc.instantiate(this.low);
low.parent = this.label.node;
low.active = true;
low.width = p.z;
low.name = "low";
low.getComponentInChildren(cc.Label).string = str;
low.setPosition(p.y, (p.x - 1) * 48);
}
cleanLow() {
this.label.node.children.forEach(ch => {
if (ch.name == "low") {
ch.parent = null;
ch.destroy();
}
});
}
}
{
"ver": "1.0.8",
"uuid": "408a67f8-65fa-4cf1-8cf2-83e20e1a0fd5",
"uuid": "83e78328-6683-49c1-831d-1848d87e856f",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
This diff is collapsed.
{
"ver": "1.2.9",
"uuid": "0737ce42-24f0-45c6-8e1a-8bdab4f74ba3",
"uuid": "44caeca0-1257-4610-a742-274f264654d6",
"asyncLoadAssets": false,
"autoReleaseAssets": true,
"autoReleaseAssets": false,
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.8",
"uuid": "12291789-8ecc-49b9-a411-ea209785e97d",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.8",
"uuid": "8fd86b00-25d1-4ee2-a910-3d0ce5b59874",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
/*
* @Author: ls
* @Date: 2022-05-21 18:06:20
* @LastEditTime: 2022-06-14 17:52:50
* @LastEditors: ls
* @Description:
* @FilePath: \ls_gramophone\assets\ls_gramophone\script\simpleLabel.ts
*/
const { ccclass, property } = cc._decorator;
@ccclass
export default class simpleLabel extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
// 源字符串
private _sourceString = '';
// 源字符串数组
private _sourceArray = [];
// 目标字符串
private _targetString = '';
// 目标字符串的最后一行字符串
private _lastString = '';
// 目标字符串行数
private _rows = 0;
// 目标宽度
private _targetWidget = 0;
// TODO 字符数组(后期处理标点符号)
private _characters = [',', '.'];
protected start(): void {
// 测试代码
// this.setString('One day,her grandma got sick.', 562);
}
/**
* 设置字符串
* @param sourceString 源字符串
* @param targetWidget 目标宽度
* @param splitter 分割器(默认使用空格)
*/
public setString(sourceString: string, targetWidget: number, splitter: string = ' ') {
if (!this.label) {
this.label = this.node.getComponent(cc.Label);
if (!this.label) {
return;
}
}
this._targetWidget = targetWidget;
// 保存源字符串
this._sourceString = sourceString;
// 保存源字符串数组(根据空格分割)
this._sourceArray = sourceString.split(splitter);
// 重置目标字符串
this._targetString = '';
// 重置目标字符串的最后一行
this._lastString = '';
for (let index = 0; index < this._sourceArray.length; index++) {
const element = this._sourceArray[index]; // 分割后每个字符串
// 临时字符串
const tempString = this._lastString;
if (this._lastString === '') {
this._lastString = element; // 设置字符串
} else {
this._lastString = this._lastString + ' ' + element; // 添加字符串
}
// 如果字符串长度 >= 设计字符串长度
if (this.getLetterWidth(this.label, this._lastString) >= targetWidget) {
// 给字符串添加换行符
this._targetString = this._targetString + '\n' + tempString;
// 增加行数
this._rows++;
// 重置临时字符串
this._lastString = element;
}
}
// 给字符串添加换行符
this._targetString = this._targetString + '\n' + this._lastString;
// 增加行数
this._rows++;
// 设置目标字符串
this.label.string = this._targetString;
}
/**
* 获取目标字符串的最后一行字符串的长度
*/
public getLastStringLenght() {
if (!this.label) {
this.label = this.node.getComponent(cc.Label);
if (!this.label) {
return 0;
}
}
if (this._lastString === '') {
return 0;
}
return this.getLetterWidth(this.label, this._lastString);
}
/**
* 获取目标字符串的行数
*/
public getRows() {
if (!this.label) {
this.label = this.node.getComponent(cc.Label);
if (!this.label) {
return 0;
}
}
return this._rows;
}
/**
* 获取字符串的宽度
* @param letter 字符串
* @returns
*/
private getLetterWidth(label: cc.Label, letter: string) {
let comp = label;
if (!comp['_assemblerData']) {
console.log("322");
}
let assemblerData = comp['_assemblerData'];
let ctx = assemblerData.context;
let metric = ctx.measureText(letter);
let width = (metric && metric.width) || 0;
return width;
}
/**
* 获取所有字符串的位置
* @param str
* @returns
*/
getTargetStringPos(str: string) {
let poss = [];
let rows = this._rows;
let lastString = '';
if (this._sourceArray && this._sourceArray.length) {
for (let index = 0; index < this._sourceArray.length; index++) {
let element = this._sourceArray[index];
// 临时字符串
let tempString = lastString;
if (lastString === '') {
lastString = element; // 设置字符串
} else {
lastString = lastString + ' ' + element; // 添加字符串
}
// 如果字符串长度 >= 设计字符串长度
if (this.getLetterWidth(this.label, lastString) >= this._targetWidget) {
// 增加行数
lastString = element;
tempString = '';
rows--;
}
let temp = element;
// TODO 处理标点符号
// if (element.indexOf(',') !== -1 || element.indexOf('.') !== -1 || element.indexOf('!') !== -1 || element.indexOf('?') !== -1) {
// temp = temp.substring(0, temp.length - 1);
// }
if (temp === str) {
let x = this.getLetterWidth(this.label, tempString);
if (x !== 0) {
x += this.getLetterWidth(this.label, ' ');
}
poss.push(cc.v3(rows, x, this.getLetterWidth(this.label, str)));
}
}
}
return poss;
}
}
{
"ver": "1.0.8",
"uuid": "dd1a96df-21a6-4f3c-8e6d-5855575f876a",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "b0c008bc-cf92-463b-8360-0984e13c2e4d",
"uuid": "dc0d7299-1373-426b-a762-7cf81b49cbdf",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.0.8",
"uuid": "f8b451ff-857c-4ca8-9870-866bc5154a29",
"uuid": "4241d6f1-fe19-4b2d-9a1a-2eef80cb4b1b",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
export const defaultData = {
"title": "故事留声机",
"questionText": "欢乐的故事时间到了,亲爱的小玩家,请点击故事台词,仔细听,然后大声的模仿,全部完成后,根据模仿情况,你将获得相应的能量石奖励!快去试试吧!",
"questionTextAudio": "http://staging-teach.cdn.ireadabc.com/92ddbc65e9af775f7a8450a5bef1a732.mp3",
"questionTextAudioName": "热气球大战 游戏说明.mp3",
"pageAudio": 'http://staging-teach.cdn.ireadabc.com/c0e467e1950cb24b1e581737a1344cb4.mp3', // 整体音频
"questions": [{
"options": [{
"duration": 7,
"text": 'Good morning',
"audio": 'http://staging-teach.cdn.ireadabc.com/c0e467e1950cb24b1e581737a1344cb4.mp3',
}, {
"duration": 8,
"text": 'what can i do for you',
"audio": 'http://staging-teach.cdn.ireadabc.com/c0e467e1950cb24b1e581737a1344cb4.mp3',
}, {
"duration": 9,
"text": 'Hello, how are you',
"audio": 'http://staging-teach.cdn.ireadabc.com/17edcaecd09a72a64a77480673cdc232.mp3',
}, {
"duration": 10,
"text": 'Hello, how old are you yo yo you yo yo',
"audio": 'http://staging-teach.cdn.ireadabc.com/17edcaecd09a72a64a77480673cdc232.mp3',
}, {
"duration": 11,
"text": 'Hello, how dare you, Hello, how dare you how dare you how dare you how dare you h',
"audio": 'http://staging-teach.cdn.ireadabc.com/17edcaecd09a72a64a77480673cdc232.mp3',
}
],
"type": "",
"audio": "http://staging-teach.cdn.ireadabc.com/c0e467e1950cb24b1e581737a1344cb4.mp3",
"audioName": "热气球大战 游戏说明.mp3",
"pageImage": "http://staging-teach.cdn.ireadabc.com/2e3b759b961266f3a37559ef759293d7.png"
}, {
"options": [{
"duration": 7,
"text": 'Good morning 1',
"audio": 'http://staging-teach.cdn.ireadabc.com/c0e467e1950cb24b1e581737a1344cb4.mp3',
}, {
"duration": 8,
"text": 'what can i do for you 1',
"audio": 'http://staging-teach.cdn.ireadabc.com/c0e467e1950cb24b1e581737a1344cb4.mp3',
}, {
"duration": 9,
"text": 'Hello, how are you',
"audio": 'http://staging-teach.cdn.ireadabc.com/17edcaecd09a72a64a77480673cdc232.mp3',
}, {
"duration": 10,
"text": 'Hello, how old are you you',
"audio": 'http://staging-teach.cdn.ireadabc.com/17edcaecd09a72a64a77480673cdc232.mp3',
}, {
"duration": 11,
"text": 'Hello, how dare you, Hello, how dare you how dare you how dare you how dare you h',
"audio": 'http://staging-teach.cdn.ireadabc.com/17edcaecd09a72a64a77480673cdc232.mp3',
}
],
"type": "",
"audio": "https://teach.cdn.ireadabc.com/5b720d91d319a52655ffe39fb14c2948.mp3",
"audioName": "热气球大战 游戏说明.mp3",
"pageImage": "http://staging-teach.cdn.ireadabc.com/7780195055731416480edbc97072fe5b.png"
}
]
}
{
"ver": "1.0.8",
"uuid": "c41b0e51-55d7-443c-af3a-b22c3dd9b9e5",
"uuid": "3b09c3c9-5df0-4aae-a69b-05089110f435",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
{
"ver": "1.0.8",
"uuid": "b54300af-b8e5-4b4e-aa2f-9ac1cef7b598",
"uuid": "de75b888-a220-403b-b84a-2539168e93ae",
"isPlugin": true,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
{
"ver": "1.0.8",
"uuid": "ade7af40-d56d-4087-bbc6-2888fef55353",
"uuid": "b20aad85-94aa-41e2-99d8-b1e4dd4bc411",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
{
"ver": "1.1.2",
"uuid": "8ba21262-178f-4fa5-afc9-2c1dd50ba3ab",
"uuid": "567db09e-371a-48ff-96ef-d32ac637a4ac",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "2.3.5",
"uuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f",
"uuid": "5c9e7fb3-ce64-4c2d-8b01-512fba7baaca",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"1orange": {
"ver": "1.0.4",
"uuid": "43d1e79d-6de8-4dcb-b8ce-d767df7913aa",
"rawTextureUuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f",
"uuid": "2daa8a3e-5463-40d5-9cd2-13d496b900fe",
"rawTextureUuid": "5c9e7fb3-ce64-4c2d-8b01-512fba7baaca",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......
{
"ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "32ff207f-dc5e-4516-ab2a-231829e47fd7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "fa9a1724-a8fc-480f-94de-693fd7f2c54a",
"rawTextureUuid": "32ff207f-dc5e-4516-ab2a-231829e47fd7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......
{
"ver": "2.3.5",
"uuid": "9a79969a-0506-48d4-bc98-3c05d109b027",
"uuid": "98644435-37f3-419a-a023-d1bb1c4476de",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"btn_left": {
"ver": "1.0.4",
"uuid": "ce19457d-e8f3-4c38-ae3e-d4b99208ddb5",
"rawTextureUuid": "9a79969a-0506-48d4-bc98-3c05d109b027",
"uuid": "84cc030b-a691-44c7-8769-a3902731564f",
"rawTextureUuid": "98644435-37f3-419a-a023-d1bb1c4476de",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......
{
"ver": "2.3.5",
"uuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "343a381a-ff67-4bf1-9aad-b2b9ec20cc19",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"btn_right": {
"ver": "1.0.4",
"uuid": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59",
"rawTextureUuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "58b021ab-33dd-4cb6-a4a9-d7be0a5fc7de",
"rawTextureUuid": "343a381a-ff67-4bf1-9aad-b2b9ec20cc19",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......
{
"ver": "2.3.5",
"uuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"uuid": "649b40ee-8623-41f1-be39-f7df55eb6305",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"icon": {
"ver": "1.0.4",
"uuid": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a",
"rawTextureUuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"uuid": "3c430c3f-6360-420d-b158-6c32a562b86f",
"rawTextureUuid": "649b40ee-8623-41f1-be39-f7df55eb6305",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......
{
"ver": "1.1.2",
"uuid": "3fb1dbd0-d4d3-49fb-954d-24104fff566a",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ccbbca93-763e-499f-a5ee-6962abe3d733",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 862,
"height": 370,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "6dfb81c1-9789-4321-a604-78781697c0f6",
"rawTextureUuid": "ccbbca93-763e-499f-a5ee-6962abe3d733",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 862,
"height": 370,
"rawWidth": 862,
"rawHeight": 370,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ab572ca8-e85c-4fa6-bf26-6e893b3de089",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_bg": {
"ver": "1.0.4",
"uuid": "f6c70899-9a27-4782-b3e0-452c7c066415",
"rawTextureUuid": "ab572ca8-e85c-4fa6-bf26-6e893b3de089",
"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": "d7307d6d-46e8-40cf-ac3d-32d097a21fab",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 106,
"height": 88,
"platformSettings": {},
"subMetas": {
"bg_countdown": {
"ver": "1.0.4",
"uuid": "032f7e4d-e478-4700-9cbd-e6e7ac5d4b58",
"rawTextureUuid": "d7307d6d-46e8-40cf-ac3d-32d097a21fab",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 106,
"height": 88,
"rawWidth": 106,
"rawHeight": 88,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4bd4f6af-a82d-4ab2-bc91-6bc31aa64941",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 862,
"height": 370,
"platformSettings": {},
"subMetas": {
"bg_di": {
"ver": "1.0.4",
"uuid": "15a6a14c-e154-4289-a87e-1108dd9a0694",
"rawTextureUuid": "4bd4f6af-a82d-4ab2-bc91-6bc31aa64941",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 862,
"height": 370,
"rawWidth": 862,
"rawHeight": 370,
"borderTop": 30,
"borderBottom": 30,
"borderLeft": 30,
"borderRight": 30,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dcbec851-8f00-47bc-a4ec-dbd0ed8e2bbc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 720,
"height": 572,
"platformSettings": {},
"subMetas": {
"bg_heitou": {
"ver": "1.0.4",
"uuid": "784bba3c-61b5-4317-93df-467d434f4be5",
"rawTextureUuid": "dcbec851-8f00-47bc-a4ec-dbd0ed8e2bbc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 720,
"height": 572,
"rawWidth": 720,
"rawHeight": 572,
"borderTop": 30,
"borderBottom": 30,
"borderLeft": 30,
"borderRight": 30,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8234103a-9481-4904-9072-2dcb71b92300",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 18,
"height": 24,
"platformSettings": {},
"subMetas": {
"bg_tip": {
"ver": "1.0.4",
"uuid": "5be2975e-7352-4fd7-b25b-8abbc5be4749",
"rawTextureUuid": "8234103a-9481-4904-9072-2dcb71b92300",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 18,
"height": 24,
"rawWidth": 18,
"rawHeight": 24,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cf892f9b-a86b-439a-bf9f-8980449c69ea",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 195,
"height": 70,
"platformSettings": {},
"subMetas": {
"bg_tip1": {
"ver": "1.0.4",
"uuid": "22b20553-3952-44fd-94bc-c033f2015646",
"rawTextureUuid": "cf892f9b-a86b-439a-bf9f-8980449c69ea",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 195,
"height": 70,
"rawWidth": 195,
"rawHeight": 70,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "157a2f41-9dc6-4cbc-8e29-ba58ab2f47d6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 244,
"height": 70,
"platformSettings": {},
"subMetas": {
"bg_tip2": {
"ver": "1.0.4",
"uuid": "6592c4b1-4922-4629-84b2-ff2fd0bbaeb1",
"rawTextureUuid": "157a2f41-9dc6-4cbc-8e29-ba58ab2f47d6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 244,
"height": 70,
"rawWidth": 244,
"rawHeight": 70,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6b64a1cc-5460-4c41-a44e-3342c09f23cd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 355,
"height": 111,
"platformSettings": {},
"subMetas": {
"bg_title": {
"ver": "1.0.4",
"uuid": "f4e5685e-f9c6-4053-b2d1-e469bc1a66a6",
"rawTextureUuid": "6b64a1cc-5460-4c41-a44e-3342c09f23cd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 355,
"height": 111,
"rawWidth": 355,
"rawHeight": 111,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "af4ffde1-20c7-4691-8252-32ee524ce9fc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 79,
"height": 54,
"platformSettings": {},
"subMetas": {
"btn_arrow": {
"ver": "1.0.4",
"uuid": "7ac4b74a-833e-46c9-8e90-1815364fd09f",
"rawTextureUuid": "af4ffde1-20c7-4691-8252-32ee524ce9fc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 79,
"height": 54,
"rawWidth": 79,
"rawHeight": 54,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "2cc4c00e-9ff0-4ed9-9dd2-5b764b1e9bbb",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "50e042fb-9acb-4a7a-bd8b-ffb1ac84d443",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 90,
"height": 34,
"platformSettings": {},
"subMetas": {
"btn_down": {
"ver": "1.0.4",
"uuid": "716bdb9e-7831-457b-9ec2-269242ad2d0a",
"rawTextureUuid": "50e042fb-9acb-4a7a-bd8b-ffb1ac84d443",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 34,
"rawWidth": 90,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "114794ff-7d9e-4fb5-a357-4d17464a6eec",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 90,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_laba": {
"ver": "1.0.4",
"uuid": "e8075f5c-af60-422c-b2b8-3035d24f7041",
"rawTextureUuid": "114794ff-7d9e-4fb5-a357-4d17464a6eec",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 83,
"rawWidth": 90,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a5d71f01-0109-4af2-8723-0df855af2315",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 90,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_laba1": {
"ver": "1.0.4",
"uuid": "e3802a39-4c58-4447-945b-651d5713b46b",
"rawTextureUuid": "a5d71f01-0109-4af2-8723-0df855af2315",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 83,
"rawWidth": 90,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "573bc19c-4762-4624-8775-6cf89c8660d8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 90,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_laba2": {
"ver": "1.0.4",
"uuid": "3e9bc6f3-1fcf-4bca-93ae-b31203b630a7",
"rawTextureUuid": "573bc19c-4762-4624-8775-6cf89c8660d8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 83,
"rawWidth": 90,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "3e5d0fda-e2cf-41a8-8671-a7b93e421cd9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 79,
"height": 54,
"platformSettings": {},
"subMetas": {
"btn_last": {
"ver": "1.0.4",
"uuid": "b3ccbb31-12f0-421e-ac8b-e2c43d4613b6",
"rawTextureUuid": "3e5d0fda-e2cf-41a8-8671-a7b93e421cd9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 79,
"height": 54,
"rawWidth": 79,
"rawHeight": 54,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c4d6b589-6766-4bae-b2ce-31a4469799e7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 101,
"height": 47,
"platformSettings": {},
"subMetas": {
"btn_myrecord-play": {
"ver": "1.0.4",
"uuid": "2b33e029-1a56-49a6-aed8-85faa3303164",
"rawTextureUuid": "c4d6b589-6766-4bae-b2ce-31a4469799e7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 101,
"height": 47,
"rawWidth": 101,
"rawHeight": 47,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1a218c15-e424-4163-8bf0-eb1eee3645cd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 101,
"height": 47,
"platformSettings": {},
"subMetas": {
"btn_myrecord": {
"ver": "1.0.4",
"uuid": "dafa31bd-d7db-4ea4-85d3-aa0767412bd4",
"rawTextureUuid": "1a218c15-e424-4163-8bf0-eb1eee3645cd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 101,
"height": 47,
"rawWidth": 101,
"rawHeight": 47,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "eed64364-761e-406b-a9d5-3d285044aeec",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 101,
"height": 47,
"platformSettings": {},
"subMetas": {
"btn_myrecord_play": {
"ver": "1.0.4",
"uuid": "0d55a581-d90f-46ca-aeed-7bfee7ffdf64",
"rawTextureUuid": "eed64364-761e-406b-a9d5-3d285044aeec",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 101,
"height": 47,
"rawWidth": 101,
"rawHeight": 47,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "751a707e-2623-406d-806b-c077b31b7df5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 90,
"height": 83,
"platformSettings": {},
"subMetas": {
"btn_play": {
"ver": "1.0.4",
"uuid": "93b1d1f4-c6bb-4f1d-b810-fdb50eef0c1c",
"rawTextureUuid": "751a707e-2623-406d-806b-c077b31b7df5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 83,
"rawWidth": 90,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8eef0b85-f6e2-4d88-8324-1b5b47af56a7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 53,
"height": 51,
"platformSettings": {},
"subMetas": {
"btn_record-click": {
"ver": "1.0.4",
"uuid": "22006342-0eda-4ebe-a788-5fc4eae3c41b",
"rawTextureUuid": "8eef0b85-f6e2-4d88-8324-1b5b47af56a7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 53,
"height": 51,
"rawWidth": 53,
"rawHeight": 51,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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