Commit 8946bc5e authored by limingzhe's avatar limingzhe

fix: debug

parent a3f5ba9f
No preview for this file type
...@@ -57,25 +57,10 @@ npm start ...@@ -57,25 +57,10 @@ npm start
* 下载模板调试专用app * 下载模板调试专用app
安卓下载:
http://download-iplayabc.oss-cn-beijing.aliyuncs.com/iDebugABC.apk http://download-iplayabc.oss-cn-beijing.aliyuncs.com/iDebugABC.apk
![avatar](http://staging-teach.cdn.ireadabc.com/084f2f95-8213-4c5a-8c46-b194819d7677.png) ![avatar](http://staging-teach.cdn.ireadabc.com/084f2f95-8213-4c5a-8c46-b194819d7677.png)
iOS下载:
由于调试APP没有上架App Store 所以需要先获取手机的UDID 发送给我们的技术支持,加入后才可以扫码下载安装
获取UDID:https://www.pgyer.com/tools/udid
下载iOS: https://www.pgyer.com/gS0X
有时可能需要反复调试一些功能性的问题,与原生APP相关或者手上临时没有设备,我们提供了一个网页版的调试方式
http://staging-openapi.iteachabc.com/api/courseware/v1/middle/debug
* 启动本地服务 * 启动本地服务
``` ```
...@@ -90,6 +75,5 @@ npm start ...@@ -90,6 +75,5 @@ npm start
### 注意事项及常见问题 ### 注意事项及常见问题
* 项目里所有文件及文件夹的命名方式要注意不能包含空格、汉字、减号 * 项目里所有文件及文件夹的命名方式要注意不能包含空格、汉字、减号
* 开发者新建的脚本文件(.js/.ts)的文件名必须包含项目名称,例如在 test_01 项目中添加一个脚本文件(如想命名为 hello.ts );则需要命名为 hello_test_01.ts
* 项目里尽量不要使用setTimeout、setInterval等定时器,如果使用了记得在onDestroy中释放掉(onDestroy 是指CocosCreator的生命周期钩子) * 项目里尽量不要使用setTimeout、setInterval等定时器,如果使用了记得在onDestroy中释放掉(onDestroy 是指CocosCreator的生命周期钩子)
* 理论上禁止使用全局变量,因为模板到线上会进行组装,常见问题是一个模板使用多次造成全局变量被读脏 * 理论上禁止使用全局变量,因为模板到线上会进行组装,常见问题是一个模板使用多次造成全局变量被读脏
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() {
}
async 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);
});
})
}
}
{
"ver": "1.0.8",
"uuid": "408a67f8-65fa-4cf1-8cf2-83e20e1a0fd5",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import { defaultData } from "../script/defaultData";
export class MyCocosSceneComponent extends cc.Component {
// 生命周期 onLoad
onLoad() {
this.initSceneData();
this.initSize();
}
_imageResList = null;
_audioResList = null;
_animaResList = null;
initSceneData() {
this._imageResList = [];
this._audioResList = [];
this._animaResList = [];
}
_designSize = null; // 设计分辨率
_frameSize = null; // 屏幕分辨率
_mapScaleMin = null; // 场景中常用缩放(取大值)
_mapScaleMax = null; // 场景中常用缩放(取小值)
_cocosScale = null; // cocos 自缩放 (较少用到)
initSize() {
// 注意cc.winSize只有在适配后(修改fitHeight/fitWidth后)才能获取到正确的值,因此使用cc.getFrameSize()来获取初始的屏幕大小
let screen_size = cc.view.getFrameSize().width / cc.view.getFrameSize().height
let design_size = cc.Canvas.instance.designResolution.width / cc.Canvas.instance.designResolution.height
let f = screen_size >= design_size
cc.Canvas.instance.fitHeight = f
cc.Canvas.instance.fitWidth = !f
const frameSize = cc.view.getFrameSize();
this._frameSize = frameSize;
this._designSize = cc.view.getDesignResolutionSize();
let sx = cc.winSize.width / frameSize.width;
let sy = cc.winSize.height / frameSize.height;
this._cocosScale = Math.min(sx, sy);
sx = frameSize.width / this._designSize.width;
sy = frameSize.height / this._designSize.height;
this._mapScaleMin = Math.min(sx, sy) * this._cocosScale;
this._mapScaleMax = Math.max(sx, sy) * this._cocosScale;
cc.director['_scene'].width = frameSize.width;
cc.director['_scene'].height = frameSize.height;
}
data = null;
// 生命周期 start
start() {
if (window && (<any>window).courseware && (<any>window).courseware.getData) {
(<any>window).courseware.getData((data) => {
this.log('data:' + data);
this.data = data || this.getDefaultData();
this.data = JSON.parse(JSON.stringify(this.data));
this.preloadItem();
})
} else {
this.data = this.getDefaultData();
this.preloadItem();
}
}
getDefaultData() {
return defaultData;
}
preloadItem() {
this.addPreloadImage();
this.addPreloadAudio();
this.addPreloadAnima();
this.preload();
}
addPreloadImage() {
}
addPreloadAudio() {
}
addPreloadAnima() {
}
preload() {
const preloadArr = this._imageResList.concat(this._audioResList).concat(this._animaResList);
cc.assetManager.preloadAny(preloadArr, null, null, async (err, data) => {
if (window && window["air"]) {
// window["air"].onCourseInScreen = (next) => {
// window["air"].isCourseInScreen = true;
// this.onLoadEnd();
// next();
// };
await this.onLoadEnd();
window["air"].hideAirClassLoading();
} else {
await this.onLoadEnd();
}
cc.debug.setDisplayStats(false);
});
}
log (str) {
const node = cc.find('middleLayer');
if(node){
node.getComponent('middleLayer').log(str);
}else{
console.log(str);
}
}
async onLoadEnd() {
}
// ------------------------------------------------
getSprNode(resName) {
const sf = cc.find('Canvas/res/img/' + resName).getComponent(cc.Sprite).spriteFrame;
const node = new cc.Node();
node.addComponent(cc.Sprite).spriteFrame = sf;
return node;
}
getSpriteFrimeByUrl(url, cb) {
cc.loader.load({ url }, (err, img) => {
const spriteFrame = new cc.SpriteFrame(img)
if (cb) {
cb(spriteFrame);
}
})
}
getSprNodeByUrl(url, cb) {
const node = new cc.Node();
const spr = node.addComponent(cc.Sprite);
this.getSpriteFrimeByUrl(url, (sf) => {
spr.spriteFrame = sf;
if (cb) {
cb(node);
}
})
}
playAudioByUrl(audio_url, cb = null) {
if (audio_url) {
cc.assetManager.loadRemote(audio_url, (err, audioClip) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8);
if (cb) {
cc.audioEngine.setFinishCallback(audioId, () => {
cb();
});
}
});
}else{
cb && cb();
}
}
}
\ No newline at end of file
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.8",
"uuid": "ade7af40-d56d-4087-bbc6-2888fef55353",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "8ba21262-178f-4fa5-afc9-2c1dd50ba3ab",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541", "uuid": "3a401c73-9c66-4ad2-8aae-ad0e62b062c8",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "cb9fa4ea-66ca-45af-ad31-e445c7b0ef32", "uuid": "7b5f41bb-3a33-42fd-8f12-036dce38c623",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "20185448-a1ca-4de2-8b37-7bf6cdfccbae", "uuid": "bb141818-b381-463f-aac5-d4ca491451cb",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"__type__": "cc.AnimationClip",
"_name": "laba",
"_objFlags": 0,
"_native": "",
"_duration": 0.6833333333333333,
"sample": 60,
"speed": 1,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "91f97a8a-38b1-473a-9f05-c9e5796352ee"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "28d565d4-f10c-4d8d-94b1-fbd505104c49"
}
},
{
"frame": 0.6666666666666666,
"value": {
"__uuid__": "91f97a8a-38b1-473a-9f05-c9e5796352ee"
}
}
]
}
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.0",
"uuid": "395dc2f8-fba0-407e-9d68-402495e4b775",
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f", "uuid": "083638f5-c4ae-4505-bf3d-87396ba25b5e",
"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": 91,
"height": 336, "height": 91,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"1orange": { "sound_ani_1": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "43d1e79d-6de8-4dcb-b8ce-d767df7913aa", "uuid": "91f97a8a-38b1-473a-9f05-c9e5796352ee",
"rawTextureUuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f", "rawTextureUuid": "083638f5-c4ae-4505-bf3d-87396ba25b5e",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": -0.5, "offsetY": -1.5,
"trimX": 0, "trimX": 0,
"trimY": 1, "trimY": 3,
"width": 366, "width": 91,
"height": 335, "height": 88,
"rawWidth": 366, "rawWidth": 91,
"rawHeight": 336, "rawHeight": 91,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "fa9cce18-9114-4ee5-8ec6-c80e0ebea0f0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 91,
"height": 91,
"platformSettings": {},
"subMetas": {
"sound_ani_2": {
"ver": "1.0.4",
"uuid": "28d565d4-f10c-4d8d-94b1-fbd505104c49",
"rawTextureUuid": "fa9cce18-9114-4ee5-8ec6-c80e0ebea0f0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 1,
"trimY": 4,
"width": 89,
"height": 87,
"rawWidth": 91,
"rawHeight": 91,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "0853721c-3f55-4eb2-873d-e3081cfadd4b", "uuid": "463795c7-6f6e-4d27-8bcf-27b2876e4575",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{"frameRate":24,"name":"icon_right","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"armatureName","aabb":{"x":-23,"y":-51,"width":47,"height":40},"bone":[{"name":"root"},{"length":29,"name":"心","parent":"root","transform":{"y":-31}}],"slot":[{"name":"心","parent":"心"}],"skin":[{"slot":[{"name":"心","display":[{"name":"心","transform":{"x":0.5}}]}]}],"animation":[{"duration":30,"playTimes":0,"name":"newAnimation","bone":[{"name":"心","scaleFrame":[{"duration":30,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":0}]}],"slot":[{"name":"心","colorFrame":[{"duration":20,"tweenEasing":0},{"duration":10,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"newAnimation"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "b1e60dd4-e8be-4e07-90be-75457ef88ccd",
"subMetas": {}
}
\ No newline at end of file
{"name":"icon_right","height":64,"SubTexture":[{"name":"心","x":1,"height":40,"y":1,"width":47}],"imagePath":"icon_right_tex.png","width":64}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "e277ebcc-5165-4965-a81f-b9a19d78c759",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8db7ec89-fee4-4bde-aa32-c8f042b9de8a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 64,
"height": 64,
"platformSettings": {},
"subMetas": {
"icon_right_tex": {
"ver": "1.0.4",
"uuid": "7486305c-e40b-4260-91ca-c42c4bae18a7",
"rawTextureUuid": "8db7ec89-fee4-4bde-aa32-c8f042b9de8a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -7.5,
"offsetY": 11,
"trimX": 1,
"trimY": 1,
"width": 47,
"height": 40,
"rawWidth": 64,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "1e605600-36b0-430a-b7f9-6d6d1328bb4a",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"icon_wrong","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"armatureName","aabb":{"x":-29,"y":-56,"width":59,"height":52},"bone":[{"name":"root"},{"length":21,"name":"乌云","parent":"root","transform":{"y":-38.5,"skX":2.6507,"skY":2.6507}},{"length":7,"name":"雨滴2","parent":"root","transform":{"x":-7.95,"y":-20.9,"skX":-90,"skY":-90}},{"length":7,"name":"雨滴4","parent":"root","transform":{"x":8.3,"y":-17.25,"skX":-90,"skY":-90}},{"length":8,"name":"雨滴3","parent":"root","transform":{"x":22.25,"y":-9.65,"skX":-87.5853,"skY":-87.5853}},{"length":7,"name":"雨滴1","parent":"root","transform":{"x":-21.2,"y":-8.95,"skX":-90,"skY":-90}}],"slot":[{"name":"乌云","parent":"乌云"},{"name":"雨滴1","parent":"雨滴1"},{"name":"雨滴2","parent":"雨滴2"},{"name":"雨滴3","parent":"雨滴3"},{"name":"雨滴4","parent":"雨滴4"}],"skin":[{"slot":[{"name":"雨滴4","display":[{"name":"雨滴4","transform":{"x":2.25,"y":0.2,"skX":90,"skY":90}}]},{"name":"雨滴3","display":[{"name":"雨滴3","transform":{"x":1.86,"y":0.17,"skX":87.59,"skY":87.59}}]},{"name":"乌云","display":[{"name":"乌云","transform":{"x":0.36,"y":-3.02,"skX":-2.65,"skY":-2.65}}]},{"name":"雨滴1","display":[{"name":"雨滴1","transform":{"x":1.55,"y":0.7,"skX":90,"skY":90}}]},{"name":"雨滴2","display":[{"name":"雨滴2","transform":{"x":2.6,"y":-0.55,"skX":90,"skY":90}}]}]}],"animation":[{"duration":24,"playTimes":0,"name":"newAnimation","bone":[{"name":"雨滴2","translateFrame":[{"duration":8,"tweenEasing":0,"y":-13.29},{"tweenEasing":0,"y":13.14},{"tweenEasing":0,"y":-13.29},{"duration":8,"tweenEasing":0,"y":-13.29},{"tweenEasing":0,"y":13.14},{"duration":5,"y":-13.29}]},{"name":"雨滴4","translateFrame":[{"duration":3,"tweenEasing":0,"y":-17.52},{"duration":7,"tweenEasing":0,"y":-17.52},{"tweenEasing":0,"y":7.22},{"tweenEasing":0,"y":10.76},{"tweenEasing":0,"y":-17.52},{"duration":8,"tweenEasing":0,"y":-17.52},{"tweenEasing":0,"y":10.76},{"duration":2,"y":-17.52}]},{"name":"雨滴3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-0.92,"y":-4.86},{"tweenEasing":0,"x":-0.92,"y":1.21},{"duration":5,"tweenEasing":0,"x":-0.92,"y":-23.04},{"duration":2,"tweenEasing":0,"x":-0.92,"y":-23.04},{"duration":6,"tweenEasing":0,"x":-0.92,"y":-16.98},{"tweenEasing":0,"x":-0.92,"y":1.21},{"tweenEasing":0,"x":-0.92,"y":-23.04},{"duration":6,"tweenEasing":0,"x":-0.92,"y":-23.04},{"duration":0,"x":-0.92,"y":-4.86}]},{"name":"雨滴1","translateFrame":[{"tweenEasing":0,"y":-0.44},{"tweenEasing":0,"y":3.03},{"duration":5,"tweenEasing":0,"y":-23.48},{"duration":3,"tweenEasing":0,"y":-23.48},{"duration":5,"tweenEasing":0,"y":-14.35},{"tweenEasing":0,"y":3.03},{"tweenEasing":0,"y":-23.48},{"duration":7,"tweenEasing":0,"y":-23.48},{"duration":0,"y":-0.44}]}]}],"defaultActions":[{"gotoAndPlay":"newAnimation"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "e3166c62-c5bb-4b20-aba5-c58b54b7c4bc",
"subMetas": {}
}
\ No newline at end of file
{"name":"icon_wrong","imagePath":"icon_wrong_tex.png","SubTexture":[{"name":"乌云","x":1,"height":29,"y":1,"width":59},{"name":"雨滴1","x":10,"height":13,"y":47,"width":7},{"name":"雨滴2","x":10,"height":13,"y":32,"width":7},{"name":"雨滴3","x":1,"height":13,"y":47,"width":7},{"name":"雨滴4","x":1,"height":13,"y":32,"width":7}],"height":64,"width":64}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "89d6efdf-ad83-4177-872a-8a1ae5be47d1",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5990fb4d-9fee-4010-8ba6-f63d79a1c487",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 64,
"height": 64,
"platformSettings": {},
"subMetas": {
"icon_wrong_tex": {
"ver": "1.0.4",
"uuid": "5a5ae385-31fd-40ba-a6d7-6b39c3f9cc8b",
"rawTextureUuid": "5990fb4d-9fee-4010-8ba6-f63d79a1c487",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": 1.5,
"trimX": 1,
"trimY": 1,
"width": 59,
"height": 59,
"rawWidth": 64,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "b1fa46e4-941f-4f5c-b2de-2892f66246e1",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "c94e66ee-4278-420f-8c09-726571a789ff",
"downloadMode": 0,
"duration": 7.452,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "ee680664-50c4-4567-8445-80db76c98f53",
"downloadMode": 0,
"duration": 1.776327,
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "2.0.1", "ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b", "uuid": "c1bb4825-4f0f-4fe3-8da0-8a3ce5e25767",
"downloadMode": 0, "downloadMode": 0,
"duration": 0.130612, "duration": 0.130612,
"subMetas": {} "subMetas": {}
......
{
"ver": "2.0.1",
"uuid": "043210f8-3b98-4251-9bbd-c970eeecfb70",
"downloadMode": 0,
"duration": 4.04898,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "3a3cb3d5-d443-4667-8d9d-4942c320038c",
"downloadMode": 0,
"duration": 1.720125,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "6ae88876-73cc-44b8-a57d-38d4b6c029ab",
"downloadMode": 0,
"duration": 0.173333,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "503b998c-71e5-4eb6-ad74-f4022bff865c",
"downloadMode": 0,
"duration": 2.115917,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "2b12525e-c20e-4a52-9b45-ccdcecec46ea",
"downloadMode": 0,
"duration": 0.940417,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "3f9ecad3-bee0-4dbe-90dc-8a59f0bb6487",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "2cc2d7e1-d81b-47e8-8a91-81e0f7453542",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"name":"right","version":"5.5","frameRate":24,"armature":[{"name":"Armature","animation":[{"name":"right","frame":[],"ik":[],"duration":20,"slot":[{"name":"勾","colorFrame":[{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"duration":2},{"duration":0,"color":{"aM":0}}],"displayFrame":[]},{"name":"花","colorFrame":[{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":2},{"duration":12,"color":{"aM":0}}],"displayFrame":[]},{"name":"星","colorFrame":[{"tweenEasing":0,"duration":5,"color":{"aM":0}},{"tweenEasing":0,"duration":5,"color":{"aM":0}},{"tweenEasing":0,"duration":3},{"tweenEasing":0,"duration":2},{"duration":5,"color":{"aM":0}}],"displayFrame":[]},{"name":"星1","colorFrame":[{"tweenEasing":0,"duration":8,"color":{"aM":0}},{"tweenEasing":0,"duration":1},{"duration":11,"color":{"aM":0}}],"displayFrame":[]},{"name":"星11","colorFrame":[{"tweenEasing":0,"duration":8,"color":{"aM":0}},{"tweenEasing":0,"duration":2},{"duration":10,"color":{"aM":0}}],"displayFrame":[]},{"name":"花1","colorFrame":[{"tweenEasing":0,"duration":5,"color":{"aM":0}},{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":3},{"duration":6,"color":{"aM":0}}],"displayFrame":[]},{"name":"星2","colorFrame":[{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":7,"color":{"aM":12}},{"tweenEasing":0,"duration":2},{"duration":5,"color":{"aM":0}}],"displayFrame":[]},{"name":"星12","colorFrame":[{"tweenEasing":0,"duration":7,"color":{"aM":0}},{"tweenEasing":0,"duration":3},{"duration":10,"color":{"aM":0}}],"displayFrame":[]},{"name":"星111","colorFrame":[{"tweenEasing":0,"duration":7,"color":{"aM":0}},{"tweenEasing":0,"duration":7},{"duration":6,"color":{"aM":0}}],"displayFrame":[]},{"name":"花11","colorFrame":[{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":1},{"duration":7,"color":{"aM":0}}],"displayFrame":[]},{"name":"花12","colorFrame":[{"tweenEasing":0,"duration":4,"color":{"aM":0}},{"tweenEasing":0,"duration":7,"color":{"aM":0}},{"tweenEasing":0,"duration":3},{"duration":6,"color":{"aM":0}}],"displayFrame":[]},{"name":"花13","colorFrame":[{"tweenEasing":0,"duration":3,"color":{"aM":0}},{"tweenEasing":0,"duration":8,"color":{"aM":0}},{"tweenEasing":0,"duration":3},{"duration":6,"color":{"aM":0}}],"displayFrame":[]}],"bone":[{"name":"root","rotateFrame":[],"scaleFrame":[],"translateFrame":[]},{"name":"勾","rotateFrame":[],"scaleFrame":[{"duration":6,"x":1.92,"tweenEasing":0,"y":1.92},{"duration":12,"tweenEasing":0},{"duration":2}],"translateFrame":[]},{"name":"花","rotateFrame":[{"tweenEasing":0,"duration":8},{"rotate":-120.1206,"duration":12}],"scaleFrame":[],"translateFrame":[{"duration":6,"x":-150.4821,"tweenEasing":0,"y":115.3018},{"duration":14,"x":-64.0566,"y":83.6124}]},{"name":"星","rotateFrame":[{"duration":5},{"tweenEasing":0,"duration":5},{"rotate":220.0011,"duration":10}],"scaleFrame":[],"translateFrame":[{"duration":5,"x":-81.5789,"tweenEasing":0,"y":-25.182},{"duration":5,"x":-81.5789,"tweenEasing":0,"y":-25.182},{"duration":10,"x":-28.8085,"y":23.0807}]},{"name":"星1","rotateFrame":[{"tweenEasing":0,"duration":8},{"rotate":-208.5295,"duration":12}],"scaleFrame":[],"translateFrame":[{"duration":8,"x":-95.3731,"tweenEasing":0,"y":76.2239},{"duration":12,"x":-1.4913,"y":82.8329}]},{"name":"星11","rotateFrame":[{"tweenEasing":0,"duration":8},{"rotate":-151.7569,"duration":12}],"scaleFrame":[],"translateFrame":[{"duration":8,"x":-140.9583,"tweenEasing":0,"y":35.4514},{"duration":12,"x":-230.9764,"y":17.1834}]},{"name":"root1","rotateFrame":[],"scaleFrame":[],"translateFrame":[]},{"name":"花11","rotateFrame":[{"duration":6},{"tweenEasing":0,"rotate":-263.5148,"duration":6},{"rotate":-139.01,"duration":8}],"scaleFrame":[],"translateFrame":[{"duration":7,"x":69.3932,"tweenEasing":0,"y":26.0978},{"duration":5,"x":29.4102,"tweenEasing":0,"y":113.9282},{"duration":8,"x":24.7214,"y":128.634}]},{"name":"花12","rotateFrame":[{"duration":4},{"tweenEasing":0,"duration":5},{"tweenEasing":0,"rotate":-83.9626,"duration":3},{"rotate":-146.0549,"duration":8}],"scaleFrame":[],"translateFrame":[{"duration":9,"x":100.4908,"tweenEasing":0,"y":-64.6666},{"duration":11,"x":4.2365,"y":6.2701}]},{"name":"花13","rotateFrame":[{"duration":5},{"tweenEasing":0,"duration":7},{"rotate":-241.6661,"duration":8}],"scaleFrame":[],"translateFrame":[{"duration":9,"x":148.9569,"tweenEasing":0,"y":13.7603},{"duration":11,"x":53.516,"y":-18.6069}]},{"name":"花1","rotateFrame":[{"duration":9},{"tweenEasing":0,"duration":5},{"rotate":-213.7949,"duration":6}],"scaleFrame":[],"translateFrame":[{"duration":5},{"duration":7,"x":41.7276,"tweenEasing":0,"y":71.8775},{"duration":8,"x":1.5678,"y":-5.6923}]},{"name":"星2","rotateFrame":[{"duration":8},{"tweenEasing":0,"duration":5},{"rotate":82.3816,"duration":7}],"scaleFrame":[],"translateFrame":[{"duration":8,"x":-53.5838,"tweenEasing":0,"y":-28.3679},{"duration":5,"x":-53.5838,"tweenEasing":0,"y":-28.3679},{"duration":7,"x":-43.9923,"y":17.624}]},{"name":"星111","rotateFrame":[{"tweenEasing":0,"duration":11},{"rotate":-152.9812,"duration":9}],"scaleFrame":[],"translateFrame":[{"duration":8,"x":-23.1485,"tweenEasing":0,"y":85.4087},{"duration":12,"x":-7.6597,"y":39.4168}]},{"name":"星12","rotateFrame":[{"tweenEasing":0,"duration":10},{"rotate":-70.1768,"duration":10}],"scaleFrame":[],"translateFrame":[{"duration":8,"x":-96.0509,"tweenEasing":0,"y":64.226},{"duration":12,"x":-30.0964,"y":-5.1516}]}],"playTimes":0,"ffd":[]}],"slot":[{"name":"勾","color":{},"parent":"勾"},{"name":"花","color":{},"z":1,"parent":"花"},{"name":"星","color":{},"z":2,"parent":"星"},{"name":"星1","color":{},"z":3,"parent":"星1"},{"name":"星11","color":{},"z":4,"parent":"星11"},{"name":"花1","color":{},"z":5,"parent":"花1"},{"name":"星2","color":{},"z":6,"parent":"星2"},{"name":"星12","color":{},"z":7,"parent":"星12"},{"name":"星111","color":{},"z":8,"parent":"星111"},{"name":"花11","color":{},"z":9,"parent":"花11"},{"name":"花12","color":{},"z":10,"parent":"花12"},{"name":"花13","color":{},"z":11,"parent":"花13"}],"skin":[{"name":"","slot":[{"name":"勾","display":[{"name":"正确/勾","transform":{"x":31.5,"y":-0.5,"skX":89.9427,"skY":89.9427},"type":"image","path":"正确/勾"}]},{"name":"花","display":[{"name":"正确/花","transform":{"x":0.3166,"y":0.737,"scX":0.8,"skX":179.9427,"skY":179.9427,"scY":0.8},"type":"image","path":"正确/花"}]},{"name":"星","display":[{"name":"正确/星","transform":{"x":1.2075,"y":2.3032,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"星1","display":[{"name":"正确/星","transform":{"x":0.895,"y":2.0688,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"星11","display":[{"name":"正确/星","transform":{"x":1.2075,"y":2.3032,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"花1","display":[{"name":"正确/花","transform":{"x":-0.65,"y":-0.45,"skX":179.9427,"skY":179.9427},"type":"image","path":"正确/花"}]},{"name":"星2","display":[{"name":"正确/星","transform":{"x":1.2075,"y":2.3032,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"星12","display":[{"name":"正确/星","transform":{"x":1.2075,"y":2.3032,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"星111","display":[{"name":"正确/星","transform":{"x":1.2075,"y":2.3032,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"花11","display":[{"name":"正确/花","transform":{"x":-0.65,"y":-0.45,"skX":179.9427,"skY":179.9427},"type":"image","path":"正确/花"}]},{"name":"花12","display":[{"name":"正确/花","transform":{"x":-0.65,"y":-0.45,"skX":179.9427,"skY":179.9427},"type":"image","path":"正确/花"}]},{"name":"花13","display":[{"name":"正确/花","transform":{"x":-0.65,"y":-0.45,"skX":179.9427,"skY":179.9427},"type":"image","path":"正确/花"}]}]}],"aabb":{"x":-176.11294117647057,"height":229.6175228594081,"y":-136.64706831395355,"width":368.7025400136797},"defaultActions":[{"gotoAndPlay":"right"}],"frameRate":24,"bone":[{"name":"root","transform":{}},{"name":"勾","transform":{"y":47.5,"skX":-90,"skY":-90},"length":42,"parent":"root"},{"name":"花","transform":{"x":166.4125,"y":-109.3953,"scX":1.02,"skX":180,"skY":180,"scY":1.02},"parent":"root"},{"name":"星","transform":{"x":93.55,"y":36.6,"scX":0.86,"skX":-153.5654,"skY":-153.5654,"scY":0.86},"length":1,"parent":"root"},{"name":"星1","transform":{"x":102.8326,"y":-61.7964,"scX":0.73,"skX":53.1301,"skY":53.1301,"scY":0.73},"length":1,"parent":"root"},{"name":"星11","transform":{"x":138.0826,"y":-24.7817,"scX":0.68,"skX":53.1301,"skY":53.1301,"scY":0.68},"length":1,"parent":"root"},{"name":"root1","transform":{},"parent":"root"},{"name":"花11","transform":{"x":-79.2906,"y":-28.7703,"scX":0.71,"skX":180,"skY":180,"scY":0.71},"parent":"root"},{"name":"花12","transform":{"x":-113.3853,"y":51.6529,"skX":180,"skY":180},"parent":"root"},{"name":"花13","transform":{"x":-150.0029,"y":-5.3029,"scX":0.6,"skX":180,"skY":180,"scY":0.6},"parent":"root"},{"name":"花1","transform":{"x":-41.0324,"y":-67.0676,"scX":0.77,"skX":180,"skY":180,"scY":0.77},"parent":"root1"},{"name":"星2","transform":{"x":56.1864,"y":62.2705,"scX":0.5,"skX":-153.4349,"skY":-153.4349,"scY":0.5},"length":1,"parent":"root1"},{"name":"星111","transform":{"x":37.4944,"y":-86.9876,"scX":0.61,"skX":53.1301,"skY":53.1301,"scY":0.61},"length":1,"parent":"root1"},{"name":"星12","transform":{"x":102.8326,"y":-61.7964,"skX":53.1301,"skY":53.1301},"length":1,"parent":"root1"}],"type":"Armature","ik":[]}],"isGlobal":0}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "41c8c2be-2178-43f8-bae0-22e8630284fd",
"subMetas": {}
}
\ No newline at end of file
{"name":"right","SubTexture":[{"name":"正确/勾","x":1,"height":96,"y":1,"width":148},{"name":"正确/花","x":151,"height":53,"y":1,"width":53},{"name":"正确/星","x":151,"frameY":-7,"height":50,"y":56,"frameWidth":64,"frameHeight":64,"frameX":-7,"width":50}],"imagePath":"right_tex.png","height":128,"width":256}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "a032c75d-5373-471b-b79c-b15124c5e16b",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fdba7e1b-8742-4a8b-8018-3c50edf95e90",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 128,
"platformSettings": {},
"subMetas": {
"right_tex": {
"ver": "1.0.4",
"uuid": "785ab80d-adfd-42f6-9d2e-53ded2a0b12d",
"rawTextureUuid": "fdba7e1b-8742-4a8b-8018-3c50edf95e90",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -25.5,
"offsetY": 10.5,
"trimX": 1,
"trimY": 1,
"width": 203,
"height": 105,
"rawWidth": 256,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "4c4bacf1-269f-48f5-bf5b-5b396666d259",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "a429c3d1-9fd4-4c58-8938-5d52ebfe7475",
"subMetas": {}
}
\ No newline at end of file
{"name":"right","imagePath":"right_tex.png","height":256,"SubTexture":[{"name":"1/圆","x":1,"height":98,"y":1,"width":98},{"name":"1/星1","x":66,"height":59,"y":172,"width":57},{"name":"1/星2","x":71,"height":45,"y":101,"width":43},{"name":"1/星3","x":1,"height":64,"y":172,"width":63},{"name":"1/星4","x":183,"height":45,"y":172,"width":45},{"name":"1/星6","x":1,"height":69,"y":101,"width":68},{"name":"1/星7","x":116,"height":40,"y":101,"width":37},{"name":"1/星5","x":125,"height":57,"y":172,"width":56},{"name":"1/星8","x":183,"height":33,"y":219,"width":32},{"name":"1/星9","x":155,"height":37,"y":101,"width":36}],"width":256}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "56897af8-7368-4b0f-87fa-73d15e6b70fb",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "75656212-4398-4a81-b44c-7ec9bf81d81e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 256,
"platformSettings": {},
"subMetas": {
"right_tex": {
"ver": "1.0.4",
"uuid": "f9a26d01-c9ee-4e0d-87b2-6e6649cc6c0a",
"rawTextureUuid": "75656212-4398-4a81-b44c-7ec9bf81d81e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13.5,
"offsetY": 1.5,
"trimX": 1,
"trimY": 1,
"width": 227,
"height": 251,
"rawWidth": 256,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "6023fa94-57ab-4c2f-a319-6bcd4b8ce69e",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"name":"wrong","version":"5.5","frameRate":24,"armature":[{"name":"Armature","animation":[{"name":"right","frame":[],"ik":[],"duration":20,"slot":[{"name":"勾","colorFrame":[{"tweenEasing":0,"duration":6,"color":{"aM":0}},{"tweenEasing":0,"duration":12},{"tweenEasing":0,"duration":2},{"duration":0,"color":{"aM":0}}],"displayFrame":[]},{"name":"花","colorFrame":[{"tweenEasing":0,"duration":10,"color":{"aM":0}},{"tweenEasing":0,"duration":2},{"duration":8,"color":{"aM":0}}],"displayFrame":[]},{"name":"星1","colorFrame":[{"tweenEasing":0,"duration":9,"color":{"aM":0}},{"tweenEasing":0,"duration":2},{"duration":9,"color":{"aM":0}}],"displayFrame":[]},{"name":"星11","colorFrame":[{"tweenEasing":0,"duration":8,"color":{"aM":0}},{"tweenEasing":0,"duration":4},{"duration":8,"color":{"aM":0}}],"displayFrame":[]},{"name":"星111","colorFrame":[{"tweenEasing":0,"duration":9,"color":{"aM":0}},{"tweenEasing":0,"duration":2},{"duration":9,"color":{"aM":0}}],"displayFrame":[]},{"name":"花11","colorFrame":[{"tweenEasing":0,"duration":10,"color":{"aM":0}},{"tweenEasing":0,"duration":2},{"duration":8,"color":{"aM":0}}],"displayFrame":[]},{"name":"花13","colorFrame":[{"tweenEasing":0,"duration":7,"color":{"aM":0}},{"tweenEasing":0,"duration":3},{"duration":10,"color":{"aM":0}}],"displayFrame":[]}],"bone":[{"name":"root","rotateFrame":[],"scaleFrame":[],"translateFrame":[]},{"name":"勾","rotateFrame":[],"scaleFrame":[{"duration":6,"x":1.92,"tweenEasing":0,"y":1.92},{"duration":12,"tweenEasing":0},{"duration":2}],"translateFrame":[]},{"name":"花","rotateFrame":[{"tweenEasing":0,"duration":10},{"rotate":207.1325,"duration":10}],"scaleFrame":[],"translateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"y":118.6054}]},{"name":"星1","rotateFrame":[{"tweenEasing":0,"duration":11},{"rotate":-168.1007,"duration":9}],"scaleFrame":[],"translateFrame":[{"duration":11,"tweenEasing":0},{"duration":9,"y":80.7483}]},{"name":"星11","rotateFrame":[{"tweenEasing":0,"duration":12},{"rotate":-217.7215,"duration":8}],"scaleFrame":[],"translateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"y":152.2109}]},{"name":"root1","rotateFrame":[],"scaleFrame":[],"translateFrame":[]},{"name":"花11","rotateFrame":[{"tweenEasing":0,"duration":10},{"rotate":-208.7999,"duration":10}],"scaleFrame":[],"translateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"y":130.3401}]},{"name":"花13","rotateFrame":[{"tweenEasing":0,"duration":8},{"rotate":-279.745,"duration":12}],"scaleFrame":[],"translateFrame":[{"duration":8,"tweenEasing":0},{"duration":12,"y":141.8367}]},{"name":"星111","rotateFrame":[{"tweenEasing":0,"duration":9},{"rotate":-230.9588,"duration":11}],"scaleFrame":[],"translateFrame":[{"duration":9,"tweenEasing":0},{"duration":11,"y":159.5578}]}],"playTimes":0,"ffd":[]}],"slot":[{"name":"花","color":{},"parent":"花"},{"name":"星1","color":{},"z":1,"parent":"星1"},{"name":"星11","color":{},"z":2,"parent":"星11"},{"name":"星111","color":{},"z":3,"parent":"星111"},{"name":"花11","color":{},"z":4,"parent":"花11"},{"name":"花13","color":{},"z":5,"parent":"花13"},{"name":"勾","color":{},"z":6,"parent":"勾"}],"skin":[{"name":"","slot":[{"name":"星11","display":[{"name":"正确/星","transform":{"x":1.2075,"y":2.3032,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"星111","display":[{"name":"正确/星","transform":{"x":4.2102,"y":2.3023,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]},{"name":"花11","display":[{"name":"正确/花","transform":{"x":-0.816,"y":0.5952,"skX":179.9427,"skY":179.9427},"type":"image","path":"正确/花"}]},{"name":"花13","display":[{"name":"正确/花","transform":{"x":0.5972,"y":-0.6201,"skX":179.9427,"skY":179.9427},"type":"image","path":"正确/花"}]},{"name":"勾","display":[{"name":"正确/勾","transform":{"x":31.5,"y":-0.5,"skX":89.9427,"skY":89.9427},"type":"image","path":"正确/勾"}]},{"name":"花","display":[{"name":"正确/花","transform":{"x":0.3166,"y":0.737,"scX":0.8,"skX":179.9427,"skY":179.9427,"scY":0.8},"type":"image","path":"正确/花"}]},{"name":"星1","display":[{"name":"正确/星","transform":{"x":0.895,"y":2.0688,"skX":153.3777,"skY":153.3777},"type":"image","path":"正确/星"}]}]}],"aabb":{"x":-111.27049160225738,"height":172.66653775597703,"y":-113.66653775597703,"width":217.78153438680528},"defaultActions":[{"gotoAndPlay":"right"}],"frameRate":24,"bone":[{"name":"root","transform":{}},{"name":"勾","transform":{"y":47.5,"skX":-90,"skY":-90},"length":42,"parent":"root"},{"name":"花","transform":{"x":79.8139,"y":-51.3341,"scX":1.02,"skX":-142.8093,"skY":-142.8093,"scY":1.02},"parent":"root"},{"name":"星1","transform":{"x":-84.9225,"y":-21.3202,"scX":0.73,"skX":78.3994,"skY":78.3994,"scY":0.73},"length":1,"parent":"root"},{"name":"星11","transform":{"x":-12.6317,"y":-78.5912,"scX":0.68,"skX":77.542,"skY":77.542,"scY":0.68},"length":1,"parent":"root"},{"name":"root1","transform":{},"parent":"root"},{"name":"花11","transform":{"x":20.0971,"y":-50.0288,"scX":0.71,"skX":165.7807,"skY":165.7807,"scY":0.71},"parent":"root"},{"name":"花13","transform":{"x":-50.4451,"y":-75.5751,"scX":0.6,"skX":180,"skY":180,"scY":0.6},"parent":"root"},{"name":"星111","transform":{"x":56.8141,"y":-91.5114,"scX":0.61,"skX":74.9482,"skY":74.9482,"scY":0.61},"length":1,"parent":"root1"}],"type":"Armature","ik":[]}],"isGlobal":0}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "2d1b0669-6a98-4d62-9111-dceec1a099c3",
"subMetas": {}
}
\ No newline at end of file
{"name":"wrong","SubTexture":[{"name":"正确/花","x":1,"height":53,"y":89,"width":53},{"name":"正确/星","x":56,"height":50,"y":89,"width":50},{"name":"正确/勾","x":1,"height":86,"y":1,"width":95}],"imagePath":"wrong_tex.png","height":256,"width":128}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "008a896a-3674-49b5-a086-f2416ab3c52d",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "47b3f69a-9c5b-46aa-9840-771bf02e3432",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 128,
"height": 256,
"platformSettings": {},
"subMetas": {
"wrong_tex": {
"ver": "1.0.4",
"uuid": "23c54fa9-e050-4c7a-b2e4-6666ac32c97a",
"rawTextureUuid": "47b3f69a-9c5b-46aa-9840-771bf02e3432",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 56.5,
"trimX": 1,
"trimY": 1,
"width": 105,
"height": 141,
"rawWidth": 128,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "e8bd16b0-3804-45a9-a8ca-f52c02224f55", "uuid": "3057f521-40e2-4985-b30f-c2f81ecaf7b1",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
This diff is collapsed.
{ {
"ver": "1.2.9", "ver": "1.2.9",
"uuid": "0737ce42-24f0-45c6-8e1a-8bdab4f74ba3", "uuid": "d19b7acc-9db6-4c71-865c-6aa2e00f3a2f",
"asyncLoadAssets": false, "asyncLoadAssets": false,
"autoReleaseAssets": true, "autoReleaseAssets": false,
"subMetas": {} "subMetas": {}
} }
\ No newline at end of file
This diff is collapsed.
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "f8b451ff-857c-4ca8-9870-866bc5154a29", "uuid": "864d51a0-607c-40b5-a6f7-4618636bccd6",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
{ {
"ver": "1.1.2", "ver": "1.1.2",
"uuid": "b0c008bc-cf92-463b-8360-0984e13c2e4d", "uuid": "000bd989-338c-4fe4-a712-c50a1473a50b",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
This diff is collapsed.
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "b54300af-b8e5-4b4e-aa2f-9ac1cef7b598", "uuid": "a2ea3c92-c535-4cfb-bec7-325676ba7d02",
"isPlugin": true, "isPlugin": true,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
{ {
"ver": "1.0.8", "ver": "1.0.8",
"uuid": "c41b0e51-55d7-443c-af3a-b22c3dd9b9e5", "uuid": "534ccda4-3aa2-48f0-ae17-af6221dfe89e",
"isPlugin": false, "isPlugin": false,
"loadPluginInWeb": true, "loadPluginInWeb": true,
"loadPluginInNative": true, "loadPluginInNative": true,
......
{
"ver": "1.1.2",
"uuid": "8aaaa0c3-af62-417a-b0ba-1004b2c15fac",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.1.0", "ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1", "uuid": "6388dbe6-2d56-41ac-bd33-059748652bec",
"subMetas": {} "subMetas": {}
} }
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "34a18061-6d48-43cf-9654-3df837045894",
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b", "uuid": "f4116e65-a471-4eeb-9446-78f79899dd37",
"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": 1920,
"height": 720, "height": 1080,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg": { "bg": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd", "uuid": "7d4c6dae-4286-4830-8e02-4797402738e3",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b", "rawTextureUuid": "f4116e65-a471-4eeb-9446-78f79899dd37",
"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": 1920,
"height": 720, "height": 1080,
"rawWidth": 1280, "rawWidth": 1920,
"rawHeight": 720, "rawHeight": 1080,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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