Commit b6132b6f authored by 李帅's avatar 李帅

完成

parent 3d36cbfc
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
initView() {
this.initBg();
this.initPic();
this.initBtn();
this.initIcon();
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
pic1 = null;
pic2 = null;
initPic() {
const canvas = cc.find('Canvas');
const maxW = canvas.width * 0.7;
this.getSprNodeByUrl(this.data.pic_url, (sprNode) => {
const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x;
canvas.addChild(picNode1);
this.pic1 = picNode1;
const labelNode = new cc.Node();
labelNode.color = cc.Color.YELLOW;
const label = labelNode.addComponent(cc.Label);
label.string = this.data.text;
label.fontSize = 60;
label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode);
});
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
const picNode2 = sprNode;
picNode2.scale = maxW / picNode2.width;
canvas.addChild(picNode2);
picNode2.x = canvas.width;
picNode2.baseX = picNode2.x;
this.pic2 = picNode2;
const labelNode = new cc.Node();
const label = labelNode.addComponent(cc.RichText);
const size = 60
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent(cc.Label).font;
label.string = `<outline color=#751e00 width=4><size=${size}><color=#ffffff>${this.data.text}</color></size></outline>`
label.lineHeight = size;
picNode2.addChild(labelNode);
});
}
initIcon() {
const iconNode = this.getSprNode('icon');
iconNode.zIndex = 5;
iconNode.anchorX = 1;
iconNode.anchorY = 1;
iconNode.parent = cc.find('Canvas');
iconNode.x = iconNode.parent.width / 2 - 10;
iconNode.y = iconNode.parent.height / 2 - 10;
iconNode.on(cc.Node.EventType.TOUCH_START, () => {
this.playAudioByUrl(this.data.audio_url);
})
}
curPage = null;
initBtn() {
this.curPage = 0;
const bottomPart = cc.find('Canvas/bottomPart');
bottomPart.zIndex = 5; // 提高层级
bottomPart.x = bottomPart.parent.width / 2;
bottomPart.y = -bottomPart.parent.height / 2;
const leftBtnNode = bottomPart.getChildByName('btn_left');
//节点中添加了button组件 则可以添加click事件监听
leftBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 0) {
return;
}
this.curPage = 0
this.leftMove();
this.playLocalAudio('btn');
})
const rightBtnNode = bottomPart.getChildByName('btn_right');
//节点中添加了button组件 则可以添加click事件监听
rightBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 1) {
return;
}
this.curPage = 1
this.rightMove();
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
this.playLocalAudio('btn');
})
}
leftMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
rightMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX - len }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX - len }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
// update (dt) {},
initListener() {
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
{"name":"girl","version":"5.5","armature":[{"name":"Armature","defaultActions":[{"gotoAndPlay":"normal"}],"bone":[{"name":"root","transform":{"skY":0.0783,"skX":0.0783}},{"name":"衣服","transform":{"x":-510.9878,"skY":-89.9669,"y":179.1709,"skX":-89.9669},"length":32,"parent":"root"},{"name":"领结","transform":{"x":53.35,"skY":-0.718,"y":7.75,"skX":-0.718},"length":19,"parent":"衣服"},{"name":"左边斗篷","transform":{"x":74.85,"skY":-149.7309,"y":-29.45,"skX":-149.7309},"length":32,"parent":"衣服"},{"name":"右边斗篷","transform":{"x":67.75,"skY":156.319,"y":29.65,"skX":156.319},"length":41,"parent":"衣服"},{"name":"脸","transform":{"x":84.6419,"skY":-5.7192,"y":9.9301,"skX":-5.7192},"length":33,"parent":"衣服"},{"name":"右手","transform":{"x":61.5085,"skY":135.7141,"y":18.5251,"skX":135.7141},"length":24,"parent":"衣服"},{"name":"左手","transform":{"x":42.1086,"skY":175.593,"y":-44.9134,"skX":175.593},"length":29,"parent":"衣服"},{"name":"左边斗篷1","transform":{"x":48.3205,"skY":18.972,"y":-3.3074,"skX":18.972},"length":31,"parent":"左边斗篷"},{"name":"右手1","transform":{"x":34.1542,"skY":-75.8832,"y":-5.0888,"skX":-75.8832},"length":23,"parent":"右手"},{"name":"左手1","transform":{"x":45.2649,"skY":-16.5153,"y":-2.6955,"skX":-16.5153},"length":16,"parent":"左手"},{"name":"右边斗篷1","transform":{"x":50.0342,"skY":-18.7867,"y":-0.5504,"skX":-18.7867},"length":28,"parent":"右边斗篷"},{"name":"左辫子","transform":{"x":8.6578,"skY":-143.7163,"y":-54.9168,"skX":-143.7163},"length":32,"parent":"脸"},{"name":"右辫子","transform":{"x":-1.8599,"skY":155.8629,"y":28.153,"skX":155.8629},"length":24,"parent":"脸"},{"name":"头发","transform":{"x":96.4452,"skY":122.1217,"y":-4.9493,"skX":122.1217},"length":25,"parent":"脸"},{"name":"左眼","transform":{"x":47.5554,"skY":-174.3923,"y":-6.9362,"skX":-174.3923},"parent":"脸"},{"name":"右眼","transform":{"x":52.1324,"skY":-63.8362,"y":40.0861,"skX":-63.8362},"parent":"脸"},{"name":"鼻子","transform":{"x":41.9529,"y":26.0743},"parent":"脸"},{"name":"嘴","transform":{"x":7.6079,"skY":6.2397,"y":11.5487,"skX":6.2397},"length":13,"parent":"脸"},{"name":"帽子","transform":{"x":125.5987,"skY":-20.3303,"y":-19.4198,"skX":-20.3303},"length":32,"parent":"脸"},{"name":"眉毛","transform":{"x":73.3838,"skY":-84.3923,"y":-22.336,"skX":-84.3923},"parent":"脸"},{"name":"右手2","transform":{"x":34.4734,"skY":-10.5576,"y":-0.6739,"skX":-10.5576},"length":22,"parent":"右手1"},{"name":"左边斗篷2","transform":{"x":44.8674,"skY":30.2311,"y":-0.2074,"skX":30.2311},"length":22,"parent":"左边斗篷1"},{"name":"脸1","transform":{"x":39.1597,"skY":-30.4094,"y":-6.8522,"skX":-30.4094},"length":25,"parent":"头发"},{"name":"头发1","transform":{"x":38.4809,"skY":-49.5247,"y":-2.0906,"skX":-49.5247},"length":21,"parent":"脸1"}],"ik":[],"aabb":{"x":-626.0967887682872,"height":374.0229914711643,"y":-75.81520931266408,"width":221.46240869662427},"animation":[{"name":"normal","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":0.99,"duration":8},{"tweenEasing":0,"x":0.99,"duration":14},{"duration":8}]},{"name":"领结","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左边斗篷","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右边斗篷","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左边斗篷1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右边斗篷1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左边斗篷2","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左手","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左手1","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":26,"rotate":-4.3257,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":14},{"tweenEasing":0,"x":-1.7516,"y":-1.8554,"duration":26},{"duration":0}],"scaleFrame":[]},{"name":"右手","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右手1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右手2","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"脸","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":24,"rotate":-1.8394,"curve":[0.5,0,1,1]},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"左辫子","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":24,"rotate":-4.1912,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"右辫子","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":24,"rotate":4.4197,"tweenEasing":0},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"头发","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"脸1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"头发1","rotateFrame":[{"duration":11,"curve":[0,0,0.5,1]},{"duration":19,"rotate":-4.9006,"curve":[0,0,0.5,1]},{"duration":10}],"translateFrame":[],"scaleFrame":[]},{"name":"左眼","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右眼","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"嘴","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":8},{"curve":[0,0,0.5,1],"y":0.87,"duration":16},{"duration":16}]},{"name":"帽子","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"眉毛","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"duration":5},{"tweenEasing":0,"x":-2.074,"y":1.6346,"duration":5},{"duration":20}],"scaleFrame":[]}],"playTimes":0,"ffd":[{"name":"动画/左眼","slot":"左眼","scale":1,"frame":[{"vertices":[],"tweenEasing":null,"offset":0,"duration":10},{"vertices":[],"tweenEasing":0,"offset":0,"duration":7},{"vertices":[0.94,4.57,3.44,12.71,5.08,17.66,7.52,19.64,9.78,21.11,10.91,23.49,9.71,20.16,7.18,14.62,7.18,14.62,5.2,8.86,2.11,6.96,0.1,0.15,-0.52,-1.12,-0.38,-0.51,6.43,14.75,4.12,13.28,1.59,5.95,0.94,4.57],"tweenEasing":0,"offset":2,"duration":7},{"vertices":[],"tweenEasing":null,"offset":0,"duration":16}],"skin":"","offset":0},{"name":"动画/右眼","slot":"右眼","scale":1,"frame":[{"vertices":[],"tweenEasing":null,"offset":0,"duration":10},{"vertices":[],"tweenEasing":0,"offset":0,"duration":7},{"vertices":[-0.9,10.63,-0.13,12.05,-1.15,18.13,-1.2,20.83,-0.65,20.84,1.33,16.58,-0.06,11.1,-0.28,4.25,0,0,0,0,0,0,-0.28,4.25,-0.15,7.65,-0.15,7.65,-1.68,12.17,-1.03,12.23,-0.28,4.25,-0.28,4.25],"tweenEasing":0,"offset":0,"duration":7},{"vertices":[],"tweenEasing":null,"offset":0,"duration":16}],"skin":"","offset":0}],"slot":[{"name":"阴影","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"colorFrame":[]},{"name":"右辫子","displayFrame":[],"colorFrame":[]},{"name":"右边斗篷","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[{"duration":40,"value":-1}],"colorFrame":[]},{"name":"衣服","displayFrame":[],"colorFrame":[]},{"name":"脖子","displayFrame":[],"colorFrame":[]},{"name":"左手","displayFrame":[],"colorFrame":[]},{"name":"左边斗篷","displayFrame":[],"colorFrame":[]},{"name":"领结","displayFrame":[],"colorFrame":[]},{"name":"帽子","displayFrame":[],"colorFrame":[]},{"name":"左辫子","displayFrame":[],"colorFrame":[]},{"name":"脸","displayFrame":[],"colorFrame":[]},{"name":"右眼","displayFrame":[],"colorFrame":[]},{"name":"头发","displayFrame":[],"colorFrame":[]},{"name":"左眼","displayFrame":[],"colorFrame":[]},{"name":"眉毛","displayFrame":[],"colorFrame":[]},{"name":"嘴","displayFrame":[{"duration":24,"value":1},{"duration":16,"value":1}],"colorFrame":[]},{"name":"鼻子","displayFrame":[],"colorFrame":[]}],"ik":[],"duration":40},{"name":"speak","frame":[],"bone":[{"name":"root","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"衣服","rotateFrame":[],"translateFrame":[],"scaleFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":0.98,"duration":8},{"tweenEasing":0,"x":0.98,"duration":14},{"duration":18}]},{"name":"领结","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左边斗篷","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右边斗篷","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"左边斗篷1","rotateFrame":[{"duration":10,"tweenEasing":0},{"duration":18,"rotate":3.0739,"tweenEasing":0},{"duration":22}],"translateFrame":[{"tweenEasing":0,"duration":10},{"tweenEasing":0,"x":-0.8917,"y":-2.0892,"duration":18},{"duration":22}],"scaleFrame":[]},{"name":"右边斗篷1","rotateFrame":[{"duration":12,"tweenEasing":0},{"duration":10,"rotate":2.6334,"tweenEasing":0},{"duration":10,"rotate":-1.679,"tweenEasing":0},{"duration":18,"rotate":2.6334,"tweenEasing":0},{"duration":0}],"translateFrame":[{"tweenEasing":0,"duration":12},{"tweenEasing":0,"x":-7.4504,"y":-5.1107,"duration":10},{"tweenEasing":0,"x":-9.5454,"y":-5.9317,"duration":10},{"tweenEasing":0,"x":-7.4504,"y":-5.1107,"duration":18},{"duration":0}],"scaleFrame":[]},{"name":"左边斗篷2","rotateFrame":[{"duration":14,"tweenEasing":0},{"duration":12,"rotate":7.5477,"tweenEasing":0},{"duration":24}],"translateFrame":[{"tweenEasing":0,"duration":14},{"tweenEasing":0,"x":1.2737,"y":2.8135,"duration":12},{"duration":24}],"scaleFrame":[]},{"name":"左手","rotateFrame":[{"duration":12,"curve":[0,0,0.5,1]},{"duration":12,"rotate":-4.7507,"curve":[0.5,0,1,1]},{"duration":26}],"translateFrame":[],"scaleFrame":[]},{"name":"左手1","rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":20,"rotate":-8.8098,"tweenEasing":0},{"duration":16,"rotate":-8.8098,"tweenEasing":0},{"duration":8}],"translateFrame":[{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":-1.3859,"y":-5.4096,"duration":20},{"tweenEasing":0,"x":-1.3859,"y":-5.4096,"duration":16},{"duration":8}],"scaleFrame":[]},{"name":"右手","rotateFrame":[{"duration":12,"curve":[0,0,0.5,1]},{"duration":18,"rotate":-12.7748,"tweenEasing":0},{"duration":20,"rotate":-12.7748,"curve":[0,0,0.5,1]},{"duration":0}],"translateFrame":[],"scaleFrame":[]},{"name":"右手1","rotateFrame":[{"duration":2},{"duration":10,"curve":[0,0,0.5,1]},{"duration":10,"rotate":9.7576,"tweenEasing":0},{"duration":14,"rotate":-8.5624,"tweenEasing":0},{"duration":14,"rotate":9.7576,"tweenEasing":0},{"duration":0}],"translateFrame":[{"duration":2},{"curve":[0,0,0.5,1],"duration":10},{"tweenEasing":0,"x":-1.494,"y":-0.7844,"duration":24},{"tweenEasing":0,"x":-0.0481,"y":-4.9876,"duration":14},{"duration":0}],"scaleFrame":[]},{"name":"右手2","rotateFrame":[{"duration":6},{"duration":16,"tweenEasing":0},{"duration":12,"rotate":23.8924,"curve":[0,0,0.5,1]},{"duration":16}],"translateFrame":[{"duration":6},{"tweenEasing":0,"duration":16},{"curve":[0,0,0.5,1],"x":-3.963,"y":-3.9577,"duration":12},{"duration":16}],"scaleFrame":[]},{"name":"脸","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":24,"rotate":-1.8394,"curve":[0.5,0,1,1]},{"duration":10}],"translateFrame":[],"scaleFrame":[]},{"name":"左辫子","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":24,"rotate":-4.1912,"tweenEasing":0},{"duration":10}],"translateFrame":[],"scaleFrame":[]},{"name":"右辫子","rotateFrame":[{"duration":16,"curve":[0,0,0.5,1]},{"duration":24,"rotate":4.4197,"tweenEasing":0},{"duration":10}],"translateFrame":[],"scaleFrame":[]},{"name":"头发","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"脸1","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"头发1","rotateFrame":[{"duration":12,"curve":[0,0,0.5,1]},{"duration":18,"rotate":-4.8577,"curve":[0,0,0.5,1]},{"duration":20}],"translateFrame":[{"curve":[0,0,0.5,1],"duration":12},{"curve":[0,0,0.5,1],"x":-0.3373,"y":-2.2302,"duration":18},{"duration":20}],"scaleFrame":[]},{"name":"左眼","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"右眼","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"鼻子","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"嘴","rotateFrame":[],"translateFrame":[{"tweenEasing":0,"x":1.9658,"y":0.193,"duration":12},{"tweenEasing":0,"x":3.4985,"y":0.4488,"duration":10},{"tweenEasing":0,"x":1.9963,"y":0.2561,"duration":4},{"tweenEasing":0,"x":1.9658,"y":0.193,"duration":6},{"tweenEasing":0,"x":2.9774,"y":0.3692,"duration":10},{"tweenEasing":0,"x":1.9963,"y":0.2561,"duration":8},{"x":1.9658,"y":0.193,"duration":0}],"scaleFrame":[]},{"name":"帽子","rotateFrame":[],"translateFrame":[],"scaleFrame":[]},{"name":"眉毛","rotateFrame":[],"translateFrame":[{"duration":18},{"tweenEasing":0,"duration":6},{"tweenEasing":0,"x":-2.074,"y":1.6346,"duration":6},{"duration":20}],"scaleFrame":[]}],"playTimes":0,"ffd":[{"name":"动画/左眼","slot":"左眼","scale":1,"frame":[{"vertices":[],"tweenEasing":null,"offset":0,"duration":20},{"vertices":[],"tweenEasing":0,"offset":0,"duration":7},{"vertices":[0.94,4.57,3.44,12.71,5.08,17.66,7.52,19.64,9.78,21.11,10.91,23.49,9.71,20.16,7.18,14.62,7.18,14.62,5.2,8.86,2.11,6.96,0.1,0.15,-0.52,-1.12,-0.38,-0.51,6.43,14.75,4.12,13.28,1.59,5.95,0.94,4.57],"tweenEasing":0,"offset":2,"duration":7},{"vertices":[],"tweenEasing":null,"offset":0,"duration":16}],"skin":"","offset":0},{"name":"动画/右眼","slot":"右眼","scale":1,"frame":[{"vertices":[],"tweenEasing":null,"offset":0,"duration":20},{"vertices":[],"tweenEasing":0,"offset":0,"duration":7},{"vertices":[-0.9,10.63,-0.13,12.05,-1.15,18.13,-1.2,20.83,-0.65,20.84,1.33,16.58,-0.06,11.1,-0.28,4.25,0,0,0,0,0,0,-0.28,4.25,-0.15,7.65,-0.15,7.65,-1.68,12.17,-1.03,12.23,-0.28,4.25,-0.28,4.25],"tweenEasing":0,"offset":0,"duration":7},{"vertices":[],"tweenEasing":null,"offset":0,"duration":16}],"skin":"","offset":0},{"name":"动画/嘴","slot":"嘴","scale":1,"frame":[{"vertices":[],"tweenEasing":0,"offset":0,"duration":12},{"vertices":[-0.02,4.03,-0.4,5.35,-1,5.18,-0.77,4.16,-1.09,6.6,0.05,0.1,1.51,-3.89,2.72,-6,0.74,-4.98,0.44,-6.47,-0.52,-0.93,0.05,0.1,0.05,0.1,0.05,0.1,0.05,0.1],"tweenEasing":0,"offset":0,"duration":10},{"vertices":[-0.13,1.11,0,0,0,0,0,0,0.16,-3.9,1.42,-4.17,0.41,-2.17,-0.58,-2.35,0,0,0,0,0,0,0,0,0,0],"tweenEasing":0,"offset":4,"duration":4},{"vertices":[],"tweenEasing":0,"offset":0,"duration":6},{"vertices":[-0.02,4.03,-0.4,5.35,-1,5.18,-0.77,4.16,-1.09,6.6,0.05,0.1,1.51,-3.89,2.72,-6,0.74,-4.98,0.44,-6.47,-0.52,-0.93,0.05,0.1,0.05,0.1,0.05,0.1,0.05,0.1],"tweenEasing":0,"offset":0,"duration":10},{"vertices":[-0.13,1.11,0,0,0,0,0,0,0.16,-3.9,1.42,-4.17,0.41,-2.17,-0.58,-2.35,0,0,0,0,0,0,0,0,0,0],"tweenEasing":0,"offset":4,"duration":8},{"vertices":[],"tweenEasing":null,"offset":0,"duration":0}],"skin":"","offset":0}],"slot":[{"name":"阴影","displayFrame":[],"colorFrame":[]},{"name":"右腿","displayFrame":[],"colorFrame":[]},{"name":"左腿","displayFrame":[],"colorFrame":[]},{"name":"右辫子","displayFrame":[],"colorFrame":[]},{"name":"右边斗篷","displayFrame":[],"colorFrame":[]},{"name":"右手","displayFrame":[],"colorFrame":[]},{"name":"衣服","displayFrame":[],"colorFrame":[]},{"name":"脖子","displayFrame":[],"colorFrame":[]},{"name":"左手","displayFrame":[],"colorFrame":[]},{"name":"左边斗篷","displayFrame":[],"colorFrame":[]},{"name":"领结","displayFrame":[],"colorFrame":[]},{"name":"帽子","displayFrame":[],"colorFrame":[]},{"name":"左辫子","displayFrame":[],"colorFrame":[]},{"name":"脸","displayFrame":[],"colorFrame":[]},{"name":"右眼","displayFrame":[],"colorFrame":[]},{"name":"头发","displayFrame":[],"colorFrame":[]},{"name":"左眼","displayFrame":[],"colorFrame":[]},{"name":"眉毛","displayFrame":[],"colorFrame":[]},{"name":"嘴","displayFrame":[],"colorFrame":[]},{"name":"鼻子","displayFrame":[],"colorFrame":[]}],"ik":[],"duration":50}],"slot":[{"name":"阴影","color":{"aM":14},"parent":"root"},{"name":"右腿","color":{},"z":1,"parent":"root"},{"name":"左腿","color":{},"z":2,"parent":"root"},{"name":"右辫子","color":{},"z":3,"parent":"右辫子"},{"name":"右边斗篷","color":{},"z":4,"parent":"右边斗篷1"},{"name":"右手","color":{},"z":5,"parent":"右手2"},{"name":"衣服","color":{},"z":6,"parent":"衣服"},{"name":"脖子","color":{},"z":7,"parent":"root"},{"name":"左手","color":{},"z":8,"parent":"左手1"},{"name":"左边斗篷","color":{},"z":9,"parent":"左边斗篷2"},{"name":"领结","color":{},"z":10,"parent":"领结"},{"name":"帽子","color":{},"z":11,"parent":"帽子"},{"name":"左辫子","color":{},"z":12,"parent":"左辫子"},{"name":"脸","color":{},"z":13,"parent":"脸1"},{"name":"右眼","color":{},"z":14,"parent":"右眼"},{"name":"头发","color":{},"z":15,"parent":"头发1"},{"name":"左眼","color":{},"z":16,"parent":"左眼"},{"name":"眉毛","color":{},"z":17,"parent":"眉毛"},{"name":"嘴","color":{},"z":18,"parent":"嘴"},{"name":"鼻子","color":{},"z":19,"parent":"鼻子"}],"skin":[{"name":"","slot":[{"name":"左辫子","display":[{"name":"动画/左辫子","transform":{"x":29.2377,"skY":-120.6291,"y":0.2235,"skX":-120.6291},"type":"image","path":"动画/左辫子"}]},{"name":"头发","display":[{"bonePose":[14,0.8948254216879922,0.4464162460091548,-0.44641624600915464,0.8948254216879921,6.750000000000088,-110.84999999999998,23,0.9976896765711283,-0.06793606747079589,0.06793606747079611,0.9976896765711283,44.85000000000008,-99.49999999999996,24,0.5959426636232407,-0.8030269868900023,0.8030269868900024,0.5959426636232408,83.1000000000001,-104.19999999999993],"userEdges":[],"slotPose":[0.9999979837755567,0.00200809482376868,-0.0020080948237690688,0.9999979837755567,21.613448263619446,-82.97053003419856],"weights":[1,24,1,1,24,1,1,24,1,3,14,0.06232632557699015,24,0.5718882386243944,23,0.3657854357986154,3,14,0.1532172430536711,23,0.5272213579422771,24,0.31956139900405167,3,14,0.564508954189256,23,0.355056167771642,24,0.08043487803910196,3,14,0.721423971830034,23,0.2148513476022747,24,0.06372468056769126,2,14,0.86,23,0.14,2,14,0.66,23,0.34,2,14,0.5700000000000001,23,0.43,2,14,0.61,23,0.39,2,14,0.6900000000000001,23,0.31,2,14,0.8,23,0.2,3,14,0.8581267404226238,23,0.105566666279868,24,0.03630659329750824,3,14,0.4442233485972828,23,0.4111990789961843,24,0.14457757240653285,3,14,0.09784343027267269,23,0.5015334511734222,24,0.40062311855390514,3,14,0.48156349409569826,23,0.4690680515027993,24,0.04936845440150242,3,14,0.7453886444104462,23,0.2306314235621193,24,0.023979932027434505,2,23,0.77,24,0.23,2,23,0.7000000000000001,24,0.3],"transform":{"x":-53.6903,"skY":53.5352,"y":-36.7238,"skX":53.5352},"type":"mesh","width":153,"name":"动画/头发","height":94,"vertices":[76.5,-47,76.5,-36.8,76.5,-21.6,67.8,-1.85,46.55,6.3,4.15,7.2,-20.3,-2.7,-30.4,-11.05,-30.8,14.75,-41.85,47,-76.5,47,-76.5,5,-57.5,-27.9,-13.9,-44,14.8,-47,46.4,-37.8,15.28,-29.56,8.32,-6.9,46.83,-27.47,52.27,-8.98],"path":"动画/头发","triangles":[19,3,2,18,19,2,18,2,1,15,18,1,15,1,0,19,4,3,16,17,18,17,4,19,18,17,19,16,18,15,17,5,4,14,16,15,13,17,16,13,16,14,7,6,13,6,5,17,13,6,17,12,7,13,11,9,8,11,8,7,12,11,7,11,10,9],"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,0],"uvs":[1,0,1,0.10851,1,0.27021,0.94314,0.48032,0.80425,0.56702,0.52712,0.5766,0.36732,0.47128,0.30131,0.38245,0.29869,0.65691,0.22647,1,0,1,0,0.55319,0.12418,0.20319,0.40915,0.03191,0.59673,0,0.80327,0.09787,0.59985,0.18553,0.5544,0.42664,0.80609,0.20773,0.84162,0.40442]}]},{"name":"脖子","display":[{"name":"动画/脖子","transform":{"x":-502.0878,"skY":-0.0315,"y":94.9136,"skX":-0.0315},"type":"image","path":"动画/脖子"}]},{"name":"阴影","display":[{"name":"动画/阴影","transform":{"x":-516.0878,"skY":-0.0315,"y":273.4136,"skX":-0.0315},"type":"image","path":"动画/阴影"}]},{"name":"嘴","display":[{"name":"动画/嘴","height":25,"width":37,"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,0],"uvs":[1,0,0.86216,0,0.57838,0.184,0.17838,0.114,0,0.036,0,0.294,0,0.792,0,1,0.22297,1,0.51216,1,0.76216,0.6,0.87838,0.382,1,0.278,0.19762,0.61048,0.56113,0.61204],"transform":{"x":5.4321,"skY":89.4149,"y":2.6305,"skX":89.4149},"triangles":[1,11,12,1,12,0,1,2,11,2,10,11,14,9,10,2,14,10,13,9,14,13,14,2,3,13,2,13,8,9,6,7,8,6,8,13,3,5,13,5,6,13,4,5,3],"userEdges":[],"type":"mesh","path":"动画/嘴","vertices":[18.5,-12.5,13.4,-12.5,2.9,-7.9,-11.9,-9.65,-18.5,-11.6,-18.5,-5.15,-18.5,7.3,-18.5,12.5,-10.25,12.5,0.45,12.5,9.7,2.5,14,-2.95,18.5,-5.55,-11.19,2.76,2.26,2.8]},{"name":"动画/嘴2","transform":{"x":7.8789,"skY":89.4149,"y":-2.8934,"skX":89.4149},"type":"image","path":"动画/嘴2"}]},{"name":"右腿","display":[{"name":"动画/右腿","transform":{"x":-486.0878,"skY":-0.0315,"y":237.4136,"skX":-0.0315},"type":"image","path":"动画/右腿"}]},{"name":"左腿","display":[{"name":"动画/左腿","transform":{"x":-524.0878,"skY":0.0016,"y":243.5709,"skX":0.0016},"type":"image","path":"动画/左腿"}]},{"name":"左眼","display":[{"name":"动画/左眼","height":30,"width":28,"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,0],"uvs":[1,0.66667,1,0.45333,0.88214,0.20333,0.75357,0.05167,0.62143,0,0.44286,0,0.24286,0.00167,0.1,0.20167,0.07857,0.47333,0,0.50167,0,0.705,0.18214,0.69167,0.30714,0.965,0.45714,1,0.72857,0.835,0.31468,0.3832,0.64852,0.27961,0.44528,0.66477,0.78804,0.5495],"transform":{"x":-2.4928,"skY":-89.9531,"y":4.776,"skX":-89.9531},"triangles":[16,18,2,2,18,1,1,18,0,18,14,0,3,16,2,17,14,18,16,17,18,4,16,3,15,17,16,17,13,14,5,15,16,5,16,4,6,7,15,6,15,5,15,11,17,12,13,17,11,12,17,8,11,15,7,8,15,8,9,11,9,10,11],"userEdges":[],"type":"mesh","path":"动画/左眼","vertices":[15.31,6.5,15.31,0.1,12.01,-7.4,8.41,-11.95,4.71,-13.5,-0.29,-13.5,-5.89,-13.45,-9.89,-7.45,-10.49,0.7,-12.69,1.55,-12.69,7.65,-7.59,7.25,-4.09,15.45,0.11,16.5,7.71,11.55,-3.88,-2,5.47,-5.11,-0.22,6.44,9.38,2.99]}]},{"name":"右辫子","display":[{"name":"动画/右辫子","transform":{"x":17.8753,"skY":-60.2083,"y":-0.3832,"skX":-60.2083},"type":"image","path":"动画/右辫子"}]},{"name":"右边斗篷","display":[{"bonePose":[4,0.39986178829116625,0.9165754471207429,-0.9165754471207429,0.39986178829116625,40.787020814080336,1.5801965307490775,11,0.673738305776806,0.7389700232952608,-0.7389700232952608,0.673738305776806,61.29829364167342,47.22017557316364],"userEdges":[],"slotPose":[0.9999990262261613,0.0013955453158540632,-0.0013955453158545073,0.9999990262261611,64.97152849516556,35.27729712150505],"weights":[2,4,0.13090404038554224,11,0.8690959596144577,2,4,0.15025336464178374,11,0.8497466353582163,2,4,0.5738973310852873,11,0.4261026689147127,2,4,0.9575642922029992,11,0.04243570779700082,2,4,0.9513006642312988,11,0.04869933576870127,2,4,0.9375003617874896,11,0.06249963821251043,2,4,0.9698118914624984,11,0.030188108537501708,2,4,0.6498050166640033,11,0.35019498333599663,2,4,0.3913568471072575,11,0.6086431528927425,2,4,0.2516366991810475,11,0.7483633008189525,2,4,0.09605641213123235,11,0.9039435878687677,2,4,0.11692815483332596,11,0.8830718451666741,2,4,0.0715081408377697,11,0.9284918591622303,2,4,0.8716466430173262,11,0.12835335698267375],"transform":{"x":-6.3506,"skY":-47.5638,"y":-10.7608,"skX":-47.5638},"type":"mesh","width":68,"name":"动画/右边斗篷","height":96,"vertices":[34,29.5,18.3,17.6,3.75,-0.15,-15.25,-40.55,-26.5,-48,-34,-48,-34,-34.85,-34,2.3,-18.85,38.45,-5.4,48,11.9,48,34,39.4,-1.79,21.73,-16.42,0.55],"path":"动画/右边斗篷","triangles":[1,10,0,0,10,11,12,10,1,2,12,1,3,13,2,12,9,10,8,9,12,13,12,2,6,13,3,13,8,12,7,8,13,6,7,13,4,6,3,5,6,4],"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],"uvs":[1,0.80729,0.76912,0.68333,0.55515,0.49844,0.27574,0.0776,0.11029,0,0,0,0,0.13698,0,0.52396,0.22279,0.90052,0.42059,1,0.675,1,1,0.91042,0.47366,0.7263,0.25852,0.50568]}]},{"name":"右手","display":[{"bonePose":[6,0.6968455849048542,0.7172211868026563,-0.7172211868026563,0.6968455849048542,29.650000000000006,7.800000000000033,9,0.8655219238261121,-0.5008710406645055,0.5008710406645055,0.8655219238261121,57.100000000000016,28.750000000000043,21,0.7590975786407292,-0.650976855273504,0.650976855273504,0.7590975786407292,86.60000000000001,10.900000000000038],"userEdges":[],"slotPose":[0.9999996656697336,0.0008177165896745553,-0.0008177165896746663,0.9999996656697334,57.98080656042623,14.07927805686196],"weights":[3,6,0.017460299162192463,21,0.9327190152967717,9,0.04982068554103583,3,6,0.009796733405997857,21,0.9590871617506119,9,0.03111610484339034,3,6,0.04565300008019853,21,0.7870763705130539,9,0.1672706294067476,3,6,0.07745853731182116,21,0.5783165049845567,9,0.34422495770362216,3,6,0.04306910259621464,9,0.5173713923616393,21,0.4395595050421461,3,6,0.3244304691545194,9,0.6127779039709605,21,0.06279162687451992,3,6,0.8527465166581245,9,0.09789840220408393,21,0.049355081137791475,3,6,0.8228091591486342,9,0.11117400127412536,21,0.0660168395772405,3,6,0.7811302560186906,9,0.13777320404409055,21,0.08109653993721883,3,6,0.7411517146903149,9,0.16239737242367425,21,0.09645091288601089,3,6,0.7546276966725048,9,0.17092163234577779,21,0.0744506709817173,3,6,0.6803452034896762,9,0.2709192253765209,21,0.04873557113380286,3,6,0.3531975678087049,9,0.6106888792949063,21,0.03611355289638876,3,6,0.1994571254743176,9,0.7061066967106693,21,0.09443617781501312,3,6,0.03587542869686045,21,0.5710444763230579,9,0.3930800949800817,3,6,0.06368971665227394,21,0.6653028153843847,9,0.2710074679633414,3,6,0.014995324840578894,21,0.9310613440279365,9,0.053943331131484654,3,6,0.011408332491514154,21,0.9524055564257521,9,0.036186111082733896,3,6,0.00846976817910507,9,0.8320801473129621,21,0.1594500845079328,3,6,0.01545160346077864,9,0.9831893729230367,21,0.0013590236161847703,3,6,0.999949640922738,9,0.000038237513884292514,21,0.00001212156337777561,3,6,0.9983520115265799,9,0.001322623551716648,21,0.00032536492170336405],"transform":{"x":-23.7944,"skY":40.6621,"y":-16.2171,"skX":40.6621},"type":"mesh","width":106,"name":"动画/右手","height":48,"vertices":[53,-24,43.85,-24,31.05,-22.5,20.75,-17.1,18.35,-6.9,-0.7,3.45,-20.35,-15.4,-35.05,-24,-45.8,-24,-53,-24,-53,0.85,-25.15,19.4,-6.2,24,7.95,24,31.4,7.25,48.1,4.55,50.9,-11.25,53,-17.1,22.37,1.95,-1.97,15.42,-25.63,-3.21,-22.38,1.19],"path":"动画/右手","triangles":[1,16,17,1,17,0,1,2,16,14,15,16,2,14,16,18,14,2,4,18,2,3,4,2,18,13,14,5,19,13,4,5,18,5,13,18,19,12,13,21,19,5,6,21,5,11,12,19,21,11,19,20,21,6,7,20,6,20,10,11,20,11,21,7,8,20,8,10,20,9,10,8],"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,0],"uvs":[1,0,0.91368,0,0.79292,0.03125,0.69575,0.14375,0.67311,0.35625,0.4934,0.57188,0.30802,0.17917,0.16934,0,0.06792,0,0,0,0,0.51771,0.26274,0.90417,0.44151,1,0.575,1,0.79623,0.65104,0.95377,0.59479,0.98019,0.26563,1,0.14375,0.71105,0.54068,0.48143,0.8213,0.25818,0.43316,0.28887,0.52477]}]},{"name":"脸","display":[{"name":"动画/脸","transform":{"x":-34.4486,"skY":3.9423,"y":38.2659,"skX":3.9423},"type":"image","path":"动画/脸"}]},{"name":"衣服","display":[{"name":"动画/衣服","transform":{"x":18.6,"skY":89.9685,"y":-14.1,"skX":89.9685},"type":"image","path":"动画/衣服"}]},{"name":"鼻子","display":[{"name":"动画/鼻子","transform":{"x":-2.1118,"skY":95.6546,"y":-1.083,"skX":95.6546},"type":"image","path":"动画/鼻子"}]},{"name":"左手","display":[{"bonePose":[7,0.033095967077348,0.9994521784273693,-0.9994521784273693,0.033095967077348,-33.797117842710975,31.658655571494165,10,0.31584563998287923,0.9488105878961326,-0.9488105878961326,0.31584563998287923,-29.605033192938567,76.80959907228403],"userEdges":[],"slotPose":[0.9999990262261629,0.0013955453145261254,-0.001395545314526181,0.9999990262261631,-29.08152970439635,59.617590323193596],"weights":[2,7,0.9308464294750768,10,0.06915357052492317,2,7,0.961232361690046,10,0.038767638309953986,2,7,0.9385515605597233,10,0.06144843944027664,2,7,0.8968244132191138,10,0.10317558678088627,2,7,0.8700962939886601,10,0.12990370601133996,2,7,0.8796575985044112,10,0.12034240149558889,2,7,0.8353279021604825,10,0.16467209783951747,2,7,0.402071227362104,10,0.597928772637896,2,7,0.2554886046705582,10,0.7445113953294419,2,7,0.09514165872671135,10,0.9048583412732886,2,7,0.06173692636044981,10,0.9382630736395502,2,7,0.03801082207422014,10,0.9619891779257799,2,7,0.06642903430072251,10,0.9335709656992776,2,7,0.08601658601049872,10,0.9139834139895012,2,7,0.05417205896757458,10,0.9458279410324255,2,7,0.09376400557508249,10,0.9062359944249175,2,7,0.1636843934826875,10,0.8363156065173125,2,7,0.2533009177379161,10,0.746699082262084,2,7,0.7602386629532193,10,0.23976133704678065,2,7,0.24213275374256912,10,0.7578672462574308,2,7,0.9820427180557406,10,0.017957281944259374],"transform":{"x":-16.1466,"skY":-71.5082,"y":-5.9267,"skX":-71.5082},"type":"mesh","width":28,"name":"动画/左手","height":85,"vertices":[-14,-15.6,-14,-32.65,-0.1,-42.5,9.75,-42.5,14,-42.5,14,-34.9,7.3,-7.1,6.55,9.1,14,16.75,14,27.75,14,33.5,11.5,32.35,14,37.85,14,42.5,5.25,42.5,-4.1,42.5,-10.45,33,-10.55,16.9,-14,3.9,-2.25,11.49,-0.38,-10.72],"path":"动画/左手","triangles":[19,11,9,1,20,5,2,1,5,20,6,5,3,2,5,19,9,8,7,19,8,11,14,12,12,14,13,3,5,4,9,11,10,19,17,11,17,16,11,15,14,11,16,15,11,1,0,20,19,7,6,20,19,6,18,19,20,0,18,20,18,17,19],"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],"uvs":[0,0.31647,0,0.11588,0.49643,0,0.84821,0,1,0,1,0.08941,0.76071,0.41647,0.73393,0.60706,1,0.69706,1,0.82647,1,0.89412,0.91071,0.88059,1,0.94529,1,1,0.6875,1,0.35357,1,0.12679,0.88824,0.12321,0.69882,0,0.54588,0.41956,0.63512,0.48631,0.37392]}]},{"name":"眉毛","display":[{"name":"动画/眉毛","transform":{"x":-0.4176,"skY":-179.9531,"y":-0.1891,"skX":-179.9531},"type":"image","path":"动画/眉毛"}]},{"name":"领结","display":[{"name":"动画/领结","transform":{"x":6.804,"skY":90.6865,"y":-4.2651,"skX":90.6865},"type":"image","path":"动画/领结"}]},{"name":"帽子","display":[{"name":"动画/帽子","transform":{"x":-31.7085,"skY":115.9849,"y":-15.8223,"skX":115.9849},"type":"image","path":"动画/帽子"}]},{"name":"右眼","display":[{"name":"动画/右眼","height":23,"width":21,"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,0],"uvs":[0.99048,0.38261,0.84286,0.31304,0.73571,0.10652,0.52381,0,0.25952,0,0.0381,0.18478,0,0.43261,0,0.79348,0,0.98043,0.41667,0.98261,0.87619,1,0.90476,0.79348,0.92143,0.57174,1,0.51957,0.26473,0.37867,0.68128,0.41458,0.21119,0.73287,0.66579,0.78411],"transform":{"x":0.7291,"skY":159.2733,"y":1.0873,"skX":159.2733},"triangles":[12,13,0,1,12,0,1,15,12,15,17,12,12,17,11,17,10,11,17,9,10,2,15,1,14,16,15,3,14,15,15,16,17,3,15,2,16,9,17,4,14,3,4,5,14,16,8,9,7,8,16,6,16,14,5,6,14,6,7,16],"userEdges":[],"type":"mesh","path":"动画/右眼","vertices":[10.5,-2.8,7.2,-4.3,4.95,-9.05,0.5,-11.5,-5.05,-11.5,-9.7,-7.25,-10.5,-1.55,-10.5,6.75,-10.5,11.05,-1.75,11.1,7.9,11.5,8.5,6.75,8.85,1.65,10.5,0.45,-4.94,-2.79,3.81,-1.96,-6.07,5.36,3.48,6.53]}]},{"name":"左边斗篷","display":[{"bonePose":[3,-0.505740922683447,0.8626854114468929,-0.8626854114468929,-0.505740922683447,-18.29905849700277,-5.634734629310202,8,-0.758732364557893,0.6514024861576655,-0.6514024861576655,-0.758732364557893,-39.88342722628748,37.723367572680566,22,-0.9835199159428145,0.18079982008795853,-0.18079982008795853,-0.9835199159428145,-73.79064100664179,67.1074764353524],"userEdges":[],"slotPose":[0.9999999793368219,0.0002032888456565407,-0.0002032888456565407,0.9999999793368219,-48.52436700251197,33.05655283630398],"weights":[3,3,0.8919344888461586,8,0.07827727669028982,22,0.02978823446355159,3,3,0.8684249176918293,8,0.09612130735901932,22,0.03545377494915154,3,3,0.5425687655439475,8,0.3538072165556233,22,0.10362401790042919,3,3,0.06541826395637475,22,0.49750961606471356,8,0.4370721199789117,3,3,0.01840980214798288,22,0.9063341903282874,8,0.07525600752372961,3,3,0.009148677547437442,22,0.9530214163983189,8,0.037829906054243585,3,3,0.03736246954127011,22,0.803129214950564,8,0.15950831550816577,3,3,0.05843652479786777,22,0.6220689625727488,8,0.3194945126293835,3,3,0.15134850925820775,8,0.437137241490549,22,0.4115142492512433,3,3,0.3322269701835201,8,0.5321037476681638,22,0.13566928214831617,3,3,0.72881413513876,8,0.22590364781277794,22,0.045282217048461984,3,3,0.8420716585685178,8,0.11806577828674088,22,0.03986256314474132,3,3,0.825530088778782,8,0.1245162327530957,22,0.0499536784681223,3,3,0.8334591922368632,8,0.14525493215529633,22,0.021285875607840503,3,3,0.8399373792455769,8,0.14190877801276214,22,0.018153842741660976,3,3,0.02465939745035533,8,0.877785862105365,22,0.09755474044427964,3,3,0.1248005468488302,8,0.7793088723000899,22,0.0958905808510798,3,3,0.014781068927274625,22,0.8211112707257453,8,0.16410766034698016],"transform":{"x":-31.0063,"skY":-169.572,"y":28.9216,"skX":-169.572},"type":"mesh","width":107,"name":"动画/左边斗篷","height":114,"vertices":[39.2,-57,18,-54.4,-9,-20.75,-33.85,15.45,-53.5,29,-53.05,43.9,-43.75,57.05,-20.7,57.05,9.2,57.05,33.55,21.95,39.35,-14.45,53.5,-38.4,53.5,-57,7.22,-19.16,26.77,-12.51,-15.37,16.4,9.48,21.09,-23.27,42.6],"path":"动画/左边斗篷","triangles":[14,9,10,0,1,11,1,10,11,12,0,11,1,13,14,14,16,9,16,8,9,1,14,10,13,16,14,2,15,13,13,15,16,16,17,8,2,13,1,15,17,16,17,7,8,3,15,2,3,17,15,3,4,17,17,6,7,5,6,17,4,5,17],"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,0],"uvs":[0.86636,0,0.66822,0.02281,0.41589,0.31798,0.18364,0.63553,0,0.75439,0.00421,0.88509,0.09112,1.00044,0.30654,1.00044,0.58598,1.00044,0.81355,0.69254,0.86776,0.37325,1,0.16316,1,0,0.56748,0.33195,0.7502,0.39025,0.35633,0.64383,0.58859,0.68501,0.28255,0.87367]}]}]}],"frameRate":24,"canvas":{"x":0,"height":750,"y":0,"width":1334},"type":"Armature"}],"frameRate":24,"isGlobal":0}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "ed12615d-9b16-4dc3-953c-6b364b860dd3",
"subMetas": {}
}
\ No newline at end of file
{
"name": "girl",
"imagePath": "girl_tex.png",
"SubTexture": [
{ "name": "动画/阴影", "x": 1, "height": 51, "y": 236, "width": 200 },
{ "name": "动画/右腿", "x": 1, "height": 93, "y": 289, "width": 50 },
{ "name": "动画/左腿", "x": 53, "height": 93, "y": 289, "width": 50 },
{ "name": "动画/右辫子", "x": 470, "height": 70, "y": 1, "width": 35 },
{ "name": "动画/右边斗篷", "x": 203, "height": 96, "y": 236, "width": 68 },
{ "name": "动画/右手", "x": 1, "height": 48, "y": 167, "width": 106 },
{ "name": "动画/衣服", "x": 189, "height": 137, "y": 1, "width": 170 },
{ "name": "动画/脖子", "x": 162, "height": 16, "y": 215, "width": 20 },
{ "name": "动画/左手", "x": 158, "height": 85, "y": 289, "width": 28 },
{ "name": "动画/左边斗篷", "x": 361, "height": 114, "y": 1, "width": 107 },
{ "name": "动画/领结", "x": 109, "height": 48, "y": 167, "width": 51 },
{ "name": "动画/帽子", "x": 1, "height": 164, "y": 1, "width": 186 },
{ "name": "动画/左辫子", "x": 105, "height": 81, "y": 289, "width": 51 },
{ "name": "动画/脸", "x": 344, "height": 94, "y": 140, "width": 130 },
{ "name": "动画/右眼", "x": 162, "height": 23, "y": 167, "width": 21 },
{ "name": "动画/头发", "x": 189, "height": 94, "y": 140, "width": 153 },
{ "name": "动画/左眼", "x": 470, "height": 30, "y": 100, "width": 28 },
{ "name": "动画/眉毛", "x": 180, "height": 6, "y": 192, "width": 6 },
{ "name": "动画/嘴2", "x": 361, "height": 8, "y": 117, "width": 34 },
{ "name": "动画/嘴", "x": 470, "height": 25, "y": 73, "width": 37 },
{ "name": "动画/鼻子", "x": 162, "height": 21, "y": 192, "width": 16 }
],
"height": 512,
"width": 512
}
{
"ver": "1.0.1",
"uuid": "cae7e608-ff60-449e-b03d-905f0c219a2a",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "44ccdf0e-e062-4254-b4a8-60d2de4245bd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"girl_tex": {
"ver": "1.0.4",
"uuid": "8fb47a1d-f573-4f15-a186-929b88a19ee2",
"rawTextureUuid": "44ccdf0e-e062-4254-b4a8-60d2de4245bd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -2,
"offsetY": 64.5,
"trimX": 1,
"trimY": 1,
"width": 506,
"height": 381,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "1.1.0", "ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1", "uuid": "51d3d342-1e32-4cb7-81b1-b845b7056ad4",
"subMetas": {} "subMetas": {}
} }
\ No newline at end of file
...@@ -75,22 +75,34 @@ ...@@ -75,22 +75,34 @@
"__id__": 5 "__id__": 5
}, },
{ {
"__id__": 7 "__id__": 11
}, },
{ {
"__id__": 14 "__id__": 14
},
{
"__id__": 18
},
{
"__id__": 54
},
{
"__id__": 56
},
{
"__id__": 59
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 24 "__id__": 67
}, },
{ {
"__id__": 25 "__id__": 68
}, },
{ {
"__id__": 26 "__id__": 69
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -104,8 +116,8 @@ ...@@ -104,8 +116,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 1334,
"height": 720 "height": 750
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -116,8 +128,8 @@ ...@@ -116,8 +128,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
640, 667,
360, 375,
0, 0,
0, 0,
0, 0,
...@@ -246,13 +258,16 @@ ...@@ -246,13 +258,16 @@
"_parent": { "_parent": {
"__id__": 2 "__id__": 2
}, },
"_children": [], "_children": [
"_active": true,
"_components": [
{ {
"__id__": 6 "__id__": 6
},
{
"__id__": 9
} }
], ],
"_active": true,
"_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -264,8 +279,8 @@ ...@@ -264,8 +279,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 1334,
"height": 720 "height": 750
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -301,12 +316,77 @@ ...@@ -301,12 +316,77 @@
"groupIndex": 0, "groupIndex": 0,
"_id": "32MJMZ2HRGF4BOf533Avyi" "_id": "32MJMZ2HRGF4BOf533Avyi"
}, },
{
"__type__": "cc.Node",
"_name": "sky",
"_objFlags": 0,
"_parent": {
"__id__": 5
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 7
},
{
"__id__": 8
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1334,
"height": 596
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
77,
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": "c2rvSzitZMHp0WOtEptkdE"
},
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 5 "__id__": 6
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -317,7 +397,7 @@ ...@@ -317,7 +397,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "8288e3d4-4c75-4b27-8f01-f7014417f4dd" "__uuid__": "10124f6f-7a00-46a6-af19-5d73e95b4c17"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -331,25 +411,49 @@ ...@@ -331,25 +411,49 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "97/S6HDq9MeqgmV1Zwnhbb" "_id": "57YNKDcitAD5Y5/0KWJNOU"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 6
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 41,
"_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": 1334,
"_originalHeight": 0,
"_id": "48vt4fp7xIxbWOvY+pUvpt"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "bottomPart", "_name": "bg",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 5
}, },
"_children": [ "_children": [],
{ "_active": true,
"__id__": 8 "_components": [
},
{ {
"__id__": 11 "__id__": 10
} }
], ],
"_active": true,
"_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -361,8 +465,8 @@ ...@@ -361,8 +465,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 1334,
"height": 0 "height": 750
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -373,8 +477,8 @@ ...@@ -373,8 +477,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
635.132, 0,
-356.326, 0,
0, 0,
0, 0,
0, 0,
...@@ -396,23 +500,55 @@ ...@@ -396,23 +500,55 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "8c7k8ep/ZFNpO263+1QHz9" "_id": "e0d3XqS9tLp6SM93OFSsqY"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 9
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 1,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "78e96401-706a-4725-8936-c0e3064d41ec"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "c8cTMFjWJD+YA6Dle5NODW"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "btn_left", "_name": "bg_tree",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 2
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 9 "__id__": 12
}, },
{ {
"__id__": 10 "__id__": 13
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -426,8 +562,8 @@ ...@@ -426,8 +562,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 61, "width": 862,
"height": 67 "height": 573
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -438,8 +574,8 @@ ...@@ -438,8 +574,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-148.464, -236,
34, 88.5,
0, 0,
0, 0,
0, 0,
...@@ -450,25 +586,1812 @@ ...@@ -450,25 +586,1812 @@
1 1
] ]
}, },
"_eulerAngles": { "_eulerAngles": {
"__type__": "cc.Vec3", "__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "bfpEOTKoxJBoTYRgSAR73g"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 11
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "92c53c99-f66e-4d69-8d15-1239166580b3"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "6932UCm+FFAq2y7APDRhzM"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 11
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_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": "b8bm+BxRFLWqy4X/oYpL3d"
},
{
"__type__": "cc.Node",
"_name": "left_up",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 15
}
],
"_active": true,
"_components": [
{
"__id__": 17
}
],
"_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": [
-667,
375,
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": "1dJc8xExdA2bPbBnEv+zu0"
},
{
"__type__": "cc.Node",
"_name": "title",
"_objFlags": 0,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 16
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 219,
"height": 109
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
249.179,
-54.5,
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": "513nkKZhhE742kmlhxPw5B"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 15
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "128221d5-ec72-48e1-b297-24890918bbae"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "dctYBKvFJFoq9E0xtphnnR"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 14
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_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": "32CL36RgtARZAA3szu6lys"
},
{
"__type__": "cc.Node",
"_name": "dev",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 19
},
{
"__id__": 27
},
{
"__id__": 36
},
{
"__id__": 45
}
],
"_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,
-15,
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": "c9qth6Xf1G+5oADQHE34mj"
},
{
"__type__": "cc.Node",
"_name": "video",
"_objFlags": 0,
"_parent": {
"__id__": 18
},
"_children": [
{
"__id__": 20
},
{
"__id__": 22
}
],
"_active": true,
"_components": [
{
"__id__": 24
},
{
"__id__": 25
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 467,
"height": 471
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-194,
11,
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": "7d+8tNostOcaWQrnQGMH9G"
},
{
"__type__": "cc.Node",
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 19
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 21
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 36
},
"_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": "510YRSw0hN+pa+hJ3IPd79"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 20
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "8a/KoOpFdK351fl70Rcjxn"
},
{
"__type__": "cc.Node",
"_name": "play",
"_objFlags": 0,
"_parent": {
"__id__": 19
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 23
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 117,
"height": 117
},
"_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": "77HQHzKFhOgrMDzhWqLOzA"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 22
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "ae733cde-872d-4049-bb09-1ddbe750c95d"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "33JraWcQ1IHae+4NvsV3Mw"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 19
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9da57643-8aa5-4e52-aee5-ac4f1eb9baaa"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "ba0x+MVB9PHo13Uc96cVVt"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 19
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [
{
"__id__": 26
}
],
"_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": {
"__id__": 19
},
"_id": "28i04sr8ZGuLsoOoeiwqNG"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 2
},
"component": "",
"_componentId": "408a6f4ZfpM8Yzyg+IOGg/V",
"handler": "onCallBack",
"customEventData": "0"
},
{
"__type__": "cc.Node",
"_name": "game_1",
"_objFlags": 0,
"_parent": {
"__id__": 18
},
"_children": [
{
"__id__": 28
},
{
"__id__": 30
}
],
"_active": true,
"_components": [
{
"__id__": 33
},
{
"__id__": 34
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 229,
"height": 233
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
194,
131,
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": "19wmj2f+NJjoh5IRKZ9/77"
},
{
"__type__": "cc.Node",
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 27
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 29
}
],
"_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": "ad0OAYo3tM1KwfBzfqngrz"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 28
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "94KZvYyHJAo7xrLIBnmQN8"
},
{
"__type__": "cc.Node",
"_name": "done",
"_objFlags": 0,
"_parent": {
"__id__": 27
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 31
},
{
"__id__": 32
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 107,
"height": 53
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
56,
96,
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": "b1sdbNo4BAo6SLqyxq/NKB"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 30
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "857d465a-22fd-44d4-8a4d-9d4bde0dd7db"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "33Xf4042ZASZO8j3nuJ3Lo"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 30
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 33,
"_left": 0,
"_right": 5,
"_top": -6,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "6envkJhWRNeYGD2jZnf2Ta"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 27
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "7bcc24d9-8535-4a3f-911e-40c028be3a66"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "f7CCBYTx9BoI0p0zgeQdF3"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 27
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [
{
"__id__": 35
}
],
"_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": {
"__id__": 27
},
"_id": "960ryWfAtDTYGQhpjO5+Ii"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 2
},
"component": "",
"_componentId": "408a6f4ZfpM8Yzyg+IOGg/V",
"handler": "onCallBack",
"customEventData": "1"
},
{
"__type__": "cc.Node",
"_name": "game_2",
"_objFlags": 0,
"_parent": {
"__id__": 18
},
"_children": [
{
"__id__": 37
},
{
"__id__": 39
}
],
"_active": true,
"_components": [
{
"__id__": 42
},
{
"__id__": 43
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 229,
"height": 233
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
438,
131,
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": "42C3nJ35FOcLAXqSLy0g8B"
},
{
"__type__": "cc.Node",
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 36
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 38
}
],
"_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": "c2XcJbg8VIsYSWKjlp36UY"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 37
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "3a/Bzh/KdMpKvg+thrIbVO"
},
{
"__type__": "cc.Node",
"_name": "done",
"_objFlags": 0,
"_parent": {
"__id__": 36
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 40
},
{
"__id__": 41
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 107,
"height": 53
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
56,
96,
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": "f6PMCEkTVIO7kwH8iZnCxo"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 39
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "857d465a-22fd-44d4-8a4d-9d4bde0dd7db"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "a0gM+pNQVDEZHDcrr1SDFe"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 39
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 33,
"_left": 0,
"_right": 5,
"_top": -6,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "be9h3CWhJDboI3yJFt15cQ"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 36
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "7bcc24d9-8535-4a3f-911e-40c028be3a66"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "b1Tf2/cq9IxqFP0iFDXogY"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 36
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [
{
"__id__": 44
}
],
"_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": {
"__id__": 36
},
"_id": "f2PyHUKu1PrIFtyGRT6Xt2"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 2
},
"component": "",
"_componentId": "408a6f4ZfpM8Yzyg+IOGg/V",
"handler": "onCallBack",
"customEventData": "2"
},
{
"__type__": "cc.Node",
"_name": "read",
"_objFlags": 0,
"_parent": {
"__id__": 18
},
"_children": [
{
"__id__": 46
},
{
"__id__": 48
}
],
"_active": true,
"_components": [
{
"__id__": 51
},
{
"__id__": 52
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 473,
"height": 235
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
316,
-107,
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": "a3x/tZBCdAEajzsLdF3r7U"
},
{
"__type__": "cc.Node",
"_name": "img",
"_objFlags": 0,
"_parent": {
"__id__": 45
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 47
}
],
"_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": "78s0Xus2tJMqgIZf2xSqD3"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 46
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "06R0atAdxETbvrrV3gahBs"
},
{
"__type__": "cc.Node",
"_name": "done",
"_objFlags": 0,
"_parent": {
"__id__": 45
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 49
},
{
"__id__": 50
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 107,
"height": 53
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
178,
97,
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": "22K/QSZpdHJoUbaU45Y7hW"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 48
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "857d465a-22fd-44d4-8a4d-9d4bde0dd7db"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0, "x": 0,
"y": 0, "y": 0
"z": 0
}, },
"_skewX": 0, "_fillStart": 0,
"_skewY": 0, "_fillRange": 0,
"_is3DNode": false, "_isTrimmedMode": true,
"_groupIndex": 0, "_atlas": null,
"groupIndex": 0, "_id": "7fw/AxgptBb63bF3QLCLsf"
"_id": "5ad2wLQLxIN5Eg7OHecSH6" },
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 48
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 33,
"_left": 0,
"_right": 5,
"_top": -6,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "b7fmmMuoRD0oDbFAtMfR/G"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "cc.Sprite",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 8 "__id__": 45
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -479,7 +2402,7 @@ ...@@ -479,7 +2402,7 @@
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": {
"__uuid__": "ce19457d-e8f3-4c38-ae3e-d4b99208ddb5" "__uuid__": "40ba29ea-4403-4c50-9344-be3885c27aad"
}, },
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
...@@ -493,21 +2416,25 @@ ...@@ -493,21 +2416,25 @@
"_fillRange": 0, "_fillRange": 0,
"_isTrimmedMode": true, "_isTrimmedMode": true,
"_atlas": null, "_atlas": null,
"_id": "84mqOgJ3JNqZrYVTEU8CjE" "_id": "08Z2WfC0NEgY2Jl23MmuLj"
}, },
{ {
"__type__": "cc.Button", "__type__": "cc.Button",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 8 "__id__": 45
}, },
"_enabled": true, "_enabled": true,
"_normalMaterial": null, "_normalMaterial": null,
"_grayMaterial": null, "_grayMaterial": null,
"duration": 0.1, "duration": 0.1,
"zoomScale": 1.2, "zoomScale": 1.2,
"clickEvents": [], "clickEvents": [
{
"__id__": 53
}
],
"_N$interactable": true, "_N$interactable": true,
"_N$enableAutoGrayEffect": false, "_N$enableAutoGrayEffect": false,
"_N$transition": 0, "_N$transition": 0,
...@@ -560,24 +2487,33 @@ ...@@ -560,24 +2487,33 @@
"_N$hoverSprite": null, "_N$hoverSprite": null,
"hoverSprite": null, "hoverSprite": null,
"_N$disabledSprite": null, "_N$disabledSprite": null,
"_N$target": null, "_N$target": {
"_id": "bcYN/4EKBJhbIAfovo9Ah1" "__id__": 45
},
"_id": "319dDC08VHmbRD1FD9dBtp"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 2
},
"component": "",
"_componentId": "408a6f4ZfpM8Yzyg+IOGg/V",
"handler": "onCallBack",
"customEventData": "3"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "btn_right", "_name": "girl_ske",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 7 "__id__": 2
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 12 "__id__": 55
},
{
"__id__": 13
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -591,8 +2527,8 @@ ...@@ -591,8 +2527,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 60, "width": 221.46240869662427,
"height": 66 "height": 374.0229914711643
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -603,8 +2539,8 @@ ...@@ -603,8 +2539,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
-47.164, 0,
34, 0,
0, 0,
0, 0,
0, 0,
...@@ -626,14 +2562,14 @@ ...@@ -626,14 +2562,14 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "46i3stdzpHX6zQHTGnRsNE" "_id": "30vcrqutFLw4k99Yj7JpMu"
}, },
{ {
"__type__": "cc.Sprite", "__type__": "dragonBones.ArmatureDisplay",
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 11 "__id__": 54
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
...@@ -641,113 +2577,50 @@ ...@@ -641,113 +2577,50 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
} }
], ],
"_srcBlendFactor": 770, "_armatureName": "Armature",
"_dstBlendFactor": 771, "_animationName": "",
"_spriteFrame": { "_preCacheMode": 0,
"__uuid__": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59" "_cacheMode": 0,
}, "playTimes": -1,
"_type": 0, "premultipliedAlpha": false,
"_sizeMode": 1, "_armatureKey": "ed12615d-9b16-4dc3-953c-6b364b860dd3#cae7e608-ff60-449e-b03d-905f0c219a2a",
"_fillType": 0, "_accTime": 0,
"_fillCenter": { "_playCount": 0,
"__type__": "cc.Vec2", "_frameCache": null,
"x": 0, "_curFrame": null,
"y": 0 "_playing": false,
}, "_armatureCache": null,
"_fillStart": 0, "_N$dragonAsset": {
"_fillRange": 0, "__uuid__": "ed12615d-9b16-4dc3-953c-6b364b860dd3"
"_isTrimmedMode": true, },
"_atlas": null, "_N$dragonAtlasAsset": {
"_id": "42Sh8QS/BHn4WiGyPQPKPt" "__uuid__": "cae7e608-ff60-449e-b03d-905f0c219a2a"
}, },
{ "_N$_defaultArmatureIndex": 0,
"__type__": "cc.Button", "_N$_animationIndex": 0,
"_name": "", "_N$_defaultCacheMode": 0,
"_objFlags": 0, "_N$timeScale": 1,
"node": { "_N$debugBones": false,
"__id__": 11 "_N$enableBatch": false,
}, "_id": "b1g4plb8BD1JnQk/cg28eu"
"_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": "1aj32fYY1IxLesa77E70Qu"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "res", "_name": "bg_front",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 2
}, },
"_children": [ "_children": [],
{ "_active": true,
"__id__": 15 "_components": [
},
{ {
"__id__": 18 "__id__": 57
}, },
{ {
"__id__": 21 "__id__": 58
} }
], ],
"_active": false,
"_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -759,8 +2632,8 @@ ...@@ -759,8 +2632,8 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 0, "width": 1334,
"height": 0 "height": 142
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
...@@ -772,7 +2645,7 @@ ...@@ -772,7 +2645,7 @@
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 0,
0, -304,
0, 0,
0, 0,
0, 0,
...@@ -794,21 +2667,86 @@ ...@@ -794,21 +2667,86 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "0aAzbH6R1E+6AmGRrkKa5O" "_id": "ffCeChgxNHRJRgOs8bSUAE"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 56
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "8bb99d69-7e17-4785-a195-0147c2957475"
},
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "45F8tpJX9N84UPe5M2A6w2"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 56
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 44,
"_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": 1334,
"_originalHeight": 0,
"_id": "c131Fz0IhG+qLa9Wg8mj96"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "font", "_name": "res",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 14 "__id__": 2
}, },
"_children": [ "_children": [
{ {
"__id__": 16 "__id__": 60
},
{
"__id__": 61
},
{
"__id__": 64
} }
], ],
"_active": true, "_active": false,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
...@@ -856,22 +2794,18 @@ ...@@ -856,22 +2794,18 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "9bLfcYeeNKrr524vzWchiM" "_id": "0aAzbH6R1E+6AmGRrkKa5O"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "BRLNSDB", "_name": "font",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 15 "__id__": 59
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [],
{
"__id__": 17
}
],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
...@@ -918,49 +2852,18 @@ ...@@ -918,49 +2852,18 @@
"_is3DNode": false, "_is3DNode": false,
"_groupIndex": 0, "_groupIndex": 0,
"groupIndex": 0, "groupIndex": 0,
"_id": "cfMLGsq0BMhJARv+ySMAxS" "_id": "9bLfcYeeNKrr524vzWchiM"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 16
},
"_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",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "9bNHNPu5lC7rQYyr8ai/sY"
}, },
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "img", "_name": "img",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 14 "__id__": 59
}, },
"_children": [ "_children": [
{ {
"__id__": 19 "__id__": 62
} }
], ],
"_active": true, "_active": true,
...@@ -1018,13 +2921,13 @@ ...@@ -1018,13 +2921,13 @@
"_name": "icon", "_name": "icon",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 18 "__id__": 61
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 20 "__id__": 63
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -1080,15 +2983,13 @@ ...@@ -1080,15 +2983,13 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 19 "__id__": 62
}, },
"_enabled": true, "_enabled": true,
"_materials": [], "_materials": [],
"_srcBlendFactor": 770, "_srcBlendFactor": 770,
"_dstBlendFactor": 771, "_dstBlendFactor": 771,
"_spriteFrame": { "_spriteFrame": null,
"__uuid__": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a"
},
"_type": 0, "_type": 0,
"_sizeMode": 1, "_sizeMode": 1,
"_fillType": 0, "_fillType": 0,
...@@ -1108,11 +3009,11 @@ ...@@ -1108,11 +3009,11 @@
"_name": "audio", "_name": "audio",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 14 "__id__": 59
}, },
"_children": [ "_children": [
{ {
"__id__": 22 "__id__": 65
} }
], ],
"_active": true, "_active": true,
...@@ -1170,13 +3071,13 @@ ...@@ -1170,13 +3071,13 @@
"_name": "btn", "_name": "btn",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 21 "__id__": 64
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 23 "__id__": 66
} }
], ],
"_prefab": null, "_prefab": null,
...@@ -1232,7 +3133,7 @@ ...@@ -1232,7 +3133,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 22 "__id__": 65
}, },
"_enabled": true, "_enabled": true,
"_clip": { "_clip": {
...@@ -1243,7 +3144,7 @@ ...@@ -1243,7 +3144,7 @@
"_loop": false, "_loop": false,
"_firstlyEnabled": true, "_firstlyEnabled": true,
"playOnLoad": false, "playOnLoad": false,
"preload": false, "preload": true,
"_id": "dey05oKrBIspvsDa6pOIQz" "_id": "dey05oKrBIspvsDa6pOIQz"
}, },
{ {
...@@ -1256,8 +3157,8 @@ ...@@ -1256,8 +3157,8 @@
"_enabled": true, "_enabled": true,
"_designResolution": { "_designResolution": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1280, "width": 1334,
"height": 720 "height": 750
}, },
"_fitWidth": true, "_fitWidth": true,
"_fitHeight": true, "_fitHeight": true,
......
/*
* @Author: ls
* @Date: 2022-04-14 19:58:47
* @LastEditors: ls
* @LastEditTime: 2022-04-16 16:16:39
* @Description: file content
* @FilePath: \ls_activity_before\assets\ls_activity_before\scene\ls_activity_before.ts
*/
import { MyCocosSceneComponent } from '../script/MyCocosSceneComponent';
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
for (let index = 0; index < this.data.gameInfo.length; index++) {
this._imageResList.push({ url: this.data.gameInfo[index].img });
}
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio });
}
addPreloadAnima() {}
onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_content = null;
initData() {
// 所有全局变量 默认都是null
this._content = [];
}
initView() {
this.initBg();
let dev = cc.find('Canvas/dev');
for (let index = 0; index < dev.children.length; index++) {
const element = dev.children[index];
if (this.data.gameInfo[index].img !== '') {
this.getSpriteFrimeByUrl(this.data.gameInfo[index].img, (sp) => {
cc.find('img', element).getComponent(cc.Sprite).spriteFrame = sp;
});
}
if (this.data.gameInfo[index].icon > 0) {
cc.find('done', element).active = true;
} else if (this.data.gameInfo[index].icon < 0) {
cc.find('done', element).active = false;
}
}
if (this.data.audio && this.data.audio !== '') {
let girl_ske = cc.find('Canvas/girl_ske').getComponent(dragonBones.ArmatureDisplay);
girl_ske.playAnimation('speak', 0);
this.playAudioByUrl(this.data.audio, () => {
girl_ske.playAnimation('normal', 0);
});
} else {
let girl_ske = cc.find('Canvas/girl_ske').getComponent(dragonBones.ArmatureDisplay);
girl_ske.playAnimation('normal', 0);
}
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
initListener() {}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
});
}
onCallBack(event, str) {
this.playLocalAudio('btn');
// TODO
if (str === '0') {
} else if (str === '1') {
} else if (str === '2') {
} else if (str === '3') {
}
}
}
/*
* @Author: ls
* @Date: 2022-04-14 19:58:47
* @LastEditors: ls
* @LastEditTime: 2022-04-16 16:13:29
* @Description: file content
* @FilePath: \ls_activity_before\assets\ls_activity_before\script\defaultData.ts
*/
export const defaultData = {
title: '活动前',
audio: 'http://staging-teach.cdn.ireadabc.com/c08af4f22c71ad8b3d8786a837787ac9.mp3',
gameInfo: [
{
id: 10001,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: 0,
},
{
id: 10002,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
{
id: 10003,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
{
id: 10004,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
{
id: 10005,
img: 'http://staging-teach.cdn.ireadabc.com/0d332cb2b167feb4204b1d77a6f02ed6.jpg',
icon: -1,
},
],
};
{
"ver": "1.1.2",
"uuid": "bb834f46-31a8-4de9-a0f3-f1186386475a",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "57c0d2e9-25bd-4ec2-adf5-75af8e7f0a77",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": true,
"genMipmaps": false,
"packable": false,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"bg_bg": {
"ver": "1.0.4",
"uuid": "78e96401-706a-4725-8936-c0e3064d41ec",
"rawTextureUuid": "57c0d2e9-25bd-4ec2-adf5-75af8e7f0a77",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 750,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "4b37b579-6a5c-4849-b312-4dd555d93446",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 142,
"platformSettings": {},
"subMetas": {
"bg_front": {
"ver": "1.0.4",
"uuid": "8bb99d69-7e17-4785-a195-0147c2957475",
"rawTextureUuid": "4b37b579-6a5c-4849-b312-4dd555d93446",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 142,
"rawWidth": 1334,
"rawHeight": 142,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "18d07592-51a9-421e-8972-0f67b68d29e1", "uuid": "324f7bb0-46b1-4dcb-86cc-011e72560720",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 144, "width": 412,
"height": 144, "height": 503,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon": { "bg_pic": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a", "uuid": "1af89af0-006b-420d-9fba-8c8c3e547269",
"rawTextureUuid": "18d07592-51a9-421e-8972-0f67b68d29e1", "rawTextureUuid": "324f7bb0-46b1-4dcb-86cc-011e72560720",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -1,
"offsetY": -0.5, "offsetY": -1,
"trimX": 3, "trimX": 0,
"trimY": 2, "trimY": 2,
"width": 138, "width": 410,
"height": 141, "height": 501,
"rawWidth": 144, "rawWidth": 412,
"rawHeight": 144, "rawHeight": 503,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f", "uuid": "b16e2e8a-9cf6-45ec-8c9c-dec97aea07f0",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 366, "width": 1334,
"height": 336, "height": 596,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"1orange": { "bg_sky": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "43d1e79d-6de8-4dcb-b8ce-d767df7913aa", "uuid": "10124f6f-7a00-46a6-af19-5d73e95b4c17",
"rawTextureUuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f", "rawTextureUuid": "b16e2e8a-9cf6-45ec-8c9c-dec97aea07f0",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": -0.5, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 1, "trimY": 0,
"width": 366, "width": 1334,
"height": 335, "height": 596,
"rawWidth": 366, "rawWidth": 1334,
"rawHeight": 336, "rawHeight": 596,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b", "uuid": "464a292e-921c-4324-8124-4f28820c22da",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 1280, "width": 159,
"height": 720, "height": 69,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg": { "bg_stone": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd", "uuid": "d3db55b9-13ad-44b2-8887-59d394ee72a0",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b", "rawTextureUuid": "464a292e-921c-4324-8124-4f28820c22da",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 1280, "width": 159,
"height": 720, "height": 69,
"rawWidth": 1280, "rawWidth": 159,
"rawHeight": 720, "rawHeight": 69,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "ea0e83b7-e417-4734-8b5e-6c67004de240",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 862,
"height": 573,
"platformSettings": {},
"subMetas": {
"bg_tree": {
"ver": "1.0.4",
"uuid": "92c53c99-f66e-4d69-8d15-1239166580b3",
"rawTextureUuid": "ea0e83b7-e417-4734-8b5e-6c67004de240",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 862,
"height": 573,
"rawWidth": 862,
"rawHeight": 573,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "9a79969a-0506-48d4-bc98-3c05d109b027", "uuid": "007413d5-174e-49aa-a6ea-0034e4f84943",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 61, "width": 72,
"height": 67, "height": 75,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_left": { "icon_key": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "ce19457d-e8f3-4c38-ae3e-d4b99208ddb5", "uuid": "82d30c65-668d-406f-9801-05ff6911aba4",
"rawTextureUuid": "9a79969a-0506-48d4-bc98-3c05d109b027", "rawTextureUuid": "007413d5-174e-49aa-a6ea-0034e4f84943",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 61, "width": 72,
"height": 67, "height": 75,
"rawWidth": 61, "rawWidth": 72,
"rawHeight": 67, "rawHeight": 75,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "8377ed5e-335f-449b-a3db-33e405325fcd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 63,
"height": 73,
"platformSettings": {},
"subMetas": {
"icon_stone": {
"ver": "1.0.4",
"uuid": "c619af22-fc95-4800-9d4c-1dabffa352df",
"rawTextureUuid": "8377ed5e-335f-449b-a3db-33e405325fcd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0.5,
"trimX": 1,
"trimY": 0,
"width": 62,
"height": 72,
"rawWidth": 63,
"rawHeight": 73,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "86307c17-5f09-466e-a006-f2a2a9f827f5",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "967f2c78-bb78-4238-bc5f-9ac5df6de6f6",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "2.3.5", "ver": "2.3.5",
"uuid": "d582359e-924e-4ee9-9964-1fc4bb417e71", "uuid": "533aec3b-73ba-40b6-a5b1-fd2da1817890",
"type": "sprite", "type": "sprite",
"wrapMode": "clamp", "wrapMode": "clamp",
"filterMode": "bilinear", "filterMode": "bilinear",
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 61, "width": 797,
"height": 67, "height": 533,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_right": { "bg_di": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59", "uuid": "6392c589-592f-4f4b-b67c-ddc64e72c091",
"rawTextureUuid": "d582359e-924e-4ee9-9964-1fc4bb417e71", "rawTextureUuid": "533aec3b-73ba-40b6-a5b1-fd2da1817890",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": -0.5, "offsetX": -0.5,
"offsetY": 0.5, "offsetY": 0,
"trimX": 0, "trimX": 4,
"trimY": 0, "trimY": 0,
"width": 60, "width": 788,
"height": 66, "height": 533,
"rawWidth": 61, "rawWidth": 797,
"rawHeight": 67, "rawHeight": 533,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "3d47756d-711f-4bcd-a195-3189d5f12c80",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 219,
"height": 109,
"platformSettings": {},
"subMetas": {
"bg_title1": {
"ver": "1.0.4",
"uuid": "128221d5-ec72-48e1-b297-24890918bbae",
"rawTextureUuid": "3d47756d-711f-4bcd-a195-3189d5f12c80",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 219,
"height": 109,
"rawWidth": 219,
"rawHeight": 109,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "708495df-b306-4463-8865-f6e7e1715602",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 219,
"height": 109,
"platformSettings": {},
"subMetas": {
"bg_title2": {
"ver": "1.0.4",
"uuid": "956c6be6-1f6d-49e4-bc93-38df4a1ec37c",
"rawTextureUuid": "708495df-b306-4463-8865-f6e7e1715602",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 219,
"height": 109,
"rawWidth": 219,
"rawHeight": 109,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "52a4ae1b-db1c-49e5-8259-741c1ecf69b5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 467,
"height": 471,
"platformSettings": {},
"subMetas": {
"bg_video": {
"ver": "1.0.4",
"uuid": "9da57643-8aa5-4e52-aee5-ac4f1eb9baaa",
"rawTextureUuid": "52a4ae1b-db1c-49e5-8259-741c1ecf69b5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 467,
"height": 471,
"rawWidth": 467,
"rawHeight": 471,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "88022fac-5c88-4998-b1d9-45a59c314fbe",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 230,
"height": 235,
"platformSettings": {},
"subMetas": {
"btn_game1": {
"ver": "1.0.4",
"uuid": "7bcc24d9-8535-4a3f-911e-40c028be3a66",
"rawTextureUuid": "88022fac-5c88-4998-b1d9-45a59c314fbe",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 1,
"width": 229,
"height": 233,
"rawWidth": 230,
"rawHeight": 235,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "68ce57c2-ded7-4c93-9bf5-d0901cc2eb52",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 185,
"height": 352,
"platformSettings": {},
"subMetas": {
"btn_game2": {
"ver": "1.0.4",
"uuid": "660c5efe-f507-4c1e-8c99-3b20faed721c",
"rawTextureUuid": "68ce57c2-ded7-4c93-9bf5-d0901cc2eb52",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 185,
"height": 352,
"rawWidth": 185,
"rawHeight": 352,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cc76529d-689a-4185-9921-858c99873038",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 474,
"height": 237,
"platformSettings": {},
"subMetas": {
"btn_reading": {
"ver": "1.0.4",
"uuid": "40ba29ea-4403-4c50-9344-be3885c27aad",
"rawTextureUuid": "cc76529d-689a-4185-9921-858c99873038",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 1,
"trimY": 1,
"width": 473,
"height": 235,
"rawWidth": 474,
"rawHeight": 237,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b2c4d9b0-ad96-49b3-ad91-d4ced8e94c2c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 109,
"height": 95,
"platformSettings": {},
"subMetas": {
"btn_return": {
"ver": "1.0.4",
"uuid": "02723345-93ef-4da1-90f0-d77244104fed",
"rawTextureUuid": "b2c4d9b0-ad96-49b3-ad91-d4ced8e94c2c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 109,
"height": 95,
"rawWidth": 109,
"rawHeight": 95,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "c6f5a051-753b-44e2-8bfc-5ac852557600",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 117,
"height": 117,
"platformSettings": {},
"subMetas": {
"btn_video-play": {
"ver": "1.0.4",
"uuid": "ae733cde-872d-4049-bb09-1ddbe750c95d",
"rawTextureUuid": "c6f5a051-753b-44e2-8bfc-5ac852557600",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 117,
"height": 117,
"rawWidth": 117,
"rawHeight": 117,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9b22a7e0-5722-40da-b4a3-c32851082e99",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 107,
"height": 53,
"platformSettings": {},
"subMetas": {
"icon_done": {
"ver": "1.0.4",
"uuid": "857d465a-22fd-44d4-8a4d-9d4bde0dd7db",
"rawTextureUuid": "9b22a7e0-5722-40da-b4a3-c32851082e99",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 107,
"height": 53,
"rawWidth": 107,
"rawHeight": 53,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "22b7e8c3-7ab5-4435-affe-d3a4d2973088",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1334,
"height": 750,
"platformSettings": {},
"subMetas": {
"6-活动前": {
"ver": "1.0.4",
"uuid": "5e8ee6d4-6c41-411d-ba83-196f52455b76",
"rawTextureUuid": "22b7e8c3-7ab5-4435-affe-d3a4d2973088",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1334,
"height": 750,
"rawWidth": 1334,
"rawHeight": 750,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment