Commit f8b65a0e authored by 李维's avatar 李维

添加语音评测

parent 84eed4d9
{
"ver": "1.1.2",
"uuid": "0fd9456b-0a0b-4d6b-979c-592de3bb77e3",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
// Learn cc.Class:
// - https://docs.cocos.com/creator/manual/en/scripting/class.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
async function asyncPlayDragonBoneAnimation(node, animationName, time = 1, onFrameEvent = null) {
return new Promise((resolve, reject) => {
node.getComponent(dragonBones.ArmatureDisplay)
.once(dragonBones.EventObject.COMPLETE, () => {
resolve(null);
});
node.getComponent(dragonBones.ArmatureDisplay)
.on(dragonBones.EventObject.FRAME_EVENT, ({ name }) => {
if (onFrameEvent && typeof (onFrameEvent) == 'function') {
onFrameEvent(name);
}
});
node.getComponent(dragonBones.ArmatureDisplay)
.playAnimation(animationName, time);
});
}
cc.Class({
extends: cc.Component,
properties: {
// foo: {
// // ATTRIBUTES:
// default: null, // The default value will be used only when the component attaching
// // to a node for the first time
// type: cc.SpriteFrame, // optional, default is typeof default
// serializable: true, // optional, default is true
// },
// bar: {
// get () {
// return this._bar;
// },
// set (value) {
// this._bar = value;
// }
// },
},
// LIFE-CYCLE CALLBACKS:
// onLoad () {},
start () {
},
showVoice(node, testLetter) {
return new Promise((resolve, reject) => {
let voice = this.node;
voice.active = true;
let gray = voice.getChildByName("gray");
let catBase = voice.getChildByName("catBase");
let img = voice.getChildByName("img");
let progress = voice.getChildByName("progress");
let imgLight = voice.getChildByName("bg_light");
let imgGood = voice.getChildByName("good");
let imgTry = voice.getChildByName("try");
progress.active = true;
img.active = true;
imgLight.active = false;
imgGood.active = false;
imgTry.active = false;
catBase.active = true;
//img需要clone对应的节点塞进去。
img.removeAllChildren();
let cloneNode = cc.instantiate(node);
cloneNode.x = 0;
cloneNode.y = 0;
img.addChild(cloneNode);
let progressBar = progress.getComponent(cc.ProgressBar)
progressBar.progress = 1;
let url = this.recordWaitCount == 0 ? this.data.recordWait : "";
// this.playAudioByUrl(url, () => {
let cat = cc.find("cat", catBase);
asyncPlayDragonBoneAnimation(cat, "record", 0);
cc.tween(progressBar).delay(1).to(3, { progress: 0 }).call(() => {
}).start();
console.log('startTest->' + testLetter);
window.courseware && window.courseware.startTest(testLetter); //开始录音
setTimeout(async () => {
if (!window.courseware) {
let testData = {
"dtLastResponse": "2021-09-17 13:36:26:109",
"refText": "I haven't found anything out about him yet.",
"recordId": "6144295213f0a2200000ed93",
"eof": 1,
"result": {
"pronunciation": 25,
"resource_version": "3.1.0",
"fluency": 60,
"rhythm": 90,
"kernel_version": "5.2.4",
"overall": 80,//25
"integrity": 100,
"duration": "6.779",
"rear_tone": "fall",
"speed": 96,
"words": [
{
"phonemes": [
{
"phoneme": "w",
"pronunciation": 55,
"span": {
"end": 95,
"start": 88
}
},
{
"phoneme": "ɛ",
"pronunciation": 100,
"span": {
"end": 107,
"start": 95
}
},
{
"phoneme": "r",
"pronunciation": 99,
"span": {
"end": 123,
"start": 107
}
}
],
"phonics": [
{
"overall": 85,
"phoneme": [
"w",
"ɛ",
"r"
],
"spell": "Where"
}
],
"scores": {
"overall": 80,
"pronunciation": 92
},
"span": {
"end": 123,
"start": 88
},
"word": "Where"
}, {
"phonemes": [
{
"phoneme": "w",
"pronunciation": 55,
"span": {
"end": 95,
"start": 88
}
},
{
"phoneme": "ɛ",
"pronunciation": 100,
"span": {
"end": 107,
"start": 95
}
},
{
"phoneme": "r",
"pronunciation": 99,
"span": {
"end": 123,
"start": 107
}
}
],
"phonics": [
{
"overall": 85,
"phoneme": [
"w",
"ɛ",
"r"
],
"spell": "Where"
}
],
"scores": {
"overall": 10,
"pronunciation": 92
},
"span": {
"end": 123,
"start": 88
},
"word": "Where"
}
]
},
"tokenId": "6144295408558b08dd000001",
"applicationId": "154838659000009e"
}
this.recordWaitCount++;
if (this.recrodEnd(testData)) {
// this.playLocalAudio("正确");
await this.showVoiceGood();
this.hideVoice();
return resolve(true)
} else {
// this.playLocalAudio("错误弹回");
await this.showVoiceTry();
this.hideVoice();
return resolve(false);
}
}
// await pg.time.delay(5);
window.courseware && window.courseware.stopTest(async (data) => {
this.recordWaitCount++;
data = JSON.parse(data);
if (this.recrodEnd(data)) {
// this.playLocalAudio("正确");
await this.showVoiceGood();
this.hideVoice();
return resolve(true)
} else {
// this.playLocalAudio("错误弹回");
await this.showVoiceTry();
this.hideVoice();
return resolve(false);
}
}); //结束录音
}, 4000);
// })
});
},
showVoiceGood() {
return new Promise((resolve, reject) => {
let voice = this.node;
voice.active = true;
let imgLight = voice.getChildByName("bg_light");
let imgGood = voice.getChildByName("good");
let imgTry = voice.getChildByName("try");
imgLight.active = true;
cc.Tween.stopAllByTarget(imgLight);
cc.tween(imgLight)
.by(3, { angle: 360 })
.repeatForever()
.start();
imgGood.active = true;
imgTry.active = false;
setTimeout(() => {
resolve('');
}, 2000);
});
},
showVoiceTry() {
return new Promise((resolve, reject) => {
let voice = this.node;
voice.active = true;
let imgLight = voice.getChildByName("bg_light");
let imgGood = voice.getChildByName("good");
let imgTry = voice.getChildByName("try");
imgLight.active = true;
cc.Tween.stopAllByTarget(imgLight);
cc.tween(imgLight)
.by(3, { angle: 360 })
.repeatForever()
.start();
imgGood.active = false;
imgTry.active = true;
setTimeout(() => {
resolve('');
}, 2000);
});
},
recrodEnd(data) {
// return true;
let score = data.result.overall;
let isSuccess = this.checkWords(data);
console.log("score->" + score);
console.log("isSuccess->" + isSuccess);
if (score >= 70 && isSuccess) {
return true;
} else {
return false;
}
},
checkWords(data) {
const sentences = data.result.sentences;
if (!sentences) return true;
for (let i = 0; i < sentences.length; i++) {
const details = sentences[i].details;
const isSuccess = details.some(item => item.overall <= 40);
if (isSuccess) return false;
}
return true;
},
hideVoice() {
let voice = this.node;
voice.active = false;
}
// update (dt) {},
});
{
"ver": "1.0.8",
"uuid": "16155611-0510-4b2f-814f-4654d9469888",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
[
{
"__type__": "cc.Prefab",
"_name": "",
"_objFlags": 0,
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"asyncLoadAssets": false,
"readonly": false
},
{
"__type__": "cc.Node",
"_name": "PronunciationTestLayer",
"_objFlags": 0,
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 6
},
{
"__id__": 9
},
{
"__id__": 18
},
{
"__id__": 20
},
{
"__id__": 27
},
{
"__id__": 30
},
{
"__id__": 33
}
],
"_active": true,
"_components": [
{
"__id__": 36
},
{
"__id__": 37
}
],
"_prefab": {
"__id__": 38
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 2560,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
1280,
960,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "gray",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 4
}
],
"_prefab": {
"__id__": 5
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 2560,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 50000,
"_originalHeight": 50000,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "b9tWutYvxPqL3pW9Mrkfpm",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "voice_bg",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 7
}
],
"_prefab": {
"__id__": 8
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 440,
"height": 440
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
2.4,
2.4,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 6
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "1a4b4545-3e67-4496-af75-f996b12aac6a"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "6110gJjkpPR4aKnrS46x7m",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "catBase",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 10
},
{
"__id__": 13
}
],
"_active": true,
"_components": [
{
"__id__": 16
}
],
"_prefab": {
"__id__": 17
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 2560,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-181.20500000000015,
92.846,
0,
0,
0,
0,
1,
1.3,
1.3,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "cat",
"_objFlags": 0,
"_parent": {
"__id__": 9
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 11
}
],
"_prefab": {
"__id__": 12
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 185.69,
"height": 241.78
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1.8,
1.8,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 10
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "normal",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 0,
"premultipliedAlpha": false,
"_armatureKey": "a3ba0517-85ed-4261-9a08-b870f17250d2#b74a4e8d-1abb-479a-a9bb-e524f10ddb01",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "a3ba0517-85ed-4261-9a08-b870f17250d2"
},
"_N$dragonAtlasAsset": {
"__uuid__": "b74a4e8d-1abb-479a-a9bb-e524f10ddb01"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 3,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "c7NlDCBVBLWYAptix3KMgf",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "catBtn",
"_objFlags": 0,
"_parent": {
"__id__": 9
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 14
}
],
"_prefab": {
"__id__": 15
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 362,
"height": 483
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
890.79,
-519.093,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 13
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 0,
"transition": 0,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_N$normalSprite": null,
"_N$pressedSprite": null,
"pressedSprite": null,
"_N$hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "d51oMMiYtJjL77zl0N5TcE",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 9
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 36,
"_left": 0,
"_right": -202.79499999999987,
"_top": 0,
"_bottom": -195.15400000000005,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "e5QBZ/ZGVGQ5+q39akSX+o",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 19
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 500,
"height": 500
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
16.055,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "57ylecYUxPOq833RLjtBl2",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "progress",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 21
}
],
"_active": true,
"_components": [
{
"__id__": 24
},
{
"__id__": 25
}
],
"_prefab": {
"__id__": 26
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 813,
"height": 51
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
808.73,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "bar",
"_objFlags": 0,
"_parent": {
"__id__": 20
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 22
}
],
"_prefab": {
"__id__": 23
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 787,
"height": 29
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-392.965,
4.968,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 21
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "46d886d7-beab-4688-9fc1-9eb40f53607e"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "c1fZwyws1JzLvUUbYmA+hY",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 20
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "17ed4315-d528-4122-906f-f00a7ca8d34e"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.ProgressBar",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 20
},
"_enabled": true,
"_N$totalLength": 787,
"_N$barSprite": {
"__id__": 22
},
"_N$mode": 0,
"_N$progress": 1,
"_N$reverse": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "32W0c0iSdMeJ/OmzGZTALS",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "bg_light",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 28
}
],
"_prefab": {
"__id__": 29
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 615,
"height": 616
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 27
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "56e8246b-d2b5-47c1-9208-10e0d2c0a7e1"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "e26yHLMzdJuooWQOM104/q",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "good",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 31
}
],
"_prefab": {
"__id__": 32
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 534,
"height": 208
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
2,
2,
2
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 30
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "84d90810-a77b-4174-a829-fef492783f2b"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "2cIOsXO1JE36YpFYq2+jOy",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "try",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 34
}
],
"_prefab": {
"__id__": 35
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 534,
"height": 208
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
6.642,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 33
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "bb731e4d-60a5-46d1-90ec-4ee2d0e0c4a1"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "c8TTnwgvpL2Kb1J1NCiHC8",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": ""
},
{
"__type__": "16155YRBRBLL4FPRlTZRpiI",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "",
"sync": false
}
]
\ No newline at end of file
{
"ver": "1.2.9",
"uuid": "87e8bdef-072f-4642-b630-352bb34d47b4",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "94154e57-766f-40d4-bbbf-df71380cb89e",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"mao_ske","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":350.77,"y":142.71,"width":185.69,"height":241.78},"bone":[{"name":"root"},{"length":80,"name":"bone","parent":"root","transform":{"x":445.95955,"y":308.08465}},{"length":56.5,"name":"领带","parent":"bone","transform":{"x":0.3,"y":14.1,"skX":-84.2569,"skY":-84.2569}},{"length":33.5,"name":"左腿","parent":"领带","transform":{"x":-10.0373,"y":-12.86015,"skX":175.2807,"skY":175.2807}},{"length":33,"name":"右腿","parent":"领带","transform":{"x":-4.1103,"y":16.0921,"skX":159.7117,"skY":159.7117}},{"length":117.5,"name":"bone1","parent":"领带","transform":{"x":62.8719,"y":9.55645,"skX":-19.0945,"skY":-19.0945}},{"length":32.5,"name":"领带1","parent":"领带","transform":{"x":56.8244,"y":4.8882,"skX":174.2569,"skY":174.2569}},{"length":31.5,"name":"尾巴","parent":"领带","transform":{"x":-8.5257,"y":-18.8163,"skX":-105.4221,"skY":-105.4221}},{"length":25,"name":"左手","parent":"领带","transform":{"x":51.1902,"y":-25.40005,"skX":-146.8359,"skY":-146.8359}},{"length":34.5,"name":"右手","parent":"领带","transform":{"x":55.17335,"y":23.69785,"skX":136.3674,"skY":136.3674}},{"length":0.5,"name":"鼻子","parent":"bone1","transform":{"x":29.69885,"y":13.5493,"skX":41.1099,"skY":41.1099}},{"length":13.5,"name":"帽子","parent":"bone1","transform":{"x":96.3279,"y":-2.7039,"skX":82.6388,"skY":82.6388}},{"length":14,"name":"眼镜","parent":"bone1","transform":{"x":39.45535,"y":7.951,"skX":5.5084,"skY":5.5084}},{"length":5,"name":"左眉毛","parent":"bone1","transform":{"x":70.4481,"y":-18.37875,"skX":83.9424,"skY":83.9424}},{"name":"左眼","parent":"bone1","transform":{"x":48.02535,"y":-17.76505}},{"length":33,"name":"领带2","parent":"领带1","transform":{"x":32.55,"skX":1.6366,"skY":1.6366}},{"name":"右眼","parent":"bone1","transform":{"x":48.35835,"y":29.87445}},{"length":31.5,"name":"尾巴1","parent":"尾巴","transform":{"x":31.52375,"skX":106.2349,"skY":106.2349}},{"length":8.5,"name":"右眉毛","parent":"bone1","transform":{"x":71.5681,"y":30.16695,"skX":103.3513,"skY":103.3513}},{"length":13.5,"name":"左手1","parent":"左手","transform":{"x":25.316,"skX":106.7395,"skY":106.7395}},{"length":8,"name":"嘴","parent":"bone1","transform":{"x":16.54425,"y":4.2349,"skX":103.3513,"skY":103.3513}},{"length":23.5,"name":"右手1","parent":"右手","transform":{"x":34.56045,"skX":97.009,"skY":97.009}},{"length":28.5,"name":"左耳","parent":"bone1","transform":{"x":75.58245,"y":-41.85255,"skX":-24.2997,"skY":-24.2997}},{"length":32,"name":"右耳","parent":"bone1","transform":{"x":67.174,"y":39.47895,"skX":25.1759,"skY":25.1759}},{"length":32.5,"name":"胡子","parent":"鼻子","transform":{"x":-5.66115,"y":-7.10615,"skX":-142.4333,"skY":-142.4333}},{"length":33,"name":"胡子1","parent":"鼻子","transform":{"x":5.40615,"y":6.6753,"skX":69.7025,"skY":69.7025}},{"length":26,"name":"尾巴2","parent":"尾巴1","transform":{"x":31.5312,"skX":-59.0609,"skY":-59.0609}},{"length":27.5,"name":"左手2","parent":"左手1","transform":{"x":13.7783,"skX":-40.1087,"skY":-40.1087}},{"length":18.5,"name":"右手2","parent":"右手1","transform":{"x":23.62395,"skX":-106.1572,"skY":-106.1572}},{"length":30.5,"name":"bone2","parent":"尾巴2","transform":{"x":26.12155,"skX":-49.7262,"skY":-49.7262}}],"slot":[{"name":"影子","parent":"root"},{"name":"尾巴","parent":"尾巴2"},{"name":"右腿","parent":"右腿"},{"name":"左腿","parent":"左腿"},{"name":"右手","parent":"右手2"},{"name":"左手","parent":"左手2"},{"name":"左手伸直","parent":"左手"},{"name":"右手伸直","parent":"右手"},{"name":"身体","parent":"bone"},{"name":"领带","parent":"领带2"},{"name":"右耳","parent":"右耳"},{"name":"左耳","parent":"左耳"},{"name":"组_1","parent":"bone1"},{"name":"右眼","parent":"右眼"},{"name":"右眉毛","parent":"右眉毛"},{"name":"左眼","parent":"左眼"},{"name":"左眉毛","parent":"左眉毛"},{"name":"眼镜","parent":"眼镜"},{"name":"胡子","parent":"胡子1"},{"name":"鼻子","parent":"鼻子"},{"name":"嘴","parent":"嘴"},{"name":"帽子","parent":"帽子"},{"name":"左小手","parent":"左手1"}],"skin":[{"slot":[{"name":"右手伸直","display":[{"name":"猫01伸/右手伸直","transform":{"x":-3.03,"y":-26.56,"skX":-52.11,"skY":-52.11}}]},{"name":"右腿","display":[{"name":"猫01/右腿","transform":{"x":11.79,"y":-5.31,"skX":-75.45,"skY":-75.45}}]},{"name":"帽子","display":[{"name":"猫01/帽子","transform":{"x":6.08,"y":3.07,"skX":20.71,"skY":20.71}}]},{"name":"右眉毛","display":[{"name":"猫01/右眉毛","transform":{"x":4.33,"y":-0.03}}]},{"name":"右耳","display":[{"name":"猫01/右耳","transform":{"x":12.42,"y":-3.62,"skX":78.18,"skY":78.18}}]},{"name":"鼻子","display":[{"name":"猫01/鼻子","transform":{"x":0.34,"y":-0.1,"skX":62.24,"skY":62.24}}]},{"name":"嘴","display":[{"name":"猫01/嘴","transform":{"x":1.35,"y":0.2}}]},{"name":"右手","display":[{"type":"mesh","name":"猫01/右手","width":34,"height":61,"vertices":[20.28,5.5,11,5.5,11,29.85,16.47,30.95,23.9,39.15,16.67,41.55,11.17,48.22,11,52.88,12.07,59.38,21.35,66.5,35.87,66.5,37.75,61.35,35.82,57.33,32.22,54.98,27.1,55.1,26.15,55.25,25.5,54.45,34,53.35,42.22,50.28,45.5,45.45,45.5,41.38,45.5,34.68,42.85,26.38,35.23,16.43,23.6,6.93],"uvs":[0.26884,0,0,0,0,0.39918,0.1587,0.41721,0.37391,0.55164,0.16449,0.59098,0.00507,0.70041,0,0.77664,0.03116,0.8832,0.3,1,0.72101,1,0.77536,0.91557,0.71957,0.84959,0.61522,0.81107,0.46667,0.81311,0.43913,0.81557,0.42029,0.80246,0.66667,0.78443,0.90507,0.73402,1,0.65492,1,0.58811,1,0.47828,0.92319,0.34221,0.70217,0.1791,0.36522,0.02336],"triangles":[22,4,21,17,18,20,4,17,20,21,4,20,18,19,20,23,4,22,3,4,23,12,10,11,4,16,17,13,14,10,14,9,10,13,10,12,15,9,14,24,3,23,1,3,0,0,3,24,5,6,16,8,9,16,4,5,16,16,9,15,6,7,16,7,8,16,1,2,3],"weights":[3,9,0.933295,21,0.039887,28,0.026818,1,2,1,1,2,1,1,9,1,2,9,0.56,21,0.44,1,21,1,2,28,0.55,21,0.45,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,1,28,1,2,28,0.55,21,0.45,1,21,1,1,21,1,3,21,0.458618,9,0.453537,28,0.087845,2,9,0.56,21,0.44,1,9,1,1,9,1,1,9,1,1,9,1],"slotPose":[1,0,0,1,0,0],"bonePose":[2,0.100069,-0.994981,0.994981,0.100069,-13.2,64.475,9,0.614141,0.789196,-0.789196,0.614141,15.9,11.95,21,-0.858239,0.51325,-0.51325,-0.858239,37.125,39.225,28,0.731803,0.681516,-0.681516,0.731803,16.85,51.35],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,0],"userEdges":[]}]},{"name":"左耳","display":[{"name":"猫01/左耳","transform":{"x":3.62,"y":2.26,"skX":127.65,"skY":127.65}}]},{"name":"身体","display":[{"type":"mesh","name":"猫01/身体","width":61,"height":90,"vertices":[-11.53,-13.5,-31.43,-2.42,-37.98,18.63,-39,58.17,-33.42,76,16.65,76,22,58.17,22,23.75,22,-4.98,11.25,-14],"uvs":[0.45041,0.00556,0.12418,0.12861,0.0168,0.3625,0,0.80194,0.09139,1,0.9123,1,1,0.80194,1,0.41944,1,0.10028,0.82377,0],"triangles":[1,2,0,9,0,7,0,2,7,2,3,7,9,7,8,4,5,6,3,4,6,7,3,6],"weights":[1,5,1,1,5,1,2,2,0.689046,5,0.310954,2,2,0.873779,5,0.126221,2,2,0.924603,5,0.075397,2,2,0.844128,5,0.155872,2,2,0.743819,5,0.256181,2,2,0.458853,5,0.541147,1,5,1,1,5,1],"slotPose":[1,0,0,1,0,0],"bonePose":[2,0.100069,-0.994981,0.994981,0.100069,-13.2,64.475,5,-0.230922,-0.972972,0.972972,-0.230922,2.6,2.875],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,0],"userEdges":[]}]},{"name":"尾巴","display":[{"type":"mesh","name":"猫01/尾巴","width":87,"height":54,"vertices":[-110.05,40,-83.32,36.18,-70.55,41.98,-66.2,56.33,-69.45,75.48,-64.95,81.5,-49.5,81.5,-34.45,79.55,-23,71.68,-23,61.25,-29.95,61.83,-38.5,67.88,-50.75,72.1,-57.52,71.95,-55.27,58.45,-57.07,37.9,-71,27,-85.5,27,-110.5,27],"uvs":[0.00514,0.23853,0.31057,0.16835,0.45657,0.27477,0.50629,0.53807,0.46914,0.88945,0.52057,1,0.69714,1,0.86914,0.96422,1,0.81972,1,0.62844,0.92057,0.63899,0.82286,0.75,0.68286,0.82752,0.60543,0.82477,0.63114,0.57706,0.61057,0.2,0.45143,0,0.28571,0,0,0],"triangles":[10,11,8,11,7,8,10,8,9,12,6,11,11,6,7,15,3,14,12,13,6,13,5,6,2,3,15,3,13,14,16,2,15,4,5,13,3,4,13,16,1,2,17,1,16,17,0,1,18,0,17],"weights":[1,29,1,4,29,0.522702,26,0.432026,17,0.034653,7,0.010619,2,26,0.48,17,0.52,1,17,1,4,17,0.491162,7,0.486311,26,0.015608,29,0.00692,4,17,0.49355,7,0.491886,26,0.01004,29,0.004524,1,7,1,1,7,1,1,2,1,1,2,1,1,2,1,1,7,1,1,7,1,4,7,0.743317,17,0.242223,26,0.011064,29,0.003396,1,17,1,2,26,0.48,17,0.52,1,26,1,4,29,0.730528,26,0.260026,17,0.007093,7,0.002353,1,29,1],"slotPose":[1,0,0,1,0,0],"bonePose":[2,0.100069,-0.994981,0.994981,0.100069,-13.2,64.475,7,-0.985765,0.168127,-0.168127,-0.985765,-32.775,71.075,17,0.114173,-0.993461,0.993461,0.114173,-63.85,76.375,26,-0.793406,-0.608693,0.608693,-0.793406,-60.25,45.05,29,-0.977301,0.211857,-0.211857,-0.977301,-80.975,29.15],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,0],"userEdges":[]}]},{"name":"左手伸直","display":[{"name":"猫01伸/左手伸直","transform":{"x":-0.45,"y":26.9,"skX":-128.91,"skY":-128.91}}]},{"name":"组_1","display":[{"name":"猫01/组_1","transform":{"x":44.78,"y":0.25,"skX":103.35,"skY":103.35}}]},{"name":"左手","display":[{"type":"mesh","name":"猫01/左手","width":62,"height":37,"vertices":[-89,18.87,-84.27,23.32,-65.6,24.75,-63.13,33.42,-55.6,39.5,-47.75,39.5,-34.6,32.6,-27,16.05,-27,2.5,-36.57,2.5,-45.05,9.23,-50.67,13.93,-51.95,12.35,-58.45,6.32,-65.82,4.67,-72.4,2.5,-89,2.5],"uvs":[0,0.44257,0.07621,0.56284,0.37742,0.60135,0.41734,0.83581,0.53871,1,0.66532,1,0.87742,0.81351,1,0.36622,1,0,0.84556,0,0.70887,0.18176,0.61815,0.30878,0.59758,0.26622,0.49274,0.10338,0.37379,0.05878,0.26774,0,0,0],"triangles":[10,6,7,9,10,7,9,7,8,10,11,6,11,5,6,3,4,11,2,3,11,11,4,5,12,2,11,13,2,12,14,2,13,14,15,2,15,1,2,0,1,15,16,0,15],"weights":[1,27,1,1,27,1,2,27,0.52,19,0.48,3,19,0.5,8,0.29,27,0.21,2,19,0.53,8,0.47,2,19,0.49,8,0.51,1,2,1,1,2,1,1,2,1,2,2,0.64,8,0.36,2,8,0.81,2,0.19,2,19,0.49,8,0.51,2,19,0.73,8,0.27,2,27,0.52,19,0.48,1,27,1,1,27,1,1,27,1],"slotPose":[1,0,0,1,0,0],"bonePose":[2,0.100069,-0.994981,0.994981,0.100069,-13.2,64.475,8,-0.628061,0.778164,-0.778164,-0.628061,-33.35,11,19,-0.564294,-0.825574,0.825574,-0.564294,-49.25,30.7,27,-0.963453,-0.267878,0.267878,-0.963453,-57.025,19.325],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,0],"userEdges":[]}]},{"name":"左眉毛","display":[{"name":"猫01/左眉毛","transform":{"x":1.56,"y":1,"skX":19.41,"skY":19.41}}]},{"name":"胡子","display":[{"type":"mesh","name":"猫01/胡子","width":88,"height":42,"vertices":[8.5,-24.25,-20.42,-0.02,-33.5,-0.02,-33.5,-31.75,-18.88,-37.47,7.85,-31.1,21.75,-39.25,39.88,-42.5,54.5,-42.5,54.5,-7.9,33.48,-18.5],"uvs":[0.47727,0.42941,0.14858,0.99941,0,0.99941,0,0.25294,0.16619,0.11824,0.46989,0.26824,0.62784,0.07647,0.83381,0,1,0,1,0.81412,0.76108,0.56471],"triangles":[10,9,8,7,10,8,6,10,7,6,0,10,5,0,6,5,4,0,4,1,0,3,2,1,3,1,4],"weights":[2,24,0.595723,25,0.404277,1,24,1,1,24,1,1,24,1,1,24,1,2,24,0.546532,25,0.453468,1,25,1,1,25,1,1,25,1,1,25,1,1,25,1],"slotPose":[1,0,0,1,0,0],"bonePose":[24,-0.908692,0.417466,-0.417466,-0.908692,0,-27.45,25,0.991533,0.129853,-0.129853,0.991533,17.35,-30.825],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,0],"userEdges":[]}]},{"name":"左眼","display":[{"name":"猫01/左眼","transform":{"x":1.12,"y":2.86,"skX":103.35,"skY":103.35}}]},{"name":"影子","display":[{"name":"猫01/影子","transform":{"x":442.43,"y":367.99}}]},{"name":"领带","display":[{"type":"mesh","name":"猫01/领带","width":60,"height":78,"vertices":[-8.05,10.35,-20.83,11.5,-36,8.4,-36,-3.77,-1.27,-4,24,-4,24,8.02,3.55,9.18,3.75,43.83,5.1,74,-12.13,74,-9.97,43.83],"uvs":[0.46583,0.18397,0.25292,0.19872,0,0.15897,0,0.00288,0.57875,0,1,0,1,0.15417,0.65917,0.16891,0.6625,0.61314,0.685,1,0.39792,1,0.43375,0.61314],"triangles":[4,7,5,5,7,6,0,11,8,0,8,7,4,0,7,8,11,9,11,10,9,1,0,4,3,1,4,3,2,1],"weights":[1,2,1,1,2,1,1,2,1,1,5,1,1,5,1,1,5,1,1,2,1,1,2,1,2,15,0.54048,6,0.45952,2,15,0.938581,6,0.061419,2,15,0.942059,6,0.057941,2,15,0.542095,6,0.457905],"slotPose":[1,0,0,1,0,0],"bonePose":[2,0.100069,-0.994981,0.994981,0.100069,-13.2,64.475,6,0,1,-1,0,-2.65,8.425,15,-0.02856,0.999592,-0.999592,-0.02856,-2.65,40.975,5,-0.230922,-0.972972,0.972972,-0.230922,2.6,2.875],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,0],"userEdges":[]}]},{"name":"左腿","display":[{"name":"猫01/左腿","transform":{"x":8.1,"y":1.36,"skX":-91.02,"skY":-91.02}}]},{"name":"右眼","display":[{"name":"猫01/右眼","transform":{"x":0.87,"y":2.52,"skX":103.35,"skY":103.35}}]},{"name":"眼镜","display":[{"name":"猫01/眼镜","transform":{"x":-0.77,"y":1.18,"skX":97.84,"skY":97.84}}]},{"name":"左小手","display":[{"name":"猫拿话筒(1)/左小手","transform":{"x":33.85,"y":-11.92,"skX":96.89,"skY":96.89,"scX":0.75,"scY":0.75}}]}]}],"animation":[{"duration":96,"playTimes":0,"name":"begin","bone":[{"name":"领带","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-1.38},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-1.38},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":1.71},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":1.71},{"duration":0}]},{"name":"左腿","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":0}]},{"name":"右腿","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":0}]},{"name":"bone1","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.65,"y":-4.96},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.65,"y":-4.96},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":10.03},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":10.03},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-6.03},{"duration":12,"tweenEasing":0,"rotate":-7.27},{"duration":12,"tweenEasing":0,"rotate":-1.79},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-6.03},{"duration":12,"tweenEasing":0,"rotate":-7.27},{"duration":12,"tweenEasing":0,"rotate":-1.79},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.9},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.9},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":27.86},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":27.86},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":0}]},{"name":"帽子","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":0}]},{"name":"左眼","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36}]},{"name":"领带2","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":4.36},{"duration":12,"tweenEasing":0,"rotate":-7.23},{"duration":12,"tweenEasing":0,"rotate":-16.17},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":4.36},{"duration":12,"tweenEasing":0,"rotate":-7.23},{"duration":12,"tweenEasing":0,"rotate":-16.17},{"duration":0}]},{"name":"右眼","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36}]},{"name":"尾巴1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-20.97},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-20.97},{"duration":0}]},{"name":"嘴","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":2.33},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":2.33},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-13.8},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":25.93},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":25.93},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.58},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.58},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-6.23},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-6.23},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":8.69},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.19},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.19},{"duration":0}]}],"slot":[{"name":"左手伸直","displayFrame":[{"duration":96,"value":-1}]},{"name":"右手伸直","displayFrame":[{"duration":96,"value":-1}]},{"name":"左小手","displayFrame":[{"duration":96,"value":-1}]}]},{"duration":40,"playTimes":0,"name":"right","bone":[{"name":"领带","translateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"y":-3.66},{"duration":0}],"rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":-4.39},{"duration":0}]},{"name":"左腿","translateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":-2.66,"y":0.06},{"duration":0}],"rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":5.63},{"duration":0}]},{"name":"右腿","translateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":-4.32,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":5.63},{"duration":0}]},{"name":"bone1","translateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":1.07,"y":-0.03},{"duration":0}],"rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":10.69},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":13.07},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":-19.17},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":-7.54},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":25.59},{"duration":0}]},{"name":"眼镜","translateFrame":[{"duration":5,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":5.06,"y":1.05},{"duration":30}]},{"name":"帽子","translateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":6.56,"y":1.18},{"duration":10,"tweenEasing":0,"x":-2.24,"y":-0.03},{"duration":10,"tweenEasing":0,"x":2.92,"y":0.71},{"duration":0}]},{"name":"左眉毛","translateFrame":[{"duration":5,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":2.7,"y":0.56},{"duration":30,"tweenEasing":0,"x":-1.3,"y":-0.17},{"duration":0}]},{"name":"左眼","scaleFrame":[{"duration":10,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":10,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":-6.33},{"duration":10,"tweenEasing":0,"rotate":7.14},{"duration":10,"tweenEasing":0,"rotate":10.22},{"duration":0}]},{"name":"右眼","scaleFrame":[{"duration":10,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":10,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]},{"name":"尾巴1","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":-26.31},{"duration":0}]},{"name":"右眉毛","translateFrame":[{"duration":5,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":2.7,"y":0.56},{"duration":30,"tweenEasing":0,"x":-1.3,"y":-0.17},{"duration":0}]},{"name":"左手1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":-49.92},{"duration":20,"tweenEasing":0,"rotate":-39.96},{"duration":0}]},{"name":"嘴","scaleFrame":[{"duration":5,"tweenEasing":0},{"duration":5,"tweenEasing":0,"y":1.2},{"duration":5,"tweenEasing":0,"y":0.2},{"duration":5,"tweenEasing":0,"y":1.2},{"duration":7,"tweenEasing":0,"y":0.2},{"duration":7,"tweenEasing":0,"y":1.2},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-64.99},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":-14.14},{"duration":10,"tweenEasing":0,"rotate":-5.02},{"duration":10,"tweenEasing":0,"rotate":-17.97},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":16.81},{"duration":10,"tweenEasing":0,"rotate":5.14},{"duration":10,"tweenEasing":0,"rotate":20.13},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":43.95},{"duration":20,"tweenEasing":0,"rotate":22.71},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":-19.99},{"duration":20}]},{"name":"尾巴2","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":16.32},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"rotate":24.27},{"duration":20}]},{"name":"bone2","rotateFrame":[{"duration":20,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":17.08},{"duration":0}]}],"slot":[{"name":"右手","displayFrame":[{"duration":40,"value":-1}]},{"name":"左手","displayFrame":[{"duration":40,"value":-1}]},{"name":"左小手","displayFrame":[{"duration":40,"value":-1}]}]},{"duration":36,"playTimes":0,"name":"normal","bone":[{"name":"领带","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":-1.02},{"duration":0}]},{"name":"左腿","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-1.69,"y":0.17},{"duration":0}]},{"name":"右腿","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-1.69,"y":0.17},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":5.05},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":4.41},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-9.27},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-3.96},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.13},{"duration":0}]},{"name":"左眼","scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.2},{"duration":18}]},{"name":"领带2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":6.59},{"duration":0}]},{"name":"右眼","scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.2},{"duration":18}]},{"name":"尾巴1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":5.05},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-0.6},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-5.81},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":5.67},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.64},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.79},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":7.76},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.56},{"duration":0}]}],"slot":[{"name":"左手伸直","displayFrame":[{"duration":36,"value":-1}]},{"name":"右手伸直","displayFrame":[{"duration":36,"value":-1}]},{"name":"左小手","displayFrame":[{"duration":36,"value":-1}]}]},{"duration":48,"playTimes":0,"name":"wrong","bone":[{"name":"领带","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0,"rotate":2.8},{"duration":8,"tweenEasing":0,"rotate":2.8},{"duration":0}]},{"name":"左腿","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0,"x":-0.99,"y":0.15},{"duration":8,"tweenEasing":0,"x":-0.99,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0,"rotate":-2.61},{"duration":8,"tweenEasing":0,"rotate":-2.61},{"duration":0}]},{"name":"右腿","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0,"x":0.99,"y":-0.15},{"duration":8,"tweenEasing":0,"x":0.99,"y":-0.15},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":32,"tweenEasing":0,"rotate":-2.61},{"duration":8,"tweenEasing":0,"rotate":-2.61},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0,"rotate":4.38},{"duration":16,"tweenEasing":0,"rotate":-0.95},{"duration":8,"tweenEasing":0,"rotate":4.38},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0},{"duration":16,"tweenEasing":0,"rotate":-8.34},{"duration":8}]},{"name":"尾巴","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0},{"duration":16,"tweenEasing":0,"rotate":-17.93},{"duration":8}]},{"name":"左手","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":7,"tweenEasing":0,"rotate":8.12},{"duration":18,"tweenEasing":0,"rotate":17.03},{"duration":7,"tweenEasing":0,"rotate":17.8},{"duration":8,"tweenEasing":0,"rotate":8.12},{"duration":0}]},{"name":"领带2","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0},{"duration":16,"tweenEasing":0,"rotate":-7.43},{"duration":8}]},{"name":"左手1","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":7,"tweenEasing":0,"rotate":-27.04},{"duration":18,"tweenEasing":0,"rotate":-42.19},{"duration":7,"tweenEasing":0,"rotate":-44.77},{"duration":8,"tweenEasing":0,"rotate":-27.04},{"duration":0}]},{"name":"嘴","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.2},{"duration":4,"tweenEasing":0,"y":0.47},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.47},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0,"rotate":-34.09},{"duration":16,"tweenEasing":0,"rotate":-15.48},{"duration":8,"tweenEasing":0,"rotate":-25.99},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":16,"tweenEasing":0,"rotate":31.11},{"duration":16,"tweenEasing":0,"rotate":9.07},{"duration":8,"tweenEasing":0,"rotate":28.46},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":21.2},{"duration":7,"tweenEasing":0,"rotate":26},{"duration":9,"tweenEasing":0,"rotate":96.37},{"duration":9,"tweenEasing":0,"rotate":34.08},{"duration":7,"tweenEasing":0,"rotate":98.41},{"duration":8,"tweenEasing":0,"rotate":26},{"duration":0}]}],"slot":[{"name":"左手伸直","displayFrame":[{"duration":48,"value":-1}]},{"name":"右手伸直","displayFrame":[{"duration":48,"value":-1}]},{"name":"左小手","displayFrame":[{"duration":48,"value":-1}]}]},{"duration":156,"playTimes":0,"name":"finish","bone":[{"name":"领带","translateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-3.81},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-1.38},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-1.38},{"duration":0}],"rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.86},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":1.71},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":1.71},{"duration":0}]},{"name":"左腿","translateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-2.72,"y":0.09},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.31},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":0}]},{"name":"右腿","translateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-3.35,"y":-2.58},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-1.38,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.31},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-1.66},{"duration":0}]},{"name":"bone1","translateFrame":[{"duration":60,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.65,"y":-4.96},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.65,"y":-4.96},{"duration":0}],"rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":9.56},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":10.03},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":10.03},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":17.34},{"duration":10,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-6.03},{"duration":12,"tweenEasing":0,"rotate":-7.27},{"duration":12,"tweenEasing":0,"rotate":-1.79},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-6.03},{"duration":12,"tweenEasing":0,"rotate":-7.27},{"duration":12,"tweenEasing":0,"rotate":-1.79},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-19.18},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.9},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.9},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.07},{"duration":25,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":27.86},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":27.86},{"duration":9}]},{"name":"右手","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":22,"tweenEasing":0,"rotate":18},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":2}]},{"name":"眼镜","translateFrame":[{"duration":14,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.52,"y":-0.28},{"duration":24,"tweenEasing":0,"x":0.35,"y":0.27},{"duration":106}]},{"name":"帽子","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.73,"y":0.78},{"duration":36,"tweenEasing":0,"x":-3.33,"y":0.57},{"duration":106}],"rotateFrame":[{"duration":60,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-3.15},{"duration":0}]},{"name":"左眉毛","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":42,"tweenEasing":0,"x":3.24,"y":0.43},{"duration":106}]},{"name":"左眼","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.2},{"duration":16,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.2},{"duration":26,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36}]},{"name":"领带2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":20,"tweenEasing":0,"rotate":-13.03},{"duration":16,"tweenEasing":0,"rotate":14.52},{"duration":10,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":4.36},{"duration":12,"tweenEasing":0,"rotate":-7.23},{"duration":12,"tweenEasing":0,"rotate":-16.17},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":4.36},{"duration":12,"tweenEasing":0,"rotate":-7.23},{"duration":12,"tweenEasing":0,"rotate":-16.17},{"duration":0}]},{"name":"右眼","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.2},{"duration":16,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.2},{"duration":26,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.2},{"duration":36}]},{"name":"尾巴1","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.16},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"右眉毛","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":42,"tweenEasing":0,"x":3.24,"y":0.43},{"duration":106}]},{"name":"左手1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":36,"tweenEasing":0,"rotate":-76.26},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-20.97},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-20.97},{"duration":0}]},{"name":"嘴","scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":10,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":0.2},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-106.39},{"duration":24,"tweenEasing":0,"rotate":-26.23},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":2.33},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":2.33},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":-14.94},{"duration":12,"tweenEasing":0,"rotate":5.37},{"duration":12,"tweenEasing":0,"rotate":-13.33},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-13.8},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":14.7},{"duration":12,"tweenEasing":0,"rotate":4.77},{"duration":12,"tweenEasing":0,"rotate":12.18},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":25.93},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":25.93},{"duration":0}]},{"name":"左手2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":35.24},{"duration":24,"tweenEasing":0,"rotate":30.12},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.58},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":6.58},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":4.46},{"duration":6,"tweenEasing":0,"rotate":-19.76},{"duration":8,"tweenEasing":0,"rotate":10.96},{"duration":8,"tweenEasing":0,"rotate":-11.78},{"duration":8,"tweenEasing":0,"rotate":17.35},{"duration":106}]},{"name":"尾巴2","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-18.36},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-6.23},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-6.23},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.75},{"duration":8,"tweenEasing":0,"rotate":-4.7},{"duration":8,"tweenEasing":0,"rotate":17.34},{"duration":8,"tweenEasing":0,"rotate":-7.53},{"duration":106}]},{"name":"右手2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"tweenEasing":0,"rotate":112.31},{"duration":24,"tweenEasing":0,"rotate":37.71},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":8.69},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":26,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-9.35},{"duration":10,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.19},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-12.19},{"duration":0}]}],"slot":[{"name":"右手","displayFrame":[{"duration":3},{"duration":47,"value":-1},{"duration":106}]},{"name":"左手","displayFrame":[{"duration":3},{"duration":47,"value":-1},{"duration":106}]},{"name":"左手伸直","displayFrame":[{"duration":3,"value":-1},{"duration":47},{"duration":106,"value":-1}]},{"name":"右手伸直","displayFrame":[{"duration":3,"value":-1},{"duration":47},{"duration":106,"value":-1}]}]},{"duration":36,"playTimes":0,"name":"record","bone":[{"name":"领带","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":-1.02},{"duration":0}]},{"name":"左腿","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-1.69,"y":0.17},{"duration":0}]},{"name":"右腿","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-1.69,"y":0.17},{"duration":0}]},{"name":"bone1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":5.05},{"duration":0}]},{"name":"领带1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":4.41},{"duration":0}]},{"name":"尾巴","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-9.27},{"duration":0}]},{"name":"左手","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-3.96},{"duration":0}]},{"name":"右手","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.13},{"duration":0}]},{"name":"左眼","scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.2},{"duration":18}]},{"name":"领带2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":6.59},{"duration":0}]},{"name":"右眼","scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.2},{"duration":18}]},{"name":"尾巴1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":5.05},{"duration":0}]},{"name":"右手1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-0.6},{"duration":0}]},{"name":"左耳","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-5.81},{"duration":0}]},{"name":"右耳","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":5.67},{"duration":0}]},{"name":"胡子1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.64},{"duration":0}]},{"name":"尾巴2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.79},{"duration":0}]},{"name":"胡子","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"右手2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":7.76},{"duration":0}]},{"name":"bone2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-4.56},{"duration":0}]}],"slot":[{"name":"左手伸直","displayFrame":[{"duration":36,"value":-1}]},{"name":"右手伸直","displayFrame":[{"duration":36,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"begin"}],"canvas":{"width":1088,"height":800}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "a3ba0517-85ed-4261-9a08-b870f17250d2",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"mao_ske_tex.png","height":512,"name":"mao_ske","SubTexture":[{"width":169,"y":175,"height":33,"name":"猫01/影子","x":64},{"width":88,"y":299,"height":55,"name":"猫01/尾巴","x":1},{"width":52,"y":210,"height":59,"name":"猫01/右腿","x":126},{"width":32,"y":249,"height":58,"name":"猫01/左腿","x":181},{"width":35,"y":335,"height":61,"name":"猫01/右手","x":178},{"width":62,"y":210,"height":37,"name":"猫01/左手","x":180},{"width":84,"y":1,"height":85,"name":"猫01伸/左手伸直","x":151},{"width":84,"y":88,"height":85,"name":"猫01伸/右手伸直","x":151},{"width":61,"y":207,"height":90,"name":"猫01/身体","x":1},{"width":60,"y":210,"height":78,"name":"猫01/领带","x":64},{"width":45,"y":369,"height":38,"name":"猫01/右耳","x":46},{"width":43,"y":356,"height":43,"name":"猫01/左耳","x":1},{"width":148,"y":1,"height":93,"name":"猫01/组_1","x":1},{"width":30,"y":249,"height":30,"name":"猫01/右眼","x":215},{"width":17,"y":285,"height":3,"name":"猫01/右眉毛","x":161},{"width":30,"y":401,"height":30,"name":"猫01/左眼","x":1},{"width":16,"y":290,"height":6,"name":"猫01/左眉毛","x":64},{"width":85,"y":335,"height":32,"name":"猫01/眼镜","x":91},{"width":88,"y":290,"height":43,"name":"猫01/胡子","x":91},{"width":14,"y":271,"height":12,"name":"猫01/鼻子","x":161},{"width":33,"y":271,"height":15,"name":"猫01/嘴","x":126},{"width":79,"y":96,"height":51,"name":"猫01/帽子","x":64},{"width":61,"y":96,"height":109,"name":"猫拿话筒(1)/左小手","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "b74a4e8d-1abb-479a-a9bb-e524f10ddb01",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1da24c72-94e6-4d59-b05f-492adbf27b8d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 512,
"platformSettings": {},
"subMetas": {
"mao_ske_tex": {
"ver": "1.0.4",
"uuid": "9452abf7-9dc2-4f81-9594-b290dccd56d7",
"rawTextureUuid": "1da24c72-94e6-4d59-b05f-492adbf27b8d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -5,
"offsetY": 40,
"trimX": 1,
"trimY": 1,
"width": 244,
"height": 430,
"rawWidth": 256,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "9cdcfa08-4442-4292-ae80-4ebe9ed4a601",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "912d5406-255f-4335-b658-9e41fc2c3375",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 534,
"height": 208,
"platformSettings": {},
"subMetas": {
"bg_good-job": {
"ver": "1.0.4",
"uuid": "84d90810-a77b-4174-a829-fef492783f2b",
"rawTextureUuid": "912d5406-255f-4335-b658-9e41fc2c3375",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 534,
"height": 208,
"rawWidth": 534,
"rawHeight": 208,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "17c6389b-7ba3-4d2c-8ee1-3c97cc7bcd06",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 623,
"height": 617,
"platformSettings": {},
"subMetas": {
"bg_light": {
"ver": "1.0.4",
"uuid": "56e8246b-d2b5-47c1-9208-10e0d2c0a7e1",
"rawTextureUuid": "17c6389b-7ba3-4d2c-8ee1-3c97cc7bcd06",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 4,
"trimY": 0,
"width": 615,
"height": 616,
"rawWidth": 623,
"rawHeight": 617,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "120bfc32-84fa-4b73-a6a0-cac5e47040a9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 534,
"height": 208,
"platformSettings": {},
"subMetas": {
"bg_nice-try": {
"ver": "1.0.4",
"uuid": "bb731e4d-60a5-46d1-90ec-4ee2d0e0c4a1",
"rawTextureUuid": "120bfc32-84fa-4b73-a6a0-cac5e47040a9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 534,
"height": 208,
"rawWidth": 534,
"rawHeight": 208,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1cf0fc6e-7ffe-4bdf-9d7f-05a2b6a6ae5d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 813,
"height": 51,
"platformSettings": {},
"subMetas": {
"progress_0": {
"ver": "1.0.4",
"uuid": "17ed4315-d528-4122-906f-f00a7ca8d34e",
"rawTextureUuid": "1cf0fc6e-7ffe-4bdf-9d7f-05a2b6a6ae5d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 813,
"height": 51,
"rawWidth": 813,
"rawHeight": 51,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7e3b2439-a64b-44ff-a54f-03e6f8d9a48b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 813,
"height": 51,
"platformSettings": {},
"subMetas": {
"progress_1": {
"ver": "1.0.4",
"uuid": "46d886d7-beab-4688-9fc1-9eb40f53607e",
"rawTextureUuid": "7e3b2439-a64b-44ff-a54f-03e6f8d9a48b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 5,
"trimX": 12,
"trimY": 5,
"width": 789,
"height": 31,
"rawWidth": 813,
"rawHeight": 51,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "508ab014-6601-4a1d-8c93-fb0b4d1ebd1b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 960,
"platformSettings": {},
"subMetas": {
"view_voice": {
"ver": "1.0.4",
"uuid": "79da5d41-1eaf-481a-8304-bd31d7533236",
"rawTextureUuid": "508ab014-6601-4a1d-8c93-fb0b4d1ebd1b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 960,
"rawWidth": 1280,
"rawHeight": 960,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ccc1866e-0e87-47d5-be7e-4cc8eaf4e34c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 440,
"height": 440,
"platformSettings": {},
"subMetas": {
"voice_bg": {
"ver": "1.0.4",
"uuid": "1a4b4545-3e67-4496-af75-f996b12aac6a",
"rawTextureUuid": "ccc1866e-0e87-47d5-be7e-4cc8eaf4e34c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 440,
"height": 440,
"rawWidth": 440,
"rawHeight": 440,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
......@@ -96,22 +96,25 @@
"__id__": 217
},
{
"__id__": 218
"__id__": 255
},
{
"__id__": 219
"__id__": 256
},
{
"__id__": 257
}
],
"_active": true,
"_components": [
{
"__id__": 227
"__id__": 265
},
{
"__id__": 228
"__id__": 266
},
{
"__id__": 229
"__id__": 267
}
],
"_prefab": null,
......@@ -1837,6 +1840,7 @@
"canClick": true,
"isRolling": false,
"isBlinking": false,
"isLock": false,
"_id": "edlI1qixtHLqleyh4DSt0b"
},
{
......@@ -10814,15 +10818,49 @@
},
{
"__type__": "cc.Node",
"_name": "loadingLayerBase",
"_name": "PronunciationTestLayer",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": null,
"_children": [
{
"__id__": 218
},
{
"__id__": 222
},
{
"__id__": 225
},
{
"__id__": 234
},
{
"__id__": 236
},
{
"__id__": 243
},
{
"__id__": 246
},
{
"__id__": 249
}
],
"_active": false,
"_components": [
{
"__id__": 252
},
{
"__id__": 253
}
],
"_prefab": {
"__id__": 254
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
......@@ -10868,25 +10906,34 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "7bxkmo2FlOS7u05LlCb5jV"
"_id": "79NB9B0J1FfauSvPDUXMbh"
},
{
"__type__": "cc.Node",
"_name": "offlineLayerBase",
"_name": "gray",
"_objFlags": 0,
"_parent": {
"__id__": 2
"__id__": 217
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_components": [
{
"__id__": 219
},
{
"__id__": 220
}
],
"_prefab": {
"__id__": 221
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
......@@ -10926,29 +10973,95 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "edeu0/2SVOkKCT9Q7CK+J1"
"_id": "25eIyBPg5KTKYeW1jVd5hq"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 218
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
},
"_type": 0,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "d3niGuB7hAZ4BSc8vWkjTl"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 218
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 50000,
"_originalHeight": 50000,
"_id": "59XcWTDXVB95RS6FgQqh+i"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "b9tWutYvxPqL3pW9Mrkfpm",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "res",
"_name": "voice_bg",
"_objFlags": 0,
"_parent": {
"__id__": 2
"__id__": 217
},
"_children": [
{
"__id__": 220
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 223
},
{
"__id__": 224
}
],
"_active": false,
"_components": [],
"_prefab": null,
"_prefab": {
"__id__": 224
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
......@@ -10959,8 +11072,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
"width": 440,
"height": 440
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -10978,8 +11091,8 @@
0,
0,
1,
1,
1,
2.4,
2.4,
1
]
},
......@@ -10994,23 +11107,75 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "0aAzbH6R1E+6AmGRrkKa5O"
"_id": "f93KPVOY9CZrOTBk8Bve7h"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 222
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "1a4b4545-3e67-4496-af75-f996b12aac6a"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "24r1x8rhxI/7yqShCECNCc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "6110gJjkpPR4aKnrS46x7m",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "font",
"_name": "catBase",
"_objFlags": 0,
"_parent": {
"__id__": 219
"__id__": 217
},
"_children": [
{
"__id__": 221
"__id__": 226
},
{
"__id__": 229
}
],
"_active": true,
"_components": [],
"_prefab": null,
"_components": [
{
"__id__": 232
}
],
"_prefab": {
"__id__": 233
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
......@@ -11021,8 +11186,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
"width": 2560,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -11033,15 +11198,15 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
-181.20500000000015,
92.846,
0,
0,
0,
0,
1,
1,
1,
1.3,
1.3,
1
]
},
......@@ -11056,23 +11221,25 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "9bLfcYeeNKrr524vzWchiM"
"_id": "6elb8plVtISIgk6DNuRClg"
},
{
"__type__": "cc.Node",
"_name": "BRLNSDB",
"_name": "cat",
"_objFlags": 0,
"_parent": {
"__id__": 220
"__id__": 225
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 222
"__id__": 227
}
],
"_prefab": null,
"_prefab": {
"__id__": 228
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
......@@ -11083,8 +11250,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
"width": 185.69,
"height": 241.78
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -11102,8 +11269,8 @@
0,
0,
1,
1,
1,
1.8,
1.8,
1
]
},
......@@ -11118,32 +11285,1250 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "cfMLGsq0BMhJARv+ySMAxS"
"_id": "f4S9uq0mdKeIxAP84PTlnK"
},
{
"__type__": "cc.Label",
"__type__": "dragonBones.ArmatureDisplay",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 221
"__id__": 226
},
"_enabled": true,
"_materials": [],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "",
"_N$string": "",
"_fontSize": 40,
"_lineHeight": 40,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "c551970e-b095-45f3-9f1d-25cde8b8deb1"
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_armatureName": "Armature",
"_animationName": "normal",
"_preCacheMode": 0,
"_cacheMode": 0,
"playTimes": 0,
"premultipliedAlpha": false,
"_armatureKey": "a3ba0517-85ed-4261-9a08-b870f17250d2#b74a4e8d-1abb-479a-a9bb-e524f10ddb01",
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_playing": false,
"_armatureCache": null,
"_N$dragonAsset": {
"__uuid__": "a3ba0517-85ed-4261-9a08-b870f17250d2"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$dragonAtlasAsset": {
"__uuid__": "b74a4e8d-1abb-479a-a9bb-e524f10ddb01"
},
"_N$_defaultArmatureIndex": 0,
"_N$_animationIndex": 3,
"_N$_defaultCacheMode": 0,
"_N$timeScale": 1,
"_N$debugBones": false,
"_N$enableBatch": false,
"_id": "d8jZh7qctI4Y4H8xmkly60"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "c7NlDCBVBLWYAptix3KMgf",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "catBtn",
"_objFlags": 0,
"_parent": {
"__id__": 225
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 230
}
],
"_prefab": {
"__id__": 231
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 362,
"height": 483
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
890.79,
-519.093,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "b97wBzAB5Pk4L2olvLd2WX"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 229
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 0,
"transition": 0,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_N$normalSprite": null,
"_N$pressedSprite": null,
"pressedSprite": null,
"_N$hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": null,
"_id": "d9Ji/J+eVHSLuGOKaX9toC"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "d51oMMiYtJjL77zl0N5TcE",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 225
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 36,
"_left": 0,
"_right": -202.79499999999987,
"_top": 0,
"_bottom": -195.15400000000005,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "96D6C5Zy1LFJqgyqPFceqN"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "e5QBZ/ZGVGQ5+q39akSX+o",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 217
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 235
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 500,
"height": 500
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
16.055,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "37naXtTW5DNqWWbCt6ovxK"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "57ylecYUxPOq833RLjtBl2",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "progress",
"_objFlags": 0,
"_parent": {
"__id__": 217
},
"_children": [
{
"__id__": 237
}
],
"_active": true,
"_components": [
{
"__id__": 240
},
{
"__id__": 241
}
],
"_prefab": {
"__id__": 242
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 813,
"height": 51
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
808.73,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "c06Ofer4xGT5nReH61vg4R"
},
{
"__type__": "cc.Node",
"_name": "bar",
"_objFlags": 0,
"_parent": {
"__id__": 236
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 238
}
],
"_prefab": {
"__id__": 239
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 787,
"height": 29
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-392.965,
4.968,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "72BPWdVsBFJ6wOcBGv7ZF1"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 237
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "46d886d7-beab-4688-9fc1-9eb40f53607e"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "efNSA72WZM0aHS0MzOWcxj"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "c1fZwyws1JzLvUUbYmA+hY",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 236
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "17ed4315-d528-4122-906f-f00a7ca8d34e"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "43SBOBZsNIp6oQaK5gRajw"
},
{
"__type__": "cc.ProgressBar",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 236
},
"_enabled": true,
"_N$totalLength": 787,
"_N$barSprite": {
"__id__": 238
},
"_N$mode": 0,
"_N$progress": 1,
"_N$reverse": false,
"_id": "85Ehaed7ZGqbFRo5psxOKm"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "32W0c0iSdMeJ/OmzGZTALS",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "bg_light",
"_objFlags": 0,
"_parent": {
"__id__": 217
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 244
}
],
"_prefab": {
"__id__": 245
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 615,
"height": 616
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "35OlO/V6NJpJRA8ui8RcXy"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 243
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "56e8246b-d2b5-47c1-9208-10e0d2c0a7e1"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "0cm8SN1S9GOJKWi3DCrlcv"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "e26yHLMzdJuooWQOM104/q",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "good",
"_objFlags": 0,
"_parent": {
"__id__": 217
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 247
}
],
"_prefab": {
"__id__": 248
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 534,
"height": 208
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
2,
2,
2
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "deMplk1T5PeqUjlShlc1/7"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 246
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "84d90810-a77b-4174-a829-fef492783f2b"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "31WxfUs6tMv4flNn2WhkGX"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "2cIOsXO1JE36YpFYq2+jOy",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "try",
"_objFlags": 0,
"_parent": {
"__id__": 217
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 250
}
],
"_prefab": {
"__id__": 251
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 534,
"height": 208
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
6.642,
0,
0,
0,
0,
1,
2,
2,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "51v7JUPkpKZoy1EdfwK1Qx"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 249
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "bb731e4d-60a5-46d1-90ec-4ee2d0e0c4a1"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6bXtyznwtAnrgnfTI7jks/"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "c8TTnwgvpL2Kb1J1NCiHC8",
"sync": false
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 217
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "f5JGE+TeFJ5oPBAawSIokG"
},
{
"__type__": "16155YRBRBLL4FPRlTZRpiI",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 217
},
"_enabled": true,
"_id": "8dfkVpHmxCl5/dY7sHIxjD"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 217
},
"asset": {
"__uuid__": "87e8bdef-072f-4642-b630-352bb34d47b4"
},
"fileId": "",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "loadingLayerBase",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 2560,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "7bxkmo2FlOS7u05LlCb5jV"
},
{
"__type__": "cc.Node",
"_name": "offlineLayerBase",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 2560,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "edeu0/2SVOkKCT9Q7CK+J1"
},
{
"__type__": "cc.Node",
"_name": "res",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 258
},
{
"__id__": 261
},
{
"__id__": 262
}
],
"_active": false,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "0aAzbH6R1E+6AmGRrkKa5O"
},
{
"__type__": "cc.Node",
"_name": "font",
"_objFlags": 0,
"_parent": {
"__id__": 257
},
"_children": [
{
"__id__": 259
}
],
"_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "9bLfcYeeNKrr524vzWchiM"
},
{
"__type__": "cc.Node",
"_name": "BRLNSDB",
"_objFlags": 0,
"_parent": {
"__id__": 258
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 260
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "cfMLGsq0BMhJARv+ySMAxS"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 259
},
"_enabled": true,
"_materials": [],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "",
"_N$string": "",
"_fontSize": 40,
"_lineHeight": 40,
"_enableWrapText": true,
"_N$file": {
"__uuid__": "c551970e-b095-45f3-9f1d-25cde8b8deb1"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 0,
"_N$verticalAlign": 0,
"_N$fontFamily": "Arial",
......@@ -11156,7 +12541,7 @@
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 219
"__id__": 257
},
"_children": [],
"_active": true,
......@@ -11214,11 +12599,11 @@
"_name": "audio",
"_objFlags": 0,
"_parent": {
"__id__": 219
"__id__": 257
},
"_children": [
{
"__id__": 225
"__id__": 263
}
],
"_active": true,
......@@ -11276,13 +12661,13 @@
"_name": "btn",
"_objFlags": 512,
"_parent": {
"__id__": 224
"__id__": 262
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 226
"__id__": 264
}
],
"_prefab": null,
......@@ -11338,7 +12723,7 @@
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 225
"__id__": 263
},
"_enabled": true,
"_clip": {
......
......@@ -151,6 +151,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
// 初始化界面
this.initLoadingLayer();
this.initOfflineLayer();
this.initPronunciationTestLayer();
this.initTurntable();
this.initGemstone();
this.initScore();
......@@ -204,6 +205,13 @@ export default class SceneComponent extends MyCocosSceneComponent {
this.offlineLayer = offlineLayerNode.getComponent("PlayerOffLineLayer");
}
// 语音评测组件
pronunciationTestLayer;
initPronunciationTestLayer() {
const loadingLayerBase = cc.find("Canvas/PronunciationTestLayer");
this.pronunciationTestLayer = loadingLayerBase.getComponent("PronunciationTestLayer");
}
redPlayerNode = null;
bluePlayerNode = null;
redPlayerHomeNode = null;
......@@ -549,11 +557,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
itemData.index = index;
itemData.word = gem.name.split("_")[0];
itemData.score = Number(gem.name.split("_")[1]);
itemData.word = gem.name.split("_")[0];
itemData.parentNode = gem;
itemData.beforeNode = cc.find("before", gem);
itemData.afterNode = cc.find("after", gem);
gem['__score'] = itemData.score;
gem['__letter'] = gem.name.split("_")[0];
if(itemData.score == 1) {
gem['__arrIndex1'] = 0;
......@@ -688,19 +696,25 @@ export default class SceneComponent extends MyCocosSceneComponent {
}, (param)=>{
// 游戏流程3: 测评 - 对手不会出现测评界面
this.runFunctionMySide((isAi)=>{
console.log("语音评测开始");
setTimeout(() => {
console.log("语音评测结束")
if(Math.random() > 1) {
console.log("评测失败,后退")
// 后退
this.runEvent(MSG_PLAYER_TO_HOME, {success: false, gemIndex: param.index});
} else {
console.log("评测成功")
// 玩家回家
this.runEvent(MSG_PLAYER_TO_HOME, {success: true, gemIndex: param.index});
}
}, DEBUG?10:2000);
console.log("语音评测开始", isAi);
if(isAi) {
setTimeout(() => {
console.log("语音评测结束")
if(Math.random() > 1) {
console.log("评测失败,后退")
// 后退
this.runEvent(MSG_PLAYER_TO_HOME, {success: false, gemIndex: param.index});
} else {
console.log("评测成功")
// 玩家回家
this.runEvent(MSG_PLAYER_TO_HOME, {success: true, gemIndex: param.index});
}
}, DEBUG?10:2000);
} else {
this.pronunciationTestLayer.showVoice(this.gemstonesAll[param.index], this.gemstonesAll[param.index].__letter).then(res=>{
this.runEvent(MSG_PLAYER_TO_HOME, {success: res, gemIndex: param.index});
})
}
})
})
......
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