Commit 829603db authored by liujiangnan's avatar liujiangnan

feat:

parent 3b680f1f
No preview for this file type
{
"ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {
"ios": false,
"android": false
},
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
initView() {
this.initBg();
this.initPic();
this.initBtn();
this.initIcon();
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
pic1 = null;
pic2 = null;
initPic() {
const canvas = cc.find('Canvas');
const maxW = canvas.width * 0.7;
this.getSprNodeByUrl(this.data.pic_url, (sprNode) => {
const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x;
canvas.addChild(picNode1);
this.pic1 = picNode1;
const labelNode = new cc.Node();
labelNode.color = cc.Color.YELLOW;
const label = labelNode.addComponent(cc.Label);
label.string = this.data.text;
label.fontSize = 60;
label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode);
});
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
const picNode2 = sprNode;
picNode2.scale = maxW / picNode2.width;
canvas.addChild(picNode2);
picNode2.x = canvas.width;
picNode2.baseX = picNode2.x;
this.pic2 = picNode2;
const labelNode = new cc.Node();
const label = labelNode.addComponent(cc.RichText);
const size = 60
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent(cc.Label).font;
label.string = `<outline color=#751e00 width=4><size=${size}><color=#ffffff>${this.data.text}</color></size></outline>`
label.lineHeight = size;
picNode2.addChild(labelNode);
});
}
initIcon() {
const iconNode = this.getSprNode('icon');
iconNode.zIndex = 5;
iconNode.anchorX = 1;
iconNode.anchorY = 1;
iconNode.parent = cc.find('Canvas');
iconNode.x = iconNode.parent.width / 2 - 10;
iconNode.y = iconNode.parent.height / 2 - 10;
iconNode.on(cc.Node.EventType.TOUCH_START, () => {
this.playAudioByUrl(this.data.audio_url);
})
}
curPage = null;
initBtn() {
this.curPage = 0;
const bottomPart = cc.find('Canvas/bottomPart');
bottomPart.zIndex = 5; // 提高层级
bottomPart.x = bottomPart.parent.width / 2;
bottomPart.y = -bottomPart.parent.height / 2;
const leftBtnNode = bottomPart.getChildByName('btn_left');
//节点中添加了button组件 则可以添加click事件监听
leftBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 0) {
return;
}
this.curPage = 0
this.leftMove();
this.playLocalAudio('btn');
})
const rightBtnNode = bottomPart.getChildByName('btn_right');
//节点中添加了button组件 则可以添加click事件监听
rightBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 1) {
return;
}
this.curPage = 1
this.rightMove();
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
this.playLocalAudio('btn');
})
}
leftMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
rightMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX - len }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX - len }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
// update (dt) {},
initListener() {
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
{
"ver": "1.0.8",
"uuid": "408a67f8-65fa-4cf1-8cf2-83e20e1a0fd5",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import { defaultData } from "../script/defaultData";
export class MyCocosSceneComponent extends cc.Component {
// 生命周期 onLoad
onLoad() {
this.initSceneData();
this.initSize();
}
_imageResList = null;
_audioResList = null;
_animaResList = null;
initSceneData() {
this._imageResList = [];
this._audioResList = [];
this._animaResList = [];
}
_designSize = null; // 设计分辨率
_frameSize = null; // 屏幕分辨率
_mapScaleMin = null; // 场景中常用缩放(取大值)
_mapScaleMax = null; // 场景中常用缩放(取小值)
_cocosScale = null; // cocos 自缩放 (较少用到)
initSize() {
// 注意cc.winSize只有在适配后(修改fitHeight/fitWidth后)才能获取到正确的值,因此使用cc.getFrameSize()来获取初始的屏幕大小
let screen_size = cc.view.getFrameSize().width / cc.view.getFrameSize().height
let design_size = cc.Canvas.instance.designResolution.width / cc.Canvas.instance.designResolution.height
let f = screen_size >= design_size
cc.Canvas.instance.fitHeight = f
cc.Canvas.instance.fitWidth = !f
const frameSize = cc.view.getFrameSize();
this._frameSize = frameSize;
this._designSize = cc.view.getDesignResolutionSize();
let sx = cc.winSize.width / frameSize.width;
let sy = cc.winSize.height / frameSize.height;
this._cocosScale = Math.min(sx, sy);
sx = frameSize.width / this._designSize.width;
sy = frameSize.height / this._designSize.height;
this._mapScaleMin = Math.min(sx, sy) * this._cocosScale;
this._mapScaleMax = Math.max(sx, sy) * this._cocosScale;
cc.director['_scene'].width = frameSize.width;
cc.director['_scene'].height = frameSize.height;
}
data = null;
// 生命周期 start
start() {
if (window && (<any>window).courseware && (<any>window).courseware.getData) {
(<any>window).courseware.getData((data) => {
this.log('data:' + data);
this.data = data || this.getDefaultData();
this.data = JSON.parse(JSON.stringify(this.data));
this.preloadItem();
})
} else {
this.data = this.getDefaultData();
this.preloadItem();
}
}
getDefaultData() {
return defaultData;
}
preloadItem() {
this.addPreloadImage();
this.addPreloadAudio();
this.addPreloadAnima();
this.preload();
}
addPreloadImage() {
}
addPreloadAudio() {
}
addPreloadAnima() {
}
preload() {
const preloadArr = this._imageResList.concat(this._audioResList).concat(this._animaResList);
cc.assetManager.loadAny(preloadArr, null, null, (err, data) => {
if (window && window["air"]) {
// window["air"].onCourseInScreen = (next) => {
// window["air"].isCourseInScreen = true;
// this.onLoadEnd();
// next();
// };
this.onLoadEnd();
window["air"].hideAirClassLoading();
} else {
this.onLoadEnd();
}
cc.debug.setDisplayStats(false);
});
}
log (str) {
const node = cc.find('middleLayer');
if(node){
node.getComponent('middleLayer').log(str);
}else{
cc.log(str);
}
}
onLoadEnd() {
}
// ------------------------------------------------
getSprNode(resName) {
const sf = cc.find('Canvas/res/img/' + resName).getComponent(cc.Sprite).spriteFrame;
const node = new cc.Node();
node.addComponent(cc.Sprite).spriteFrame = sf;
return node;
}
getSpriteFrimeByUrl(url, cb) {
cc.loader.load({ url }, (err, img) => {
const spriteFrame = new cc.SpriteFrame(img)
if (cb) {
cb(spriteFrame);
}
})
}
getSprNodeByUrl(url, cb) {
const node = new cc.Node();
const spr = node.addComponent(cc.Sprite);
this.getSpriteFrimeByUrl(url, (sf) => {
spr.spriteFrame = sf;
if (cb) {
cb(node);
}
})
}
playAudioByUrl(audio_url, cb = null) {
if (audio_url) {
cc.assetManager.loadRemote(audio_url, (err, audioClip) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8);
if (cb) {
cc.audioEngine.setFinishCallback(audioId, () => {
cb();
});
}
});
}else{
cb && cb();
}
}
}
\ No newline at end of file
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "ab123a18-2bd2-45db-8014-cd727e1310f1",
"downloadMode": 0,
"duration": 0.6818,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "0827964d-d7e0-4dad-bdcb-3984b838217c",
"downloadMode": 0,
"duration": 3.761633,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "8f1f27d5-648e-4276-8d38-149e1370c786",
"downloadMode": 0,
"duration": 1.471333,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "14971794-6810-4866-8630-e360f6e0c835",
"downloadMode": 0,
"duration": 0.938688,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "785501f3-09dd-4e84-8cd1-d9dc1e4d3d4a",
"downloadMode": 0,
"duration": 2.298776,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "f5a10435-2e9c-4a86-aeee-1c9fc237c068",
"downloadMode": 0,
"duration": 4,
"subMetas": {}
}
\ No newline at end of file
oN]BX÷STÖNjaUȳEP{ѻȹSTƥĺ·˭јJHPOOx}TlvtKJPY{cJ^uzNSBR£OTdcHRȢXOC\ӮiCfƹӮiCXƱXOF^ȶƧG\JPiˮȮNS]PPO`RnHT`NFƃ]T%lJTvYOXѪĔǹHjPYf~SƶWEPXFXȴ\`CNƿJJPXCXRV`LFbűKROOTpѶ[jHSMANI՗MԍFNjXŀFBONEScʁdQSTDRAGSpT#_IS_BIԂHQ@ERANMW^HQ'FDRSW?NBONEW^HRG|TDRAGORANMX_BESTKǷXwCSNITcJW`FFX,D%ٿ SOJ>hSPXEWߥ{}W`MScBISXDWy* dW_N?ZGOEGT,bo{\ϣZ745;҂D887ˮ4
GnƴPSCSOITcJW`FFWUHVEHTETWaG)%{SRET"uHWIWY RIW`N%('EJT<֌WaG&#R;RFT\rfIWXEW&eWbN5o]2փEKT{|WaGjܖ&qRCSRITcJWcFFWXHSFĮZ&cMX6<ͪKRS';!VcDJ'ftFSRFX
8-HUF%&cKX+O=KSS}݀!cFITY*,(t0HpRGX!3EV!OHUFK-cMXՋm3Zļ\`CPPxOFORFW`MUcDIVXGVEKSRGSSIYcOWfFLW\HZEPSWFOScL\ӻZMaŸLFZǧEHRG7]II:LʢX@N±SOHd 8SRhVTd5STDRAHT
ONES_IXESTDRAL>BONES`MԍFDRR ]ªSСdĒƹMBKPSޛzd4K90{TT1G31|rX_KiFNMDKcKXz [L=;}VNN;GxFi NdADRSCV@FNFRS1,AX3QñvDT4R8ŵDJ5NF]IR^G&cFJ0X+G=D`J'GBSS>S:K%cUWSCPoTW\ͣZehzTcFIZXGVHKWRESQI[cKWgFNWVHTEPSOFXREW`MZcFIXXJVHKTOa̡ͦITi489-ݣ87ߗRITOTFDRSCSM`Ѯ}cZe\_E\B`Dz˧H^EEHRBREcIcCWTEqȻˌ˱X3Q@F/NBTNθ~£÷bWaCOTG_RiJcCWSCQ9TgdkgRCRn`VJıL=ANM%S_YɶHXISKHQSriJcCXdRAGONBSޔkYぉ͔uITNH@׶BUT4R^H3_BY}) ,(-9-uDSTCYOVMԄOTHSL nBONES_XGҝ
4ӝTG͎A۫cCX\wPKNNADR4DRMx33E
Gβ: )쀶RIZ`STEWbKHRCSs_IS_BEY*q6L}J7y+F@HSLg 71JeX3Q@F/NBTn88+ ,ʦ57LcJF]GSKHPEREelëˊSNYTή^EWSNGIdcJHRFRTW_NŬFXVAHRFPkŪ˶ȭXQCYO\ν GTTOrƪWEPXFZůhEF]UxXBRNT`T£XEG\cIeFdĢSUԁMTKFTaLPe\`JԃFEvHSBZȢļW_WSNshJTKPT^Eiï̮\dCOTkɦ·cIcADRSxE_e”ˏѵUaóFOOOTyW_IRSCQmSNÁPƇcITbNTUYŤhNTiCƃXDEHtF^W`ʅaIRSCQBQPrSNW`ycBWUńCSMANMFeԁFFXĜVAsRBTW_fѣƦWJTiJԏFEXDgK^SNƅaW^ADRUNSwSNSNycIcBƅVV@FNMCPXFԍRZ`LFԄHRKNMANkWʅayXt&PXFԏMSFDRSCgKtQyXBskҮE\BRBRDR^HԅFEԆFuL%d-JKFTz[FHYOREcJԅFcHSyQFNMDR`STrISHSmSNSOƅaW^ADRUXqRCІISmW_WTŎJLPXC~ISMShIdVAȁPSMDR^J]`uWTVAuRBREԑKcADRSESKH|KVOOTyW_IRSCQmSÁPƇd l:KSKH~FOIR^HRhIvT{TQcnTiCƃXDEFNMAtIS{UvJmJFCnNT`ʉhGF]UłEGRCtIoW`wUHQ@FNOLPuW_W`kWTVBȁPSMDR^JeuXEyKOfSNƍcIԛKJT^EqKOFOkWYcBƅVV@FNMCYOƃcIcByXDEGЀDRDR^HT`LFԂMYBQPrSNW^HR^kWńCȃSo `LFԄHRKNMANkWʅayX\7tPXFԏMSFDRSCgKOtQyXi#{EaPPOÅWJTiJԏFEXEgK^SOƅaW^ADRUNSwSNSOycIcCƅVV@FNMCTԁMTzIShVAȉRBЊNX`STrISHRmSRREԑKcADRSE\BRBREԅMSFEԆFEFNMAPOOTw\fCOTtVASMANMycԑDƇYt3OOTyW_IRSCQmSÁPƇdx7T SKH~FOIR^HRhISvT{TdATbNTUňJLPXC~ISMThIdVBȁPSMDR^J]`uWTVBuRBRFԑKcADRSEGpFP}W_wcBƍXD}PTOLPuW_W_kWTEGЀDRDR^HTiCƃXDEGtFOIS{UFDRSCSB}XQCYOshJTdITi\`JlëˇXOFԃMSxƽWFTO`KnV@FNMCRFT`XȤƽ\BU_‚`OzrPPOi÷ķǠȹĦUF
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "95c138fd-1f37-481a-96ed-b302f808aa44",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL02-left-behind-grass","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"y":-617,"width":348,"height":624},"bone":[{"name":"root"},{"length":120,"name":"左后海草_拷贝","parent":"root","transform":{"x":155,"y":-8,"skX":-92.3859,"skY":-92.3859}},{"length":173,"name":"左后海草_拷贝1","parent":"左后海草_拷贝","transform":{"x":120.1041,"skX":0.0689,"skY":0.0689}},{"length":165,"name":"左后海草_拷贝2","parent":"左后海草_拷贝1","transform":{"x":173.1416,"skX":2.6643,"skY":2.6643}},{"length":158,"name":"左后海草_拷贝3","parent":"左后海草_拷贝2","transform":{"x":165.003,"skX":0.378,"skY":0.378}}],"slot":[{"name":"左后海草_拷贝","parent":"左后海草_拷贝3"}],"skin":[{"slot":[{"name":"左后海草_拷贝","display":[{"type":"mesh","name":"左后海草/左后海草_拷贝","width":348,"height":624,"vertices":[0,0,348,0,348,-137.5,348,-315.5,348,-462.5,348,-624,0,-624,0,-471.5,0,-299.5,0,-115.5],"uvs":[0,1,1,1,1,0.77965,1,0.49439,1,0.25881,1,0,0,0,0,0.24439,0,0.52003,0,0.8149],"triangles":[4,7,3,7,8,3,3,8,2,8,9,2,2,9,1,9,0,1,7,4,5,6,7,5],"weights":[1,1,1,1,1,1,4,1,0.352815,2,0.352837,3,0.201632,4,0.092716,4,1,0.175717,3,0.311353,2,0.309513,4,0.203418,4,1,0.095411,3,0.346502,4,0.34646,2,0.211627,1,4,1,1,4,1,4,1,0.057544,4,0.389765,3,0.389511,2,0.16318,4,1,0.139817,3,0.355157,2,0.355136,4,0.14989,4,1,0.389397,2,0.388727,3,0.16054,4,0.061337],"slotPose":[1,0,0,1,0,0],"bonePose":[1,-0.041631,-0.999133,0.999133,-0.041631,155,-8,2,-0.040429,-0.999182,0.999182,-0.040429,150,-128,3,0.00606,-0.999982,0.999982,0.00606,143,-301,4,0.012657,-0.99992,0.99992,0.012657,144,-466],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,0],"userEdges":[]}]}]}],"animation":[{"duration":144,"playTimes":0,"name":"normal","bone":[{"name":"左后海草_拷贝","rotateFrame":[{"duration":72,"tweenEasing":0,"rotate":-0.36},{"duration":72,"tweenEasing":0,"rotate":1.6},{"duration":0,"rotate":-0.36}]},{"name":"左后海草_拷贝1","rotateFrame":[{"duration":72,"tweenEasing":0,"rotate":-6.39},{"duration":72,"tweenEasing":0,"rotate":3.95},{"duration":0,"rotate":-6.39}]},{"name":"左后海草_拷贝2","rotateFrame":[{"duration":72,"tweenEasing":0,"rotate":-8.32},{"duration":72,"tweenEasing":0,"rotate":6.22},{"duration":0,"rotate":-8.32}]},{"name":"左后海草_拷贝3","rotateFrame":[{"duration":72,"tweenEasing":0,"rotate":-9.47},{"duration":72,"tweenEasing":0,"rotate":10.92},{"duration":0,"rotate":-9.47}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "93a79101-5286-400e-9f52-318745e6406b",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"WL02-left-behind-grass_tex.png","height":1024,"name":"WL02-left-behind-grass","SubTexture":[{"width":348,"y":1,"height":624,"name":"左后海草/左后海草_拷贝","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "2573310a-cad6-4d20-939b-d5b8b4fba6d0",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "350361ac-6557-430c-b277-cb22fcdc714e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"WL02-left-behind-grass_tex": {
"ver": "1.0.4",
"uuid": "226d5b9f-52e4-41c2-80c0-eec21b3a2313",
"rawTextureUuid": "350361ac-6557-430c-b277-cb22fcdc714e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -81,
"offsetY": 199,
"trimX": 1,
"trimY": 1,
"width": 348,
"height": 624,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d01d8ee1-3d00-43d9-8b73-e0fe4bd13876",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL02-left-front-grass","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":0.15,"y":-295.77,"width":155,"height":284},"bone":[{"name":"root"},{"length":99,"name":"左前海草","parent":"root","transform":{"x":65.2,"y":-8.5,"skX":-91.6448,"skY":-91.6448}},{"length":109,"name":"左前海草1","parent":"左前海草","transform":{"x":99.2909,"skX":1.6448,"skY":1.6448}},{"length":65,"name":"左前海草2","parent":"左前海草1","transform":{"x":109.15,"skX":0.6086,"skY":0.6086}}],"slot":[{"name":"左前海草","parent":"左前海草2"}],"skin":[{"slot":[{"name":"左前海草","display":[{"type":"mesh","name":"左前海草/左前海草","width":155,"height":284,"vertices":[0,-0.05,154.95,-0.05,155,-105.9,155,-226.5,154.95,-284,0,-284,0,-223.5,1.3,-106.2],"uvs":[0,0.99982,0.99968,0.99982,0.99968,0.62711,0.99968,0.20246,0.99968,0,0,0,0,0.21303,0.00838,0.62606],"triangles":[5,6,3,3,6,2,6,7,2,2,7,1,7,0,1,5,3,4],"weights":[1,1,1,1,1,1,3,1,0.415379,2,0.414396,3,0.170225,2,2,0.41,3,0.59,1,3,1,1,3,1,2,2,0.41,3,0.59,3,1,0.447742,2,0.447766,3,0.104492],"slotPose":[1,0,0,1,0,0],"bonePose":[1,-0.028704,-0.999588,0.999588,-0.028704,65.2,-8.5,2,0,-1,1,0,62.35,-107.75,3,0.010622,-0.999944,0.999944,0.010622,62.35,-216.9],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,0],"userEdges":[]}]}]}],"animation":[{"duration":144,"playTimes":0,"name":"normal","bone":[{"name":"左前海草","rotateFrame":[{"duration":16,"tweenEasing":0,"rotate":1.67},{"duration":36,"tweenEasing":0,"rotate":4.91},{"duration":20,"tweenEasing":0,"rotate":-2.39},{"duration":16,"tweenEasing":0,"rotate":1.67},{"duration":36,"tweenEasing":0,"rotate":4.91},{"duration":20,"tweenEasing":0,"rotate":-2.39},{"duration":0,"rotate":1.67}]},{"name":"左前海草1","rotateFrame":[{"duration":26,"tweenEasing":0,"rotate":-4.94},{"duration":36,"tweenEasing":0,"rotate":7.96},{"duration":10,"tweenEasing":0,"rotate":-9.9},{"duration":26,"tweenEasing":0,"rotate":-4.94},{"duration":36,"tweenEasing":0,"rotate":7.96},{"duration":10,"tweenEasing":0,"rotate":-9.9},{"duration":0,"rotate":-4.94}]},{"name":"左前海草2","rotateFrame":[{"duration":36,"tweenEasing":0,"rotate":-17.58},{"duration":36,"tweenEasing":0,"rotate":9.75},{"duration":36,"tweenEasing":0,"rotate":-17.58},{"duration":36,"tweenEasing":0,"rotate":9.75},{"duration":0,"rotate":-17.58}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "3ed2e723-ef7d-4fa4-809e-2f26c6b27b85",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"WL02-left-front-grass_tex.png","height":512,"name":"WL02-left-front-grass","SubTexture":[{"width":155,"y":1,"height":284,"name":"左前海草/左前海草","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "1e793b7f-9010-487a-9830-223043181a94",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "68c15050-151f-4f34-a9cd-eb122d58fe0e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 512,
"platformSettings": {},
"subMetas": {
"WL02-left-front-grass_tex": {
"ver": "1.0.4",
"uuid": "a084244a-a313-4c74-a927-268f6515fffa",
"rawTextureUuid": "68c15050-151f-4f34-a9cd-eb122d58fe0e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -49.5,
"offsetY": 113,
"trimX": 1,
"trimY": 1,
"width": 155,
"height": 284,
"rawWidth": 256,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "9104b270-935d-4cbf-9d90-5ccc8edb2881",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL02-right-behind-grass","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-281,"y":-616.69,"width":281,"height":654},"bone":[{"name":"root"},{"length":86,"name":"bone","parent":"root","transform":{"x":-116.25,"y":2.5,"skX":-89.1697,"skY":-89.1697}},{"length":183,"name":"右后海草","parent":"bone","transform":{"x":86.2591,"skX":-1.2201,"skY":-1.2201}},{"length":176,"name":"右后海草1","parent":"右后海草","transform":{"x":183.7543,"skX":-0.0166,"skY":-0.0166}},{"length":208,"name":"右后海草2","parent":"右后海草1","transform":{"x":176.2544,"skX":-0.2798,"skY":-0.2798}}],"slot":[{"name":"右后海草","parent":"右后海草2"}],"skin":[{"slot":[{"name":"右后海草","display":[{"type":"mesh","name":"右后海草/右后海草","width":281,"height":654,"vertices":[0,0,0,-103.15,0,-280.65,0,-424.4,0,-654,-281,-654,-281,-436.9,-281,-254.4,-281,-89.4,-281,0],"uvs":[1,1,1,0.84228,1,0.57087,1,0.35107,1,0,0,0,0,0.33196,0,0.61101,0,0.8633,0,1],"triangles":[5,6,4,4,6,3,8,9,0,8,0,1,7,8,1,3,6,2,6,7,2,7,1,2],"weights":[1,1,1,3,4,0.071443,2,0.699701,3,0.228856,3,4,0.144226,3,0.430575,2,0.425199,3,4,0.41681,3,0.429137,2,0.154053,1,4,1,1,4,1,3,4,0.403456,3,0.403944,2,0.1926,3,4,0.178739,2,0.411712,3,0.409549,3,4,0.109686,2,0.60652,3,0.283794,1,1,1],"slotPose":[1,0,0,1,0,0],"bonePose":[4,-0.011975,-0.999928,0.999928,-0.011975,-117.5,-443.75,3,-0.007092,-0.999975,0.999975,-0.007092,-116.25,-267.5,2,-0.006803,-0.999977,0.999977,-0.006803,-115,-83.75,1,0.014491,-0.999895,0.999895,0.014491,-116.25,2.5],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,0],"userEdges":[]}]}]}],"animation":[{"duration":144,"playTimes":0,"name":"normal","bone":[{"name":"右后海草","rotateFrame":[{"duration":72,"tweenEasing":0},{"duration":72,"tweenEasing":0,"rotate":5.92},{"duration":0}]},{"name":"右后海草1","rotateFrame":[{"duration":72,"tweenEasing":0},{"duration":72,"tweenEasing":0,"rotate":10.72},{"duration":0}]},{"name":"右后海草2","rotateFrame":[{"duration":72,"tweenEasing":0},{"duration":72,"tweenEasing":0,"rotate":9.67},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "7c77f30a-1951-45e3-b0e1-17a552c564cc",
"subMetas": {}
}
\ No newline at end of file
{"width":512,"imagePath":"WL02-right-behind-grass_tex.png","height":1024,"name":"WL02-right-behind-grass","SubTexture":[{"width":281,"y":1,"height":654,"name":"右后海草/右后海草","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "152502c3-5746-4fae-8fa5-d2a6babe5200",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2ab64fdb-4449-480d-9064-1e36984970b6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"WL02-right-behind-grass_tex": {
"ver": "1.0.4",
"uuid": "f51a80a3-4183-4dfd-82c1-2822c9e04296",
"rawTextureUuid": "2ab64fdb-4449-480d-9064-1e36984970b6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -114.5,
"offsetY": 184,
"trimX": 1,
"trimY": 1,
"width": 281,
"height": 654,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "fc504364-13e6-4aca-a98d-e90145e3f258",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL02-right-front-grass","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-241.98,"y":-350.74,"width":242,"height":362},"bone":[{"name":"root"},{"length":93,"name":"右前海草","parent":"root","transform":{"x":-115.85,"y":-3.9,"skX":-91.4351,"skY":-91.4351}},{"length":137,"name":"右前海草1","parent":"右前海草","transform":{"x":93.8294,"skX":1.7466,"skY":1.7466}},{"length":126,"name":"右前海草2","parent":"右前海草1","transform":{"x":137.952,"skX":-0.3115,"skY":-0.3115}}],"slot":[{"name":"右前海草","parent":"右前海草2"}],"skin":[{"slot":[{"name":"右前海草","display":[{"type":"mesh","name":"右前海草/右前海草","width":242,"height":362,"vertices":[-241.95,0,0,0,0,-92.65,0,-218,0,-362,-241.95,-362,-241.95,-225.1,-241.95,-98.2],"uvs":[0.00021,1,1,1,1,0.74406,1,0.39779,1,0,0.00021,0,0.00021,0.37818,0.00021,0.72873],"triangles":[6,7,3,3,7,2,7,0,2,2,0,1,6,3,4,5,6,4],"weights":[1,1,1,1,1,1,3,1,0.41627,2,0.414363,3,0.169367,3,1,0.195963,2,0.406185,3,0.397852,1,3,1,1,3,1,3,1,0.196634,2,0.403311,3,0.400055,3,1,0.408847,2,0.409024,3,0.182129],"slotPose":[1,0,0,1,0,0],"bonePose":[1,-0.025045,-0.999686,0.999686,-0.025045,-115.85,-3.9,2,0.005437,-0.999985,0.999985,0.005437,-118.2,-97.7,3,0,-1,1,0,-117.45,-235.65],"edges":[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,0],"userEdges":[]}]}]}],"animation":[{"duration":144,"playTimes":0,"name":"normal","bone":[{"name":"右前海草","rotateFrame":[{"duration":16,"tweenEasing":0,"rotate":2.28},{"duration":36,"tweenEasing":0,"rotate":1.17},{"duration":20,"tweenEasing":0,"rotate":3.67},{"duration":16,"tweenEasing":0,"rotate":2.28},{"duration":36,"tweenEasing":0,"rotate":1.17},{"duration":20,"tweenEasing":0,"rotate":3.67},{"duration":0,"rotate":2.28}]},{"name":"右前海草1","rotateFrame":[{"duration":26,"tweenEasing":0,"rotate":3.45},{"duration":36,"tweenEasing":0,"rotate":-7.28},{"duration":10,"tweenEasing":0,"rotate":7.58},{"duration":26,"tweenEasing":0,"rotate":3.45},{"duration":36,"tweenEasing":0,"rotate":-7.28},{"duration":10,"tweenEasing":0,"rotate":7.58},{"duration":0,"rotate":3.45}]},{"name":"右前海草2","rotateFrame":[{"duration":36,"tweenEasing":0,"rotate":9.52},{"duration":36,"tweenEasing":0,"rotate":-4.52},{"duration":36,"tweenEasing":0,"rotate":9.52},{"duration":36,"tweenEasing":0,"rotate":-4.52},{"duration":0,"rotate":9.52}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "679365ac-0da0-4be8-8cc4-741460cab655",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"WL02-right-front-grass_tex.png","height":512,"name":"WL02-right-front-grass","SubTexture":[{"width":242,"y":1,"height":362,"name":"右前海草/右前海草","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "bf9bf9be-7620-449b-9c62-4b72880087ce",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1ae4b6e3-402b-4feb-93c1-d98b35140b36",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 512,
"platformSettings": {},
"subMetas": {
"WL02-right-front-grass_tex": {
"ver": "1.0.4",
"uuid": "8eb6a7cf-762f-4439-adf1-88848cad4ecc",
"rawTextureUuid": "1ae4b6e3-402b-4feb-93c1-d98b35140b36",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -6,
"offsetY": 74,
"trimX": 1,
"trimY": 1,
"width": 242,
"height": 362,
"rawWidth": 256,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "8a2055f4-d85b-431d-a640-97edd953a3ef",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL04-bubble1","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-45.27,"y":37.71,"width":86.78,"height":235.32},"bone":[{"name":"root"},{"name":"小泡泡","parent":"root","transform":{"x":21.35,"y":72.2}},{"name":"小泡泡1","parent":"root","transform":{"x":-28.5686,"y":56.8544,"scX":0.6,"scY":0.6}},{"name":"小泡泡11","parent":"root","transform":{"x":-18.1547,"y":148.4116,"scX":0.5,"scY":0.5}},{"name":"小泡泡111","parent":"root","transform":{"x":13.6228,"y":190.2335,"scX":0.4,"scY":0.4}},{"name":"小泡泡1111","parent":"root","transform":{"x":-2.9787,"y":254.0971,"scX":0.3,"scY":0.3}}],"slot":[{"name":"小泡泡","parent":"小泡泡"},{"name":"小泡泡1","parent":"小泡泡1"},{"name":"小泡泡11","parent":"小泡泡11"},{"name":"小泡泡111","parent":"小泡泡111"},{"name":"小泡泡1111","parent":"小泡泡1111"}],"skin":[{"slot":[{"name":"小泡泡11","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡1111","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡1","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡111","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]}]}],"animation":[{"duration":240,"playTimes":0,"name":"normal","bone":[{"name":"小泡泡","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}]},{"name":"小泡泡1","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":72,"tweenEasing":0,"x":1.33,"y":1.33},{"duration":0}]},{"name":"小泡泡11","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0,"x":0.4,"y":0.4},{"duration":72,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":0}]},{"name":"小泡泡111","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":72,"tweenEasing":0,"x":1.5,"y":1.5},{"duration":0}]},{"name":"小泡泡1111","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}]}],"slot":[{"name":"小泡泡","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":57,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡1","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":47,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡11","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":29,"tweenEasing":0,"value":{"aM":0}},{"duration":48,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡111","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":45,"tweenEasing":0},{"duration":31,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡1111","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":47,"tweenEasing":0},{"duration":29,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":180,"height":220}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "01511a3f-0ae5-40fa-bc19-47d24c1c3c0c",
"subMetas": {}
}
\ No newline at end of file
{"width":64,"imagePath":"WL04-bubble1_tex.png","height":64,"name":"WL04-bubble1","SubTexture":[{"width":36,"y":1,"height":38,"name":"小泡泡","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "d6e7c1fa-f24a-4a06-84d2-1f14503818f7",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6c12dbac-f9ce-42a1-bffb-d7d6bf492752",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 64,
"height": 64,
"platformSettings": {},
"subMetas": {
"WL04-bubble1_tex": {
"ver": "1.0.4",
"uuid": "4c6f9ca0-e4ce-4daf-b7ca-3d472d50f1d0",
"rawTextureUuid": "6c12dbac-f9ce-42a1-bffb-d7d6bf492752",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 12,
"trimX": 1,
"trimY": 1,
"width": 36,
"height": 38,
"rawWidth": 64,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
oN]BX÷STÖNjaUȳEP{ѻȹSTƥĺ·˭јJHPOOx}TlvtBRzITju{]UE]YOJMlʥJHP[STƢSTrdzWCPYbK©UBbŷӧ]U`[BHmQbROFX¢W^AD]T7:c 5TvYOXѪĔǹHjPYf~SƶWEPXFXȴ\`CNƿJJPXCXRX`LFbűKROOThӪKf9'4WϮY}UŵŧLPUMTbJ#NI¹W_PʛIS[KPQTFpD:F^˭SrOǽWKX}LFZOd͵̡DTZ89+uEQPXCWHTiJe~Yr\BSOT ȢBWTVASOTFpD:FXhEmT~RVTKeY**-sIc`Y`IRSCQBU_ԻF]s]KSKHhӜVNSKPFOISMSFFXDS`DzεήYA@FN.BOK\ѸaĪ®LcDF]UUQPG1x|J͵xSNW_X%xwtTa?l灡TlŹGS>MDR?ISHWVJHYOROTN?BESTDRL{S&ߏW_ISI!GONBONX
wEGS>MDR?ISHWVPHWGPXFaLcBY]ȗW_K_XCTW_NFXVLFOScXёISYETSNFcSTiCUHSMFOKSTFEXERBRcIcWTEEWPdLP[{DWTSRR^Hcy`ôQSϡnǪơPSNFpîǕƪKROOTvӱU[JeX­XQF]`PŦNTUU«IT£XEJHP[STj[BH\cIqFFTgIStçKOXXOFshPTiC\øNT`ihCFhǧNT`YWWUI™KOZSNJøMS|·\`JTiCq]MSKHf¹ͩISHQ@FNRS\ҏˮƷCTªW_J]`mWTV@FNM_RԉKԋFET^EiKOFNMDRYWoUpVAHYOwREcHR^AcXDkIzFOOihJTbN\UNSoSNSOcccC}VV@FNMCYO{cIcCcXEHxDRDR^HTiC{XDFIYWJNyPW^HR^COTlVASO_REcJԉDWSCQ@HT`ITkW_]WTvEGtKXOOTqW_ISTVSNyPW^HR^COTlVASN_RcIԉDWSCQ@HYOwREd {6<_QKFOoUMR^ADT^EiKOGaP2zUWTVAyPSMDR^JTiCq]MSKHvFOIR^HRRInTsSNCYO{cIcADRSbExDzIS`STjISHQ@FNRS}acBF]UzEGRANMDoMSlGԀHRBeWCPe\hJ]`mWTVB_RRFԉKcADRSE\BwRBS,dHL'}aIRSCQBQPjSNX<uxbESBx|lGXCQ@FPXCvISMTRISHSqQFNMDR`YWWUtEGfFOiW_yhKF]UzEGRB^IMSlGXCQ@FPXCvISMSRIHRqQFNMDR`STjISIc?+icccB}VV@FNMCYO{cIdo5;b^FOISsUFDRSCSB}XSCYOihJTTITi\lJ]`mWTbExDXFcIcBWVASSNWW_CWSCQ@HYOwREoMqlG^EEGRBRcIcWTVSNCRDR^HTiC{XDQK~lQOTMSFXEGRREccBFXCQ@FPXCvISYWroUNSKOFIMSFXDERBPIR^HR`LF|HRWSyP]`W_ISHKOFISMFETHQ@FNOLPmW_ccB}V\BSNSNWýW_IHRKFOOW^HR^C^­Ȕ\`JwFElʭŪhJTHT^EWPPOaRFԍR``LF|HRWSyP]`W_ISHKOFISMFETHQ@FNOLPmW_cc_}V\BSNSNWýW_IHRKFOOW^HR^COTlVA_RrxGiJcBWVSNSW_WþISUV@FNMCYO{cIoFX~FKHRBRccBWVASSNFcHR^AF]UzEG^FoUSTFEXDERBRcIcWTEEFNMAPXFԇMSRISnTQPFOISMFEXEGRRETMR^ADTt[BHfFOw\`JeFZ\KNMANOW`JTnƥĺQPH`ѪqF`uwyWCPuѻͶƶK`
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "77798ab8-a31f-4863-8acc-86de7ac29d3a",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL04-bubble2","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-49.67,"y":37.93,"width":60.98,"height":129.36},"bone":[{"name":"root"},{"name":"小泡泡1","parent":"root","transform":{"x":-7.9846,"y":57.0734,"scX":0.6,"scY":0.6}},{"name":"小泡泡11","parent":"root","transform":{"x":-32.7533,"y":148.4116,"scX":0.5,"scY":0.5}}],"slot":[{"name":"小泡泡1","parent":"小泡泡1"},{"name":"小泡泡11","parent":"小泡泡11"}],"skin":[{"slot":[{"name":"小泡泡1","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡11","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]}]}],"animation":[{"duration":240,"playTimes":0,"name":"normal","bone":[{"name":"小泡泡1","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"tweenEasing":0,"x":1.67,"y":1.67},{"duration":0}]},{"name":"小泡泡11","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0,"x":0.4,"y":0.4},{"duration":72,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]}],"slot":[{"name":"小泡泡1","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":47,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡11","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":29,"tweenEasing":0,"value":{"aM":0}},{"duration":48,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":180,"height":220}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "1c59cf1d-f396-4704-9e0f-eb263c79b829",
"subMetas": {}
}
\ No newline at end of file
{"width":64,"imagePath":"WL04-bubble2_tex.png","height":64,"name":"WL04-bubble2","SubTexture":[{"width":36,"y":1,"height":38,"name":"小泡泡","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "66b0fa69-524c-4748-8e35-4f999383ef6e",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f780932c-91fa-4eca-9cfd-3208d58bc49d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 64,
"height": 64,
"platformSettings": {},
"subMetas": {
"WL04-bubble2_tex": {
"ver": "1.0.4",
"uuid": "2bac757c-a856-4e97-9952-9d6e32ea1d0b",
"rawTextureUuid": "f780932c-91fa-4eca-9cfd-3208d58bc49d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 12,
"trimX": 1,
"trimY": 1,
"width": 36,
"height": 38,
"rawWidth": 64,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
oN]BX繩秩漁謐ST瘉介螻懦筠U牟次炭勰P{掉覬棋陪漲替仉T挾贍繚偕阰解滑JHPOOxTl」RzTj{]UE]暑做即OJ須Mjl它購汀JHP[邪犒解ST答蕨希◣輒犒解STrㄦ懇裔閉戳CPY挫幫筮K岑穢UBb韁絡停艇窒荍愍U`[BHmQbROFX瞽W^AD胅墾偌T7:翃 5Tv朵暑鹿蔔琳OX塾社HjP蓬懇蜇訝f~汍薔僑WEPXFX\`CN倣JJPXCX螫謨RZ`LFb葉鑄陸ROOTh僑茠Kf9酃'4臝W嘐炷Y}U嘉結襲黍腿PU葆碉Tb膈#盷NI繒_PS[殿PQ摭D:^阰項特rO歲捏W陷薨X}L葡FZOd蟬腓§瑭葉嬤鑪﹗Z89+鰔划QPXCHTiJ~rBO 蹲鏶TAOD:—h〒m﹗~ΟVT焰占Y**-鮢@c`STHT^E`FJ稊GBEJCsy屠F\T東二`459jE二HΟANMDTd眼藻qSfbXWF]`b槨牧鬚艇尹輒EFJBTAONFr襄謐懦鳥遢幅4R^H3_B]黍偵n楣歲滂茛匱簷UQOLP埔J(z乏ED2N V2遮T膳斐撕Y禱X1DRS$RA成R@\`ST激U'ONBONE陝GB3_IS_BE1HOO若禱X1DRS$RA豕R@b`ST激UONBONE 霽GB#_IS_BE.╠紼若禱X1DRS$RA爸R@h`\fCOT東U膊O象君彼珗螃萱玎G﹗探諺蒸`G弛XDW液搞陝cBJ滿H訶BT髁筑FET沈\BQP乃鄗F蜜ˋcB挈\B惹N巽硃W藩W_截煎HR皺最FOOoJ]`碼F慘˙RB﹗℅iJ壢B慌虜V末SN搴窒W_饗藝ISUWHeXC\赳Sc此遢巽哠R^輁R薩念托R衁`鄙弘瘋傑神QOOb溺秩堔蜓做戳EPXFj楔偃撤\摹覬江`磊汐蔣陬偏嘿ROOTf笆餮FTe些釣繩掃Rj撰嶽杪Uv[BH\痕齦J^霽池遍SBT噹阬章W_伳cCFf襤竟誧壙Eh讀溺局捧EG胦KPOe\hJ]`Y溘秤幃FT趏\`CZ札秤幃FT屠獅VITY揪EG臿FOS筋cIp荋汐陬ˉ術T`J]`龐\]E\B^藷妥珩谿FE匣CQ@F胜F料必親龔禁N嗾瞿籀IS`ST跐IS沈Q@FN柧S料aBF]U疊EGΟANMD啵MnGRBQP氡SN^HR^鯈WT癬CRBP柛\`JNT^E胹KOP柼W`櫚U沈Q@FNOLP洭W_`鯈WBPMDR^J]`櫥WTA║檛斸啵MG嬽洴Q@R^HR`LF啅HRP柧SN`aRSCQB污cRFS赨IS捽VAWKPXFSΓE偗HO洴Q@R^HR`LF啅HRO柧S_aRSCQBQP氡SN殃3.釅鶸EB茌G呃HR^AF]U疊EG焉H幡豊ISR瀏Q¢NMDR`J]`龐\]E\BRBΟDR^H啵FF脀KOOLP洭W_^ADR悺V﹍{P犢RETiJE匣CQ@F胜FqU輀W_COT掝VAMANM灤cIDS斷XOC茀N\`ST跐ISS擲SOa^ADRUNS濺SN檟碪鸂灤X(誻鳿碃軿U蚶DRSCSKH苲FO|xVV5SCQ@HYO瀘REJ啵FEE脁IΟANMDT屠冢VIT掊VARB苖IS跲\hCOT掝VAN壞RISCQ@HYO瀘REI啵FD脁IΟANMDTiJE琶7痙柼W_櫚U沈Q@FNOLP洭W_仟-髏RBE呃ADRSESKH茇KXOOT跴W_RSCQ擲S{PITiC鸞XD划FNMA胜I喪uU跧ISUNS濺SNMDR^佘cVEGPXC苲IS蛉R^AD偗HR瀏Q洟SNF唪RT`懲\]E\BRBF啵MFFF划FNMAPXFSΔ,縻醑骫柧S"檟詅斁癬CMANMF]`吥cB7z胜INuxsQ¢NMDR`ST跐ISS擲SNOa^ADRUcRC茺IS趓W_攀WT玀JPPXC苲ISΚS豊IR瀏Q¢NMDR`ST跐ISR擲SNa^ADRUNS濺SN矣:<涘灤XG茌DΟDR^HTiC鸞XD焉7罩賌W_S掫TNMANOFPTiC驥]ES攆SOW祭授嶸歿aE\BRB胜IuU泹F鯀D騖G魎汍RE狃俺cB糙蜃VAHΟANMDTiJE偗Hp瀏Q嘴P鄱S埒S笎怡XD玎宥RB汯戾cIT蚶DRSCSKH苲FO柼Wa記T鯨R蚱麻F傍IS脡煞FE柆佬EGP¢NMDR`ST跐IS悺VTP訑O琺_蓄繹I滔HR遏傀FO网爺MS`RSCQBQP氡SN灤c設U幀A酬N貶祥W_糙羹IS粀馭KOOMDR^J]`櫥WT鶸EG茌D碼F壢I鷂B鈷蛹VA燙票SN糙蠅W_CSCQ@Hh疵職探嶸歿UE罜KOg虜螳腌ㄡ窟ES別LP柛\`J唼FF_BQP氡SN灤c設U幀A酬N貶祥W_糙羹IS粀馭KOOMDR^J]`櫥WT鶸Ed茌D碼F壢I鷂B鈷蛹VA燙票SN糙蠅W_CSCQ@HYO瀘RE啵MnG繃E鴻G糠污R怡cI狃江WT頸汀SNCΟDR^HTiC鸞XD紎Kb洴Q噎T柷S唃怪X亞EG牝RE柋俱cBF匣CQ@FPXC苲IS賌W岔qU齋S密O閻O點煬MS脥怛XD咶屍RBP@R^HR`LF啅HR擲SN爍P設`鈷_富S須KO靈傀IS腏爺FET沈Q@FNOFT趓W_瀘\UE二·XC胦NT`伳cCQSKH苲FO柼W廷a記T鯨R蚱O鴿傍IS脡煞FE柆佬EGP¢NMDR`ST跐IS悺V^P訑O琺_蓄_貂滔HR遏傀FO网爺MS`RSCQBQP氡SN灤cy設U幀A酬眸S祥W_糙羹IS粀馭KOOMDR^J]`櫥WT鶸EZ茌D碼F壢I鷂此W蛹VA燙票SN糙蠅W_CSCQ@HYO瀘RE啵MnG繃E鴻G糠B魎怡cI狃江WT頸汀SNCΟDR^HTiC鸞XD紎KO洴Q噎T柷S唃E亞EG牝RE柋俱cBF匣CQ@FP洊XOF啢MS輁NTU﹗鵠@R^HR`TUEa降推T瞌d邧巫絮疕H\貞JT瘍懇誨藤溢酊斂HΡ
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "7f2f0d92-a035-40ef-b3a0-d727418e4067",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"WL04-bubble3","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-37.1,"y":37.93,"width":82.57,"height":135.49},"bone":[{"name":"root"},{"name":"小泡泡1","parent":"root","transform":{"x":-20.3934,"y":57.0734,"scX":0.6,"scY":0.6}},{"name":"小泡泡11","parent":"root","transform":{"x":-0.1985,"y":154.543,"scX":0.5,"scY":0.5}},{"name":"小泡泡111","parent":"root","transform":{"x":26.9285,"y":81.559,"scX":0.25,"scY":0.25}}],"slot":[{"name":"小泡泡1","parent":"小泡泡1"},{"name":"小泡泡11","parent":"小泡泡11"},{"name":"小泡泡111","parent":"小泡泡111"}],"skin":[{"slot":[{"name":"小泡泡11","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡1","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]},{"name":"小泡泡111","display":[{"name":"小泡泡","transform":{"x":2.16,"y":-0.25}}]}]}],"animation":[{"duration":240,"playTimes":0,"name":"normal","bone":[{"name":"小泡泡1","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"tweenEasing":0,"x":1.67,"y":1.67},{"duration":0}]},{"name":"小泡泡11","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0,"x":0.4,"y":0.4},{"duration":72,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]},{"name":"小泡泡111","translateFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0},{"duration":72,"y":-152.88}],"scaleFrame":[{"duration":72,"tweenEasing":0},{"duration":96,"tweenEasing":0,"x":0.4,"y":0.4},{"duration":72,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":0}]}],"slot":[{"name":"小泡泡1","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":47,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡11","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":29,"tweenEasing":0,"value":{"aM":0}},{"duration":48,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]},{"name":"小泡泡111","colorFrame":[{"duration":72,"tweenEasing":0,"value":{"aM":0}},{"duration":29,"tweenEasing":0,"value":{"aM":0}},{"duration":48,"tweenEasing":0},{"duration":19,"tweenEasing":0},{"duration":72,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":180,"height":220}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "bc3a81cd-c3fe-4d60-964e-3b5245599bcd",
"subMetas": {}
}
\ No newline at end of file
{"width":64,"imagePath":"WL04-bubble3_tex.png","height":64,"name":"WL04-bubble3","SubTexture":[{"width":36,"y":1,"height":38,"name":"小泡泡","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "bd7f30f0-c8b4-4ede-af66-ae78567a8a37",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f7389152-6fad-4fc4-af79-f3dc9b251912",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 64,
"height": 64,
"platformSettings": {},
"subMetas": {
"WL04-bubble3_tex": {
"ver": "1.0.4",
"uuid": "fb5f3b45-da97-4a55-ae2f-85f8e38e2761",
"rawTextureUuid": "f7389152-6fad-4fc4-af79-f3dc9b251912",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 12,
"trimX": 1,
"trimY": 1,
"width": 36,
"height": 38,
"rawWidth": 64,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
oN]BTvv\`J˫ŵ˗ãîŮ]UwȤԪXOFTj]UIKNMA>[˽LFnʭŪSThGehJTjUBh³ǹ\BUR^KPOWV`JX›IaKPONθd# /_Pe͋ͧ]UU·NV`STd\UE`JLPXCb·ͼδ]UKŤSOEREZҴcBLƿVAN±SOHcIT~ˮdB^AD3TDq—ӪȱVmL\ͣZMİSRGTiJuiCiWUjW}{cI}cBqWUrWLuxTlѧZ|F>MAN.ESLbxKfIX`a]`]džļUMSlvvCRƷöI_XƅöVFNMOǽWRĩR|FOONعeSƶaF]pƒ®ͼ\bCOTkebĹCb̪ȱ\WE\BgXOC]WJTiJjѱȩKPOPѪKFTi\`JezPƷKPSRE`ίҧWTIšKOk˪Ĉ[BHPXCWJTiJcADRS[Kjӹ‰FO_ѪȱWvQݧSNF]`W^ADRFEGRBRETRT`N^UNSgKPD}RFcIcNWSCQ@HYOhSOUMTFEXJEFNMAPXFycJapITHRKUFNMDR`STFFVrVBSNSXW^HR^COTzHSI}RCREcIcADRSEGRCREcIcB\_E\BmT'W&{G:apISHRK[FNMDR`STGLmD}REcIcHWSCQ@HYOhTLif
UHRKOFUIR^HR`LFyYnIçmGcIcBW^~V@FNMCYOkXisoToKOFOISMR^ADTUMŭWEPXFhJTFFhNT`bȵKPOW_bȵKPO{YJcCX˕SNW\`CL[BH\ȑiJhCFXDEHPç͝ISJ{KNMANO\bJ]`aKVFE^YOGISdcBJHFRTWNFEXVLFOOYbȵFOKMW`xK]XQCYO\bJ]`QǴXQCYONeYff\BkSOhTlH~mWTnVAsSOpTF.FXɢKЕxUWbJaD{Y~VEHTCRDR^HTFFTHjPYf~CPywQPOOu|TjwyVBX÷STrØɦQgù±δDP]ѻOTJctTluyUkÏѧXH
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "f19656a1-2910-4094-956d-2104b0714ddc",
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"comeon","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-360.46,"y":-155.14,"width":720,"height":199},"bone":[{"name":"root"},{"name":"WL-comeon","parent":"root","transform":{"x":-2.65,"y":-22.55}}],"slot":[{"name":"WL-comeon","parent":"WL-comeon"}],"skin":[{"slot":[{"name":"WL-comeon","display":[{"name":"WL-comeon","transform":{"x":2.19,"y":-33.09}}]}]}],"animation":[{"duration":34,"playTimes":0,"name":"newAnimation","bone":[{"name":"WL-comeon","translateFrame":[{"duration":12,"tweenEasing":0,"y":-477.5},{"duration":6,"tweenEasing":0,"y":24.18},{"duration":6,"tweenEasing":0,"y":-2.9},{"duration":10,"tweenEasing":0,"y":24.18},{"duration":0,"y":567.5}]}]}],"defaultActions":[{"gotoAndPlay":"newAnimation"}],"canvas":{"width":1280,"height":720}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "85bb7dec-370e-46cf-bbba-15bc7498d59e",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"imagePath":"comeon_tex.png","height":256,"name":"comeon","SubTexture":[{"width":720,"y":1,"height":199,"name":"WL-comeon","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "b013c93c-b9e0-468f-b615-9867b2aaf155",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "53fe96aa-acbf-439d-b8d2-6880f1b7e9ce",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 256,
"platformSettings": {},
"subMetas": {
"comeon_tex": {
"ver": "1.0.4",
"uuid": "b266b981-d945-448c-974c-fc11878fe01e",
"rawTextureUuid": "53fe96aa-acbf-439d-b8d2-6880f1b7e9ce",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -151,
"offsetY": 27.5,
"trimX": 1,
"trimY": 1,
"width": 720,
"height": 199,
"rawWidth": 1024,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "4cc689a1-23f2-4dff-b09d-6e35d25cf726",
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "3e73cbcd-0a37-4440-9f3c-2999996b44b9",
"subMetas": {}
}
\ No newline at end of file
{"width":64,"imagePath":"大量泡泡冒出_tex.png","height":64,"name":"大量泡泡冒出","SubTexture":[{"width":36,"y":1,"height":38,"name":"小泡泡","x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "cb81d825-3b71-4d5b-9ac4-459b83a10ef1",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5a329797-9aed-40a1-9dc1-5fc57c707ac7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 64,
"height": 64,
"platformSettings": {},
"subMetas": {
"大量泡泡冒出_tex": {
"ver": "1.0.4",
"uuid": "5bbb99b9-9f90-46ad-8404-9c911f8342d9",
"rawTextureUuid": "5a329797-9aed-40a1-9dc1-5fc57c707ac7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -13,
"offsetY": 12,
"trimX": 1,
"trimY": 1,
"width": 36,
"height": 38,
"rawWidth": 64,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "a3fca40d-c06c-43e9-a86b-356d597d87d4",
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment