Commit e5135d0a authored by liubing's avatar liubing

l4项目提交。

parent 9f5f5457
{
"ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b",
"downloadMode": 0,
"duration": 0.130612,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1",
"subMetas": {}
}
\ No newline at end of file
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
initView() {
this.initBg();
this.initPic();
this.initBtn();
this.initIcon();
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
pic1 = null;
pic2 = null;
initPic() {
const canvas = cc.find('Canvas');
const maxW = canvas.width * 0.7;
this.getSprNodeByUrl(this.data.pic_url, (sprNode) => {
const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x;
canvas.addChild(picNode1);
this.pic1 = picNode1;
const labelNode = new cc.Node();
labelNode.color = cc.Color.YELLOW;
const label = labelNode.addComponent(cc.Label);
label.string = this.data.text;
label.fontSize = 60;
label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode);
});
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
const picNode2 = sprNode;
picNode2.scale = maxW / picNode2.width;
canvas.addChild(picNode2);
picNode2.x = canvas.width;
picNode2.baseX = picNode2.x;
this.pic2 = picNode2;
const labelNode = new cc.Node();
const label = labelNode.addComponent(cc.RichText);
const size = 60
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent(cc.Label).font;
label.string = `<outline color=#751e00 width=4><size=${size}><color=#ffffff>${this.data.text}</color></size></outline>`
label.lineHeight = size;
picNode2.addChild(labelNode);
});
}
initIcon() {
const iconNode = this.getSprNode('icon');
iconNode.zIndex = 5;
iconNode.anchorX = 1;
iconNode.anchorY = 1;
iconNode.parent = cc.find('Canvas');
iconNode.x = iconNode.parent.width / 2 - 10;
iconNode.y = iconNode.parent.height / 2 - 10;
iconNode.on(cc.Node.EventType.TOUCH_START, () => {
this.playAudioByUrl(this.data.audio_url);
})
}
curPage = null;
initBtn() {
this.curPage = 0;
const bottomPart = cc.find('Canvas/bottomPart');
bottomPart.zIndex = 5; // 提高层级
bottomPart.x = bottomPart.parent.width / 2;
bottomPart.y = -bottomPart.parent.height / 2;
const leftBtnNode = bottomPart.getChildByName('btn_left');
//节点中添加了button组件 则可以添加click事件监听
leftBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 0) {
return;
}
this.curPage = 0
this.leftMove();
this.playLocalAudio('btn');
})
const rightBtnNode = bottomPart.getChildByName('btn_right');
//节点中添加了button组件 则可以添加click事件监听
rightBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 1) {
return;
}
this.curPage = 1
this.rightMove();
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
this.playLocalAudio('btn');
})
}
leftMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
rightMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX - len }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX - len }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
// update (dt) {},
initListener() {
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.3",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541", "uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"importer": "folder",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{ {
"ver": "1.1.2", "ver": "1.1.3",
"uuid": "cb9fa4ea-66ca-45af-ad31-e445c7b0ef32", "uuid": "cb9fa4ea-66ca-45af-ad31-e445c7b0ef32",
"importer": "folder",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"ver": "2.0.3",
"uuid": "9048180a-1d39-46e4-b87a-d4e01dcefe53",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 3.448163,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.3",
"uuid": "144eb039-33a9-4a32-8666-1740efc9387a",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 0.873878,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.3",
"uuid": "a84e8986-8a75-4804-b57b-c7b984f65283",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 3.474286,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.3",
"uuid": "8c4ca2a6-4536-461f-8835-f79ec1b7870a",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 0.372875,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.3",
"uuid": "f2fd966a-f838-450a-8fe8-4c6230610ccc",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 0.45102,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.3",
"uuid": "73b1a9a0-51f6-46ac-9790-92c088fdaa2e",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 1.808583,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.3",
"uuid": "beeb5a7b-0e42-4910-985b-a099f10e328b",
"importer": "audio-clip",
"downloadMode": 0,
"duration": 0.6818,
"subMetas": {}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.3",
"uuid": "0853721c-3f55-4eb2-873d-e3081cfadd4b", "uuid": "0853721c-3f55-4eb2-873d-e3081cfadd4b",
"importer": "folder",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"ver": "1.0.3",
"uuid": "cd6fe422-c574-4b3d-92fe-b213e3e420f6",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"L2BG2-下雪动效_tex.png","height":128,"name":"L2BG2-下雪动效","SubTexture":[{"width":39,"y":1,"height":42,"name":"下雪效果9秒内循环/图层17","x":124},{"width":39,"y":45,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝","x":83},{"width":39,"y":1,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_7","x":1},{"width":39,"y":45,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_2","x":165},{"width":39,"y":1,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_6","x":83},{"width":39,"y":45,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_3","x":1},{"width":39,"y":45,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_9","x":42},{"width":39,"y":1,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_8","x":206},{"width":39,"y":45,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_4","x":124},{"width":39,"y":1,"height":42,"name":"下雪效果9秒内循环/图层17 拷贝 5_0","x":165},{"width":39,"y":1,"height":42,"name":"下雪效果9秒内循环/图层17_拷贝_5","x":42}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "a12678ab-a8ee-4074-8d5c-74a81a328ad2",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "d575b0a8-c642-41cc-a562-3f5a5f752255",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 128,
"platformSettings": {},
"subMetas": {
"L2BG2-下雪动效_tex": {
"ver": "1.0.6",
"uuid": "a8d48cce-7bc1-48a5-b57a-f0aaba3863d7",
"importer": "sprite-frame",
"rawTextureUuid": "d575b0a8-c642-41cc-a562-3f5a5f752255",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -5,
"offsetY": 20,
"trimX": 1,
"trimY": 1,
"width": 244,
"height": 86,
"rawWidth": 256,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"L2BG3天监树林落叶","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-382,"y":-315,"width":506,"height":456},"bone":[{"name":"root"},{"length":27,"name":"__29","parent":"root","transform":{"x":-328.15,"y":-292.55,"skX":2.333,"skY":2.333}},{"length":29,"name":"__29(3)","parent":"root","transform":{"x":63.65,"y":-18.35,"skX":47.9321,"skY":47.9321}},{"length":50,"name":"__29(2)","parent":"root","transform":{"x":87.4,"y":114.4,"skX":161.1679,"skY":161.1679}},{"length":27,"name":"__291","parent":"root","transform":{"x":-328.15,"y":-292.55,"skX":2.333,"skY":2.333}}],"slot":[{"name":"__29","parent":"__29"},{"name":"__29(2)","parent":"__29(2)"},{"name":"__29(3)","parent":"__29(3)"},{"name":"__291","parent":"__291"}],"skin":[{"slot":[{"name":"__291","display":[{"name":"落叶/__29","transform":{"x":8.67,"y":0.2,"skX":-2.33,"skY":-2.33}}]},{"name":"__29(3)","display":[{"name":"落叶/__29(3)","transform":{"x":8.97,"y":-0.46,"skX":-47.93,"skY":-47.93}}]},{"name":"__29(2)","display":[{"name":"落叶/__29(2)","transform":{"x":17.48,"y":1.1,"skX":-161.17,"skY":-161.17}}]},{"name":"__29","display":[{"name":"落叶/__29","transform":{"x":8.67,"y":0.2,"skX":-2.33,"skY":-2.33}}]}]}],"animation":[{"duration":504,"playTimes":0,"name":"normal","bone":[{"name":"__29","translateFrame":[{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-100.22,"y":-165.81},{"duration":24,"tweenEasing":0,"x":84.38,"y":333.01},{"duration":71,"tweenEasing":0,"y":831.84},{"tweenEasing":0,"y":831.84},{"duration":192,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-100.22,"y":-165.81},{"duration":24,"tweenEasing":0,"x":84.38,"y":333.01},{"duration":96,"y":831.84}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-21.84},{"duration":24,"tweenEasing":0,"rotate":26.11},{"duration":264,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-21.84},{"duration":24,"tweenEasing":0,"rotate":26.11},{"duration":96}]},{"name":"__29(3)","translateFrame":[{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-45.4,"y":-165.81},{"duration":24,"tweenEasing":0,"x":23.61,"y":333.01},{"duration":71,"tweenEasing":0,"y":831.84},{"tweenEasing":0,"y":831.84},{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-45.4,"y":-165.81},{"duration":24,"tweenEasing":0,"x":23.61,"y":333.01},{"duration":119,"tweenEasing":0,"y":831.84},{"tweenEasing":0,"y":831.84},{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-45.4,"y":-165.81},{"duration":24,"tweenEasing":0,"x":23.61,"y":333.01},{"duration":96,"y":831.84}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-45.92},{"duration":24,"tweenEasing":0,"rotate":0.82},{"duration":72,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-45.92},{"duration":24,"tweenEasing":0,"rotate":0.82},{"duration":120,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-45.92},{"duration":24,"tweenEasing":0,"rotate":0.82},{"duration":96}]},{"name":"__29(2)","translateFrame":[{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":175.44,"y":-165.81},{"duration":24,"tweenEasing":0,"x":10.99,"y":333.01},{"duration":71,"tweenEasing":0,"y":831.84},{"tweenEasing":0,"y":831.84},{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":175.44,"y":-165.81},{"duration":24,"tweenEasing":0,"x":10.99,"y":333.01},{"duration":119,"tweenEasing":0,"y":831.84},{"tweenEasing":0,"y":831.84},{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":175.44,"y":-165.81},{"duration":24,"tweenEasing":0,"x":10.99,"y":333.01},{"duration":96,"y":831.84}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-14.32},{"duration":24,"tweenEasing":0,"rotate":-27.55},{"duration":72,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-14.32},{"duration":24,"tweenEasing":0,"rotate":-27.55},{"duration":120,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-14.32},{"duration":24,"tweenEasing":0,"rotate":-27.55},{"duration":96}]},{"name":"__291","translateFrame":[{"duration":24,"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-100.22,"y":-165.81},{"duration":24,"tweenEasing":0,"x":84.38,"y":333.01},{"duration":71,"tweenEasing":0,"y":831.84},{"tweenEasing":0,"y":831.84},{"duration":191,"tweenEasing":0,"y":-664.64},{"tweenEasing":0,"y":-664.64},{"duration":24,"tweenEasing":0,"x":-144.62,"y":-473.95},{"duration":24,"tweenEasing":0,"x":23.57,"y":44.24},{"duration":24,"tweenEasing":0,"x":-53.83,"y":527.71},{"duration":96,"y":831.84}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-21.84},{"duration":24,"tweenEasing":0,"rotate":26.11},{"duration":263,"tweenEasing":0},{"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-67.51},{"duration":24,"tweenEasing":0,"rotate":4.59},{"duration":24,"tweenEasing":0,"rotate":-54.85},{"duration":96}]}],"slot":[{"name":"__29","displayFrame":[{"duration":143},{"value":-1},{"duration":191},{"value":-1},{"duration":168}]},{"name":"__29(2)","displayFrame":[{"duration":143},{"value":-1},{"duration":191},{"value":-1},{"duration":168}]},{"name":"__29(3)","displayFrame":[{"duration":143},{"value":-1},{"duration":191},{"value":-1},{"duration":168}]},{"name":"__291","displayFrame":[{"duration":143},{"value":-1},{"duration":191},{"value":-1},{"duration":168}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":1280,"height":960}}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "acef30fa-1f35-409e-a6d5-20201ef7c564",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"SubTexture":[{"width":125,"y":1,"height":46,"name":"落叶/__29","x":1},{"width":107,"y":49,"height":44,"name":"落叶/__29(2)","x":1},{"width":44,"y":95,"height":54,"name":"落叶/__29(3)","x":1}],"width":128,"imagePath":"L2BG3天监树林落叶_tex.png","height":256,"name":"L2BG3天监树林落叶"}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "7ac3d46b-c279-49ab-a725-96bbdfa48536",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "dfa2e615-6b63-4ef6-80a9-c0994ad63fa4",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 128,
"height": 256,
"platformSettings": {},
"subMetas": {
"L2BG3天监树林落叶_tex": {
"ver": "1.0.6",
"uuid": "7c38f396-2f8b-4bd0-97ca-c3390d895b7e",
"importer": "sprite-frame",
"rawTextureUuid": "dfa2e615-6b63-4ef6-80a9-c0994ad63fa4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 53,
"trimX": 1,
"trimY": 1,
"width": 125,
"height": 148,
"rawWidth": 128,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"L3boardgame动效蚂蚁","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-67.5,"y":-35,"width":138,"height":108},"bone":[{"name":"root"},{"length":66,"name":"bone","parent":"root","transform":{"x":15.6,"y":27.1,"skX":-88.3622,"skY":-88.3622}},{"length":54,"name":"__32___","parent":"bone","transform":{"x":-4.6792,"y":16.5405,"skX":-69.1196,"skY":-69.1196}},{"length":43,"name":"___16","parent":"bone","transform":{"x":10.8153,"y":-15.3654,"skX":-176.2163,"skY":-176.2163}},{"length":31,"name":"___16____2","parent":"bone","transform":{"x":4.5019,"y":-24.4887,"skX":-114.8364,"skY":-114.8364}},{"length":30,"name":"___16___","parent":"bone","transform":{"x":1.4331,"y":-26.8519,"skX":-144.3698,"skY":-144.3698}},{"length":43,"name":"___17","parent":"bone","transform":{"x":10.24,"y":-5.745,"skX":-179.805,"skY":-179.805}},{"length":53,"name":"___15","parent":"bone","transform":{"x":11.243,"y":18.8364,"skX":171.9094,"skY":171.9094}},{"length":47,"name":"___18","parent":"bone","transform":{"x":12.7868,"y":25.595,"skX":149.7136,"skY":149.7136}}],"slot":[{"name":"___17","parent":"___17"},{"name":"___18","parent":"___18"},{"name":"___16____2","parent":"___16____2"},{"name":"__32___","parent":"__32___"},{"name":"___16","parent":"___16"},{"name":"___16___","parent":"___16___"},{"name":"___15","parent":"___15"}],"skin":[{"slot":[{"name":"___16____2","display":[{"name":"L3boardgame动效蚂蚁/___16____2","transform":{"x":16.22,"y":0.86,"skX":-156.8,"skY":-156.8}}]},{"name":"___15","display":[{"name":"L3boardgame动效蚂蚁/___15","transform":{"x":26.74,"y":0.26,"skX":-83.55,"skY":-83.55}}]},{"name":"___16___","display":[{"name":"L3boardgame动效蚂蚁/___16___","transform":{"x":14.37,"y":1.38,"skX":-127.27,"skY":-127.27}}]},{"name":"___16","display":[{"name":"L3boardgame动效蚂蚁/___16","transform":{"x":22.79,"y":0.4,"skX":-95.42,"skY":-95.42}}]},{"name":"__32___","display":[{"name":"L3boardgame动效蚂蚁/__32___","transform":{"x":35.16,"y":5.18,"skX":157.48,"skY":157.48}}]},{"name":"___17","display":[{"name":"L3boardgame动效蚂蚁/___17","transform":{"x":20.76,"y":-1.51,"skX":-91.83,"skY":-91.83}}]},{"name":"___18","display":[{"name":"L3boardgame动效蚂蚁/___18","transform":{"x":24.35,"y":-0.88,"skX":-61.35,"skY":-61.35}}]}]}],"animation":[{"duration":24,"playTimes":0,"name":"normal","bone":[{"name":"__32___","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":2.92,"y":-0.08},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":2.92,"y":-0.08},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-4.98},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-4.98},{"duration":0}]},{"name":"___16","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.25,"y":8.73},{"duration":3,"tweenEasing":0,"x":2.08,"y":4.31},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.25,"y":8.73},{"duration":3,"tweenEasing":0,"x":2.08,"y":4.31},{"duration":0}]},{"name":"___16____2","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.16,"y":5.57},{"duration":3,"tweenEasing":0,"x":1.59,"y":4.21},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.16,"y":5.57},{"duration":3,"tweenEasing":0,"x":1.59,"y":4.21},{"duration":6,"tweenEasing":0},{"duration":0,"x":0.16,"y":5.57}]},{"name":"___16___","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.17,"y":6.07},{"duration":3,"tweenEasing":0,"x":4.35,"y":7.65},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.17,"y":6.07},{"duration":3,"tweenEasing":0,"x":4.35,"y":7.65},{"duration":0}]},{"name":"___17","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.05,"y":-3.78},{"duration":6,"tweenEasing":0,"x":-0.21,"y":-7.32},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.05,"y":-3.78},{"duration":6,"tweenEasing":0,"x":-0.21,"y":-7.32},{"duration":0}]},{"name":"___15","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.57,"y":-4.11},{"duration":6,"tweenEasing":0,"x":-0.23,"y":-8.06},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.57,"y":-4.11},{"duration":6,"tweenEasing":0,"x":-0.23,"y":-8.06},{"duration":0}]},{"name":"___18","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.25,"y":-8.79},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.8,"y":-4.48},{"duration":6,"tweenEasing":0,"x":-0.25,"y":-8.79},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.8,"y":-4.48},{"duration":0,"x":-0.25,"y":-8.79}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}]}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "f87f74d0-6beb-46d2-a66b-7b6d26f21236",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"L3boardgame动效蚂蚁_tex.png","height":128,"name":"L3boardgame动效蚂蚁","SubTexture":[{"width":15,"y":49,"height":51,"name":"L3boardgame动效蚂蚁/___17","x":141},{"width":33,"y":1,"height":46,"name":"L3boardgame动效蚂蚁/___18","x":141},{"width":33,"y":1,"height":17,"name":"L3boardgame动效蚂蚁/___16____2","x":176},{"width":138,"y":1,"height":98,"name":"L3boardgame动效蚂蚁/__32___","x":1},{"width":11,"y":78,"height":49,"name":"L3boardgame动效蚂蚁/___16","x":172},{"width":25,"y":49,"height":27,"name":"L3boardgame动效蚂蚁/___16___","x":172},{"width":12,"y":49,"height":60,"name":"L3boardgame动效蚂蚁/___15","x":158}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "bfe0af6c-e60f-4873-9faa-2396a0f5f291",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "0f845e17-02ff-40ca-a75e-23228ebcf7de",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 128,
"platformSettings": {},
"subMetas": {
"L3boardgame动效蚂蚁_tex": {
"ver": "1.0.6",
"uuid": "fc3e6c15-db6e-45d6-9337-5bdd99d60d7a",
"importer": "sprite-frame",
"rawTextureUuid": "0f845e17-02ff-40ca-a75e-23228ebcf7de",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -23,
"offsetY": 0,
"trimX": 1,
"trimY": 1,
"width": 208,
"height": 126,
"rawWidth": 256,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"grow","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-12.03,"y":87.9,"width":114,"height":114},"bone":[{"name":"root","transform":{"skX":0.8267,"skY":0.8267}},{"name":"bone","parent":"root","transform":{"x":1040.062,"y":-391.2294}},{"name":"point10","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point9","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point8","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point7","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point6","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point1","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point2","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point4","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point5","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point3","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}},{"name":"point","parent":"bone","transform":{"skX":-2.9955,"skY":-2.9955}}],"slot":[{"name":"生长光点","parent":"point","color":{"aM":0}},{"name":"生长光点1","parent":"point1","color":{"aM":0}},{"name":"生长光点2","parent":"point2","color":{"aM":0}},{"name":"生长光点3","parent":"point3","color":{"aM":0}},{"name":"生长光点4","parent":"point4","color":{"aM":0}},{"name":"生长光点5","parent":"point5","color":{"aM":0}},{"name":"生长光点6","parent":"point6","color":{"aM":0}},{"name":"生长光点7","parent":"point7","color":{"aM":0}},{"name":"生长光点8","parent":"point8","color":{"aM":0}},{"name":"生长光点9","parent":"point9","color":{"aM":0}},{"name":"生长光点10","parent":"point10","color":{"aM":0}}],"skin":[{"slot":[{"name":"生长光点6","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点7","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点9","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点3","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点2","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点5","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点8","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点4","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点1","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]},{"name":"生长光点10","display":[{"name":"生长光点","transform":{"x":-1019.63,"y":482.84}}]}]}],"animation":[{"duration":30,"playTimes":0,"name":"normal","bone":[{"name":"point","translateFrame":[{"duration":17,"tweenEasing":0,"x":-92,"y":175},{"duration":13,"x":-92,"y":-213}]},{"name":"point1","translateFrame":[{"duration":24,"tweenEasing":0,"x":0.5,"y":192.5},{"duration":6,"x":0.5,"y":-376.5}]},{"name":"point2","translateFrame":[{"duration":16,"tweenEasing":0,"x":-46.5,"y":165.5},{"duration":14,"x":-46.5,"y":-339.5}]},{"name":"point3","translateFrame":[{"duration":20,"tweenEasing":0,"x":-132.5,"y":193},{"duration":10,"x":-132.5,"y":-293}]},{"name":"point4","translateFrame":[{"duration":18,"tweenEasing":0,"x":56,"y":200.5},{"duration":12,"x":7.5,"y":-130}]},{"name":"point5","translateFrame":[{"duration":30,"tweenEasing":0,"x":-51,"y":153.5},{"duration":0,"x":-51,"y":-154}]},{"name":"point6","translateFrame":[{"duration":20,"tweenEasing":0,"x":-76,"y":188.5},{"duration":10,"x":-71.5,"y":-407}]},{"name":"point7","translateFrame":[{"duration":22,"tweenEasing":0,"x":27.5,"y":206},{"duration":8,"x":27.5,"y":-242.5}]},{"name":"point8","translateFrame":[{"duration":15,"tweenEasing":0,"x":-105,"y":164},{"duration":15,"x":-105,"y":-112}]},{"name":"point9","translateFrame":[{"duration":26,"tweenEasing":0,"x":-16,"y":180},{"duration":4,"x":-16,"y":-211.5}]},{"name":"point10","translateFrame":[{"duration":28,"tweenEasing":0,"x":-80.5,"y":149.5},{"duration":2,"x":-48,"y":-276.5}]}],"slot":[{"name":"生长光点","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":13,"value":{"aM":0}}]},{"name":"生长光点1","colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"生长光点2","colorFrame":[{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":14,"value":{"aM":0}}]},{"name":"生长光点3","colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":13,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"生长光点4","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"生长光点5","colorFrame":[{"duration":7,"tweenEasing":0,"value":{"aM":0}},{"duration":19,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"生长光点6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":11,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"生长光点7","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":16,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":8,"value":{"aM":0}}]},{"name":"生长光点8","colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"value":{"aM":0}}]},{"name":"生长光点9","colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":19,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":4,"value":{"aM":0}}]},{"name":"生长光点10","colorFrame":[{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":20,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":382,"height":756}},{"type":"MovieClip","frameRate":24,"name":"MovieClip","bone":[{"name":"root"}],"defaultActions":[{}]}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "eff1a4c1-1757-4ca0-9940-3f66977953f7",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"name":"grow","SubTexture":[{"name":"生长光点","x":1,"height":114,"y":1,"width":114}],"height":128,"imagePath":"grow_tex.png","width":128}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "b630677e-87db-4c04-844c-3d51bb32fff2",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "602a82eb-3ba9-43eb-a881-0cfb2f59a1cd",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 128,
"height": 128,
"platformSettings": {},
"subMetas": {
"grow_tex": {
"ver": "1.0.6",
"uuid": "9832d154-d77d-43cf-aa8f-d281ec3673af",
"importer": "sprite-frame",
"rawTextureUuid": "602a82eb-3ba9-43eb-a881-0cfb2f59a1cd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -6,
"offsetY": 6,
"trimX": 1,
"trimY": 1,
"width": 114,
"height": 114,
"rawWidth": 128,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.3",
"uuid": "e2565acb-89e9-46b8-a0c5-88ecd7608c6a",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"太空人","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-99,"y":-96.5,"width":198,"height":193},"bone":[{"name":"root"},{"length":63,"name":"bone","parent":"root","transform":{"x":5.8,"y":36.75}},{"length":37,"name":"___5___","parent":"bone","transform":{"x":-6.55,"y":8.75,"skX":142.5586,"skY":142.5586}},{"length":32,"name":"___4","parent":"bone","transform":{"x":-0.7,"y":0.35,"skX":-96.4374,"skY":-96.4374}},{"length":34,"name":"___5","parent":"bone","transform":{"x":13.85,"y":9.45,"skX":41.2169,"skY":41.2169}},{"length":53,"name":"___6","parent":"___4","transform":{"x":23.6416,"y":20.5804,"skX":71.5878,"skY":71.5878}},{"length":64,"name":"___6___","parent":"___4","transform":{"x":25.6255,"y":-16.179,"skX":-73.1344,"skY":-73.1344}}],"slot":[{"name":"___5","parent":"___5"},{"name":"___5___","parent":"___5___"},{"name":"___6","parent":"___6"},{"name":"___6___","parent":"___6___"},{"name":"___4","parent":"___4"}],"skin":[{"slot":[{"name":"___5","display":[{"name":"L4R3太空人(1)/___5","transform":{"x":20.72,"y":-17.09,"skX":-41.22,"skY":-41.22}}]},{"name":"___5___","display":[{"name":"L4R3太空人(1)/___5___","transform":{"x":32.6,"y":-0.22,"skX":-142.56,"skY":-142.56}}]},{"name":"___6","display":[{"name":"L4R3太空人(1)/___6","transform":{"x":42.16,"y":-3.95,"skX":24.85,"skY":24.85}}]},{"name":"___6___","display":[{"name":"L4R3太空人(1)/___6___","transform":{"x":42.05,"y":3.9,"skX":169.57,"skY":169.57}}]},{"name":"___4","display":[{"name":"L4R3太空人(1)/___4","transform":{"x":50.08,"y":-1.49,"skX":96.44,"skY":96.44}}]}]}],"animation":[{"duration":72,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":-10.83},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":-10.83},{"duration":0}]},{"name":"___5___","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-15.3},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-15.3},{"duration":0}]},{"name":"___5","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.77},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.77},{"duration":0}]},{"name":"___6","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":17.65},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":17.65},{"duration":0}]},{"name":"___6___","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-10.69},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-10.69},{"duration":0}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":256,"height":256}}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "fa17945b-47fb-44de-b446-f901110f15a6",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"SubTexture":[{"width":61,"y":1,"height":91,"name":"L4R3太空人(1)/___5","x":113},{"width":63,"y":171,"height":62,"name":"L4R3太空人(1)/___5___","x":92},{"width":79,"y":1,"height":61,"name":"L4R3太空人(1)/___6","x":176},{"width":89,"y":171,"height":49,"name":"L4R3太空人(1)/___6___","x":1},{"width":110,"y":1,"height":168,"name":"L4R3太空人(1)/___4","x":1}],"width":256,"height":256,"name":"太空人","imagePath":"太空人_tex.png"}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "c8939cf2-1e9c-4b76-8b2c-51b83bdee6cf",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "9190dd33-e027-4aed-9a0c-debaa6d3308a",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 256,
"platformSettings": {},
"subMetas": {
"太空人_tex": {
"ver": "1.0.6",
"uuid": "e228d8ef-3621-4129-a70c-6e618d1069bd",
"importer": "sprite-frame",
"rawTextureUuid": "9190dd33-e027-4aed-9a0c-debaa6d3308a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 11,
"trimX": 1,
"trimY": 1,
"width": 254,
"height": 232,
"rawWidth": 256,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"星星闪烁","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-1067,"y":-904,"width":1917,"height":1724},"bone":[{"name":"root"},{"length":13,"name":"图层_3","parent":"root","transform":{"x":-822.8,"y":-784.45,"skX":-12.5525,"skY":-12.5525}},{"length":7,"name":"图层_2","parent":"root","transform":{"x":58.15,"y":-869.6}},{"length":4,"name":"图层_8","parent":"root","transform":{"x":597.2,"y":-787.3}},{"length":8,"name":"图层_10","parent":"root","transform":{"x":-1045.15,"y":-356.65}},{"length":3,"name":"图层_4","parent":"root","transform":{"x":-92.25,"y":-76.15,"skX":-10.9541,"skY":-10.9541}},{"length":6,"name":"图层_9","parent":"root","transform":{"x":821.65,"y":-61.5,"skX":-16.06,"skY":-16.06}},{"length":8,"name":"图层_11","parent":"root","transform":{"x":-859.4,"y":115.8,"skX":-7.125,"skY":-7.125}},{"length":10,"name":"图层_7","parent":"root","transform":{"x":379.3,"y":465.8}},{"length":8,"name":"图层_5","parent":"root","transform":{"x":-693.45,"y":770.1,"skX":-6.3402,"skY":-6.3402}},{"length":10,"name":"图层_6","parent":"root","transform":{"x":603.85,"y":721.65,"skX":-8.8889,"skY":-8.8889}}],"slot":[{"name":"图层_11","parent":"图层_11"},{"name":"图层_10","parent":"图层_10"},{"name":"图层_9","parent":"图层_9"},{"name":"图层_8","parent":"图层_8"},{"name":"图层_7","parent":"图层_7"},{"name":"图层_6","parent":"图层_6"},{"name":"图层_5","parent":"图层_5"},{"name":"图层_4","parent":"图层_4"},{"name":"图层_3","parent":"图层_3"},{"name":"图层_2","parent":"图层_2"}],"skin":[{"slot":[{"name":"图层_8","display":[{"name":"L4R3背景星星闪烁(1)/图层_8","transform":{"x":8.3,"y":3.8}}]},{"name":"图层_5","display":[{"name":"L4R3背景星星闪烁(1)/图层_5","transform":{"x":4.16,"y":-1.65,"skX":6.34,"skY":6.34}}]},{"name":"图层_3","display":[{"name":"L4R3背景星星闪烁(1)/图层_3","transform":{"x":4.86,"y":2.57,"skX":12.55,"skY":12.55}}]},{"name":"图层_4","display":[{"name":"L4R3背景星星闪烁(1)/图层_4","transform":{"x":2.37,"y":-0.41,"skX":10.95,"skY":10.95}}]},{"name":"图层_9","display":[{"name":"L4R3背景星星闪烁(1)/图层_9","transform":{"x":1.09,"y":-0.73,"skX":16.06,"skY":16.06}}]},{"name":"图层_2","display":[{"name":"L4R3背景星星闪烁(1)/图层_2","transform":{"x":-0.15,"y":-0.4}}]},{"name":"图层_7","display":[{"name":"L4R3背景星星闪烁(1)/图层_7","transform":{"x":5.2,"y":-0.8}}]},{"name":"图层_11","display":[{"name":"L4R3背景星星闪烁(1)/图层_11","transform":{"x":0.25,"y":1.24,"skX":7.13,"skY":7.13}}]},{"name":"图层_10","display":[{"name":"L4R3背景星星闪烁(1)/图层_10","transform":{"x":2.15,"y":0.65}}]},{"name":"图层_6","display":[{"name":"L4R3背景星星闪烁(1)/图层_6","transform":{"x":1.99,"y":1.17,"skX":8.89,"skY":8.89}}]}]}],"animation":[{"duration":288,"playTimes":0,"name":"normal","slot":[{"name":"图层_11","colorFrame":[{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_10","colorFrame":[{"duration":288,"value":{"aM":0}}]},{"name":"图层_9","colorFrame":[{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":86,"value":{"aM":0}}]},{"name":"图层_8","colorFrame":[{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_7","colorFrame":[{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_6","colorFrame":[{"duration":42,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0},{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0},{"duration":44,"value":{"aM":0}}]},{"name":"图层_5","colorFrame":[{"duration":42,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0},{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0},{"duration":44,"value":{"aM":0}}]},{"name":"图层_4","colorFrame":[{"duration":42,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":14,"tweenEasing":0},{"duration":14,"tweenEasing":0,"value":{"aM":0}},{"duration":14,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":42,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":14,"tweenEasing":0},{"duration":14,"tweenEasing":0,"value":{"aM":0}},{"duration":14,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_3","colorFrame":[{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"图层_2","colorFrame":[{"duration":42,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0},{"duration":86,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":28,"tweenEasing":0},{"duration":44,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":2560,"height":1920}}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "8354da5c-060a-4b77-bf25-e0fdeb41628e",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"SubTexture":[{"width":56,"y":182,"height":58,"name":"L4R3背景星星闪烁(1)/图层_11","x":170},{"width":48,"y":182,"height":50,"name":"L4R3背景星星闪烁(1)/图层_10","x":285},{"width":55,"y":182,"height":59,"name":"L4R3背景星星闪烁(1)/图层_9","x":228},{"width":99,"y":1,"height":105,"name":"L4R3背景星星闪烁(1)/图层_8","x":1},{"width":45,"y":182,"height":48,"name":"L4R3背景星星闪烁(1)/图层_7","x":335},{"width":88,"y":1,"height":91,"name":"L4R3背景星星闪烁(1)/图层_6","x":102},{"width":99,"y":108,"height":104,"name":"L4R3背景星星闪烁(1)/图层_5","x":1},{"width":30,"y":214,"height":30,"name":"L4R3背景星星闪烁(1)/图层_4","x":1},{"width":83,"y":94,"height":86,"name":"L4R3背景星星闪烁(1)/图层_3","x":102},{"width":66,"y":182,"height":68,"name":"L4R3背景星星闪烁(1)/图层_2","x":102}],"width":512,"height":256,"name":"星星闪烁","imagePath":"星星闪烁_tex.png"}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "7b91be74-1301-4bf4-95c6-ef4528863f83",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "617ff5d7-1e4f-4e06-b531-98172cb540db",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 256,
"platformSettings": {},
"subMetas": {
"星星闪烁_tex": {
"ver": "1.0.6",
"uuid": "42b554ab-044c-48d8-9a98-81fee54ea39d",
"importer": "sprite-frame",
"rawTextureUuid": "617ff5d7-1e4f-4e06-b531-98172cb540db",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -65.5,
"offsetY": 2.5,
"trimX": 1,
"trimY": 1,
"width": 379,
"height": 249,
"rawWidth": 512,
"rawHeight": 256,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"红色宇宙飞船","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-116,"y":-355,"width":235,"height":700},"bone":[{"name":"root"},{"length":59,"name":"bone","parent":"root","transform":{"x":5.75,"y":284.15,"skX":-2.7787,"skY":-2.7787}},{"length":73,"name":"___11","parent":"root","transform":{"x":12.65,"y":-257.85,"skX":-90,"skY":-90}},{"length":30,"name":"___3","parent":"bone","transform":{"x":-1.3077,"y":-2.9669,"skX":-88.9851,"skY":-88.9851}},{"length":40,"name":"___5___","parent":"bone","transform":{"x":-6.2086,"y":9.31,"skX":141.653,"skY":141.653}},{"length":43,"name":"___1","parent":"bone","transform":{"x":16.84,"y":10.9292,"skX":41.0172,"skY":41.0172}},{"length":43,"name":"___2","parent":"___3","transform":{"x":19.9776,"y":23.7762,"skX":66.0274,"skY":66.0274}},{"length":53,"name":"___6___","parent":"___3","transform":{"x":21.2227,"y":-16.6547,"skX":-81.0386,"skY":-81.0386}}],"slot":[{"name":"___1","parent":"___1"},{"name":"___5___","parent":"___5___"},{"name":"___2","parent":"___2"},{"name":"___6___","parent":"___6___"},{"name":"___3","parent":"___3"},{"displayIndex":2,"name":"___9","parent":"___11"}],"skin":[{"slot":[{"name":"___6___","display":[{"name":"蓝色进度条吸走太空人(1)/___6___","transform":{"x":40.45,"y":5.02,"skX":172.8,"skY":172.8}}]},{"name":"___3","display":[{"name":"蓝色进度条吸走太空人(1)/___3","transform":{"x":45.36,"y":-2.91,"skX":91.76,"skY":91.76}}]},{"name":"___9","display":[{"name":"蓝色进度条吸走太空人(1)/___9","transform":{"x":-34.85,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/_______2","transform":{"x":-257.85,"y":-12.65,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___11","transform":{"x":8.15,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___4","transform":{"x":-204.35,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___5","transform":{"x":-163.85,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___8","transform":{"x":-62.85,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___7","transform":{"x":-92.85,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___6","transform":{"x":-126.85,"y":-11.15,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___10","transform":{"x":-8.85,"y":-11.15,"skX":90,"skY":90}}]},{"name":"___1","display":[{"name":"蓝色进度条吸走太空人(1)/___1","transform":{"x":20.72,"y":-14.74,"skX":-38.24,"skY":-38.24}}]},{"name":"___5___","display":[{"name":"蓝色进度条吸走太空人(1)/___5___","transform":{"x":31.77,"y":0.86,"skX":-138.87,"skY":-138.87}}]},{"name":"___2","display":[{"name":"蓝色进度条吸走太空人(1)/___2","transform":{"x":40.25,"y":-5.08,"skX":25.74,"skY":25.74}}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":32,"y":-519.68}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":32,"x":0.4,"y":0.4}]},{"name":"___5___","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-8.17},{"duration":24}]},{"name":"___1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":8.03},{"duration":24}]},{"name":"___2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-6.03},{"duration":24}]},{"name":"___6___","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.63},{"duration":24}]}],"slot":[{"name":"___9","displayFrame":[{"value":2},{"value":8},{},{"value":5},{"value":6},{"value":7},{"value":4},{"value":3},{"duration":21,"value":1},{"value":3},{"value":4},{"value":7},{"value":6},{"value":5},{},{"value":8},{"duration":24,"value":2}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":244,"height":710}}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "01d8ad52-f295-4bbc-acb8-1d3b889a551b",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"SubTexture":[{"width":61,"y":887,"height":91,"name":"蓝色进度条吸走太空人(1)/___1","x":721},{"width":63,"y":717,"height":62,"name":"蓝色进度条吸走太空人(1)/___5___","x":833},{"width":79,"y":887,"height":61,"name":"蓝色进度条吸走太空人(1)/___2","x":784},{"width":89,"y":950,"height":49,"name":"蓝色进度条吸走太空人(1)/___6___","x":784},{"width":110,"y":717,"height":168,"name":"蓝色进度条吸走太空人(1)/___3","x":721},{"width":235,"y":525,"height":448,"name":"蓝色进度条吸走太空人(1)/___6","x":484},{"width":235,"y":537,"height":178,"name":"蓝色进度条吸走太空人(1)/___11","x":721},{"width":235,"y":606,"height":380,"name":"蓝色进度条吸走太空人(1)/___7","x":247},{"width":235,"y":323,"height":212,"name":"蓝色进度条吸走太空人(1)/___10","x":721},{"width":244,"y":1,"height":710,"name":"蓝色进度条吸走太空人(1)/_______2","x":1},{"width":235,"y":1,"height":603,"name":"蓝色进度条吸走太空人(1)/___4","x":247},{"width":235,"y":713,"height":264,"name":"蓝色进度条吸走太空人(1)/___9","x":1},{"width":235,"y":1,"height":522,"name":"蓝色进度条吸走太空人(1)/___5","x":484},{"width":235,"y":1,"height":320,"name":"蓝色进度条吸走太空人(1)/___8","x":721}],"width":1024,"height":1024,"name":"红色宇宙飞船","imagePath":"红色宇宙飞船_tex.png"}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "3bca5589-5fd6-401b-8bb1-ad57a469df90",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "f462d3d4-1b5b-4828-897d-d27efd3e4b78",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"红色宇宙飞船_tex": {
"ver": "1.0.6",
"uuid": "8ffcee5f-1062-476b-8bbd-f5ab68f95f52",
"importer": "sprite-frame",
"rawTextureUuid": "f462d3d4-1b5b-4828-897d-d27efd3e4b78",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -33.5,
"offsetY": 12,
"trimX": 1,
"trimY": 1,
"width": 955,
"height": 998,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"蓝色宇宙飞船","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-117,"y":-355,"width":235,"height":700},"bone":[{"name":"root"},{"length":70,"name":"___19","parent":"root","transform":{"x":1,"y":-257,"skX":-90,"skY":-90}},{"length":59,"name":"bone","parent":"root","transform":{"x":5.75,"y":284.15,"skX":-2.7787,"skY":-2.7787}},{"length":30,"name":"___3","parent":"bone","transform":{"x":-1.3077,"y":-2.9669,"skX":-88.9851,"skY":-88.9851}},{"length":40,"name":"___5___","parent":"bone","transform":{"x":-6.2086,"y":9.31,"skX":141.653,"skY":141.653}},{"length":43,"name":"___1","parent":"bone","transform":{"x":16.84,"y":10.9292,"skX":41.0172,"skY":41.0172}},{"length":43,"name":"___2","parent":"___3","transform":{"x":19.9776,"y":23.7762,"skX":66.0274,"skY":66.0274}},{"length":53,"name":"___6___","parent":"___3","transform":{"x":21.2227,"y":-16.6547,"skX":-81.0386,"skY":-81.0386}}],"slot":[{"name":"___1","parent":"___1"},{"name":"___5___","parent":"___5___"},{"name":"___2","parent":"___2"},{"name":"___6___","parent":"___6___"},{"name":"___3","parent":"___3"},{"displayIndex":3,"name":"___17","parent":"___19"}],"skin":[{"slot":[{"name":"___3","display":[{"name":"蓝色进度条吸走太空人(1)/___3","transform":{"x":45.36,"y":-2.91,"skX":91.76,"skY":91.76}}]},{"name":"___2","display":[{"name":"蓝色进度条吸走太空人(1)/___2","transform":{"x":40.25,"y":-5.08,"skX":25.74,"skY":25.74}}]},{"name":"___17","display":[{"name":"蓝色进度条吸走太空人(1)/___17","transform":{"x":-34.5,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___18","transform":{"x":-9,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___15","transform":{"x":-93,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___19","transform":{"x":9.5,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___13","transform":{"x":-163,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/_______3","transform":{"x":-257,"y":-2,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___16","transform":{"x":-62.5,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___12","transform":{"x":-203.5,"y":-0.5,"skX":90,"skY":90}},{"name":"蓝色进度条吸走太空人(1)/___14","transform":{"x":-126.5,"y":-0.5,"skX":90,"skY":90}}]},{"name":"___5___","display":[{"name":"蓝色进度条吸走太空人(1)/___5___","transform":{"x":31.77,"y":0.86,"skX":-138.87,"skY":-138.87}}]},{"name":"___1","display":[{"name":"蓝色进度条吸走太空人(1)/___1","transform":{"x":20.72,"y":-14.74,"skX":-38.24,"skY":-38.24}}]},{"name":"___6___","display":[{"name":"蓝色进度条吸走太空人(1)/___6___","transform":{"x":40.45,"y":5.02,"skX":172.8,"skY":172.8}}]}]}],"animation":[{"duration":36,"playTimes":0,"name":"normal","bone":[{"name":"bone","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":8,"y":-519.68}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":8,"x":0.4,"y":0.4}]},{"name":"___5___","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-8.17},{"duration":0}]},{"name":"___1","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":8.03},{"duration":0}]},{"name":"___2","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-6.03},{"duration":0}]},{"name":"___6___","rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":10.63},{"duration":0}]}],"slot":[{"name":"___17","displayFrame":[{"value":3},{"value":1},{},{"value":6},{"value":2},{"value":8},{"value":4},{"value":7},{"duration":21,"value":5},{"value":7},{"value":4},{"value":8},{"value":2},{"value":6},{},{"value":1},{"duration":0,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":244,"height":710}}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "fd16e58e-12fc-4838-ae9c-cf54477a2629",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"SubTexture":[{"width":61,"y":889,"height":91,"name":"蓝色进度条吸走太空人(1)/___1","x":721},{"width":63,"y":719,"height":62,"name":"蓝色进度条吸走太空人(1)/___5___","x":833},{"width":79,"y":889,"height":61,"name":"蓝色进度条吸走太空人(1)/___2","x":784},{"width":89,"y":952,"height":49,"name":"蓝色进度条吸走太空人(1)/___6___","x":784},{"width":110,"y":719,"height":168,"name":"蓝色进度条吸走太空人(1)/___3","x":721},{"width":235,"y":540,"height":177,"name":"蓝色进度条吸走太空人(1)/___19","x":721},{"width":235,"y":1,"height":321,"name":"蓝色进度条吸走太空人(1)/___16","x":721},{"width":235,"y":713,"height":265,"name":"蓝色进度条吸走太空人(1)/___17","x":1},{"width":244,"y":1,"height":710,"name":"蓝色进度条吸走太空人(1)/_______3","x":1},{"width":235,"y":525,"height":449,"name":"蓝色进度条吸走太空人(1)/___14","x":484},{"width":235,"y":606,"height":382,"name":"蓝色进度条吸走太空人(1)/___15","x":247},{"width":235,"y":324,"height":214,"name":"蓝色进度条吸走太空人(1)/___18","x":721},{"width":235,"y":1,"height":603,"name":"蓝色进度条吸走太空人(1)/___12","x":247},{"width":235,"y":1,"height":522,"name":"蓝色进度条吸走太空人(1)/___13","x":484}],"width":1024,"height":1024,"name":"蓝色宇宙飞船","imagePath":"蓝色宇宙飞船_tex.png"}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "27903999-950a-4fc1-8964-3d6e0f05b5b6",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "f33a3b49-94e9-4402-9faf-45692af3c487",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"蓝色宇宙飞船_tex": {
"ver": "1.0.6",
"uuid": "23d9ab14-54a0-4fd1-9af8-faeb6a24425c",
"importer": "sprite-frame",
"rawTextureUuid": "f33a3b49-94e9-4402-9faf-45692af3c487",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -33.5,
"offsetY": 11,
"trimX": 1,
"trimY": 1,
"width": 955,
"height": 1000,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.3",
"uuid": "803a07bd-8d54-45a5-a888-f281c7dea819",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.3",
"uuid": "c8dbc3de-f9ad-4fef-9d0a-40a318c1d4ab",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"width":256,"imagePath":"mao_ske_tex.png","height":512,"name":"mao_ske","SubTexture":[{"width":169,"y":175,"height":33,"name":"猫01/影子","x":64},{"width":88,"y":299,"height":55,"name":"猫01/尾巴","x":1},{"width":52,"y":210,"height":59,"name":"猫01/右腿","x":126},{"width":32,"y":249,"height":58,"name":"猫01/左腿","x":181},{"width":35,"y":335,"height":61,"name":"猫01/右手","x":178},{"width":62,"y":210,"height":37,"name":"猫01/左手","x":180},{"width":84,"y":1,"height":85,"name":"猫01伸/左手伸直","x":151},{"width":84,"y":88,"height":85,"name":"猫01伸/右手伸直","x":151},{"width":61,"y":207,"height":90,"name":"猫01/身体","x":1},{"width":60,"y":210,"height":78,"name":"猫01/领带","x":64},{"width":45,"y":369,"height":38,"name":"猫01/右耳","x":46},{"width":43,"y":356,"height":43,"name":"猫01/左耳","x":1},{"width":148,"y":1,"height":93,"name":"猫01/组_1","x":1},{"width":30,"y":249,"height":30,"name":"猫01/右眼","x":215},{"width":17,"y":285,"height":3,"name":"猫01/右眉毛","x":161},{"width":30,"y":401,"height":30,"name":"猫01/左眼","x":1},{"width":16,"y":290,"height":6,"name":"猫01/左眉毛","x":64},{"width":85,"y":335,"height":32,"name":"猫01/眼镜","x":91},{"width":88,"y":290,"height":43,"name":"猫01/胡子","x":91},{"width":14,"y":271,"height":12,"name":"猫01/鼻子","x":161},{"width":33,"y":271,"height":15,"name":"猫01/嘴","x":126},{"width":79,"y":96,"height":51,"name":"猫01/帽子","x":64},{"width":61,"y":96,"height":109,"name":"猫拿话筒(1)/左小手","x":1}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "2c49557b-9fc0-4e30-a839-96f6df47f55b",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "08fd402b-bd32-4eff-ac35-56fb4a8d017c",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 256,
"height": 512,
"platformSettings": {},
"subMetas": {
"mao_ske_tex": {
"ver": "1.0.6",
"uuid": "ff487ad9-1007-425c-a69c-9f70c31e028f",
"importer": "sprite-frame",
"rawTextureUuid": "08fd402b-bd32-4eff-ac35-56fb4a8d017c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -5,
"offsetY": 40,
"trimX": 1,
"trimY": 1,
"width": 244,
"height": 430,
"rawWidth": 256,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"name":"mao","imagePath":"mao_tex.png","SubTexture":[{"name":"猫01/影子","x":1,"height":66,"y":343,"width":337},{"name":"猫01/尾巴","x":1,"height":109,"y":188,"width":175},{"name":"猫01/右腿","x":178,"height":117,"y":188,"width":104},{"name":"猫01/左腿","x":1,"height":115,"y":569,"width":64},{"name":"猫01/右手","x":427,"height":122,"y":590,"width":69},{"name":"猫01/左手","x":301,"height":74,"y":590,"width":124},{"name":"猫01伸/左手伸直","x":299,"height":169,"y":1,"width":168},{"name":"猫01伸/右手伸直","x":299,"height":169,"y":172,"width":168},{"name":"猫01/身体","x":340,"height":180,"y":343,"width":122},{"name":"猫01/领带","x":1,"height":156,"y":411,"width":120},{"name":"猫01/右耳","x":155,"height":76,"y":602,"width":90},{"name":"猫01/左耳","x":67,"height":85,"y":602,"width":86},{"name":"猫01/组_1","x":1,"height":185,"y":1,"width":296},{"name":"猫01/右眼","x":1,"height":60,"y":686,"width":59},{"name":"猫01/右眉毛","x":67,"height":5,"y":595,"width":33},{"name":"猫01/左眼","x":247,"height":60,"y":666,"width":59},{"name":"猫01/左眉毛","x":247,"height":12,"y":602,"width":31},{"name":"猫01/眼镜","x":301,"height":63,"y":525,"width":170},{"name":"猫01/胡子","x":123,"height":85,"y":515,"width":176},{"name":"猫01/鼻子","x":67,"height":24,"y":569,"width":28},{"name":"猫01/嘴","x":1,"height":30,"y":299,"width":65},{"name":"猫01/帽子","x":123,"height":102,"y":411,"width":158}],"height":1024,"width":512}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "8001c435-43bc-4830-9680-a63f39212777",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "81432446-c7c0-45b3-b3e4-7198ce3416d6",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 1024,
"platformSettings": {},
"subMetas": {
"mao_tex": {
"ver": "1.0.6",
"uuid": "a1c23863-781a-412e-a9b1-90759fca0e9f",
"importer": "sprite-frame",
"rawTextureUuid": "81432446-c7c0-45b3-b3e4-7198ce3416d6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -7.5,
"offsetY": 138.5,
"trimX": 1,
"trimY": 1,
"width": 495,
"height": 745,
"rawWidth": 512,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"frameRate":24,"name":"vs","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-296.5,"y":-297,"width":593,"height":594},"bone":[{"name":"root"},{"name":"star","parent":"root"},{"name":"vs","parent":"root"},{"name":"star1","parent":"root"},{"name":"star11","parent":"root"},{"name":"star12","parent":"root"},{"name":"star13","parent":"root"},{"name":"star14","parent":"root"},{"name":"star15","parent":"root"},{"name":"star16","parent":"root"},{"name":"star17","parent":"root"},{"name":"star18","parent":"root"},{"name":"star19","parent":"root"},{"name":"star110","parent":"root"}],"slot":[{"name":"star_01","parent":"star","color":{"aM":0}},{"name":"star_011","parent":"star1","color":{"aM":0}},{"name":"star_0111","parent":"star11","color":{"aM":0}},{"name":"star_0112","parent":"star12","color":{"aM":0}},{"name":"star_0113","parent":"star13","color":{"aM":0}},{"name":"star_0114","parent":"star14","color":{"aM":0}},{"name":"star_0115","parent":"star15","color":{"aM":0}},{"name":"star_0116","parent":"star16","color":{"aM":0}},{"name":"star_0117","parent":"star17","color":{"aM":0}},{"name":"star_0118","parent":"star18","color":{"aM":0}},{"name":"star_0119","parent":"star19","color":{"aM":0}},{"name":"star_01110","parent":"star110","color":{"aM":0}},{"name":"img_vs","parent":"vs"}],"skin":[{"slot":[{"name":"star_0115","display":[{"name":"star_01"}]},{"name":"star_0111","display":[{"name":"star_01"}]},{"name":"star_0118","display":[{"name":"star_01"}]},{"name":"star_01","display":[{"name":"star_01"}]},{"name":"star_011","display":[{"name":"star_01"}]},{"name":"img_vs","display":[{"name":"img_vs"}]},{"name":"star_0113","display":[{"name":"star_01"}]},{"name":"star_0117","display":[{"name":"star_01"}]},{"name":"star_0119","display":[{"name":"star_01"}]},{"name":"star_0116","display":[{"name":"star_01"}]},{"name":"star_01110","display":[{"name":"star_01"}]},{"name":"star_0112","display":[{"name":"star_01"}]},{"name":"star_0114","display":[{"name":"star_01"}]}]}],"animation":[{"duration":35,"playTimes":0,"name":"normal","bone":[{"name":"star","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":-293.5}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"vs","scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.47,"y":1.47},{"duration":11,"tweenEasing":0,"x":1.47,"y":1.47},{"duration":10}]},{"name":"star1","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":388.5}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star11","translateFrame":[{"duration":20},{"duration":11,"tweenEasing":0},{"duration":4,"x":-315,"y":-153.5}],"scaleFrame":[{"duration":20},{"duration":11,"tweenEasing":0},{"duration":4,"x":-0.36,"y":-0.36}]},{"name":"star12","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":-189,"y":277}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star13","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":-165,"y":-345.5}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star14","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":125,"y":297}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star15","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":129.5,"y":-340}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star16","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":199.5,"y":247.5}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star17","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"y":-389}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star18","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":-32.5,"y":370.5}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star19","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":-311.5,"y":181.5}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]},{"name":"star110","translateFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":321,"y":-202}],"scaleFrame":[{"duration":20},{"duration":15,"tweenEasing":0},{"duration":0,"x":0.01,"y":0.01}]}],"slot":[{"name":"star_01","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":10}]},{"name":"star_011","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"star_0111","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"star_0112","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"star_0113","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"star_0114","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":10}]},{"name":"star_0115","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0,"value":{"aM":0}},{"duration":10}]},{"name":"star_0116","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9}]},{"name":"star_0117","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9}]},{"name":"star_0118","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9}]},{"name":"star_0119","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"star_01110","colorFrame":[{"duration":20,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":5,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}],"zOrder":{"frame":[{"duration":35}]}}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":1024,"height":1024}},{"type":"MovieClip","frameRate":24,"name":"MovieClip","bone":[{"name":"root"}],"defaultActions":[{}]}]}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "e84b01ac-5237-4326-8da5-d00c302b7579",
"importer": "dragonbones",
"subMetas": {}
}
\ No newline at end of file
{"name":"vs","SubTexture":[{"name":"star_01","x":1,"height":169,"y":597,"width":174},{"name":"img_vs","x":1,"height":594,"y":1,"width":593}],"height":1024,"imagePath":"vs_tex.png","width":1024}
\ No newline at end of file
{
"ver": "1.0.3",
"uuid": "bc069cc1-8ec1-4427-b94d-345f05fd81b4",
"importer": "dragonbones-atlas",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "38e3a4c0-56a6-49d1-ab2b-d989a30fe5ef",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"vs_tex": {
"ver": "1.0.6",
"uuid": "952faf36-6ef8-4e33-8baf-a1e3ee74ba8c",
"importer": "sprite-frame",
"rawTextureUuid": "38e3a4c0-56a6-49d1-ab2b-d989a30fe5ef",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -214.5,
"offsetY": 128.5,
"trimX": 1,
"trimY": 1,
"width": 593,
"height": 765,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{ {
"ver": "1.1.2", "ver": "1.1.3",
"uuid": "20185448-a1ca-4de2-8b37-7bf6cdfccbae", "uuid": "20185448-a1ca-4de2-8b37-7bf6cdfccbae",
"importer": "folder",
"isBundle": false, "isBundle": false,
"bundleName": "", "bundleName": "",
"priority": 1, "priority": 1,
......
{
"ver": "1.1.2",
"uuid": "a4e476f4-86cf-4ead-a83f-fd2dd847409d",
"importer": "ttf-font",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.3",
"uuid": "2b3c96a3-2e44-4a85-beb3-59350832b214",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
export as namespace Play;
declare class EventEmitter<T> {
on<K extends keyof T>(event: K, listener: (payload: T[K]) => any): this;
on(evt: string, listener: Function): this;
once<K extends keyof T>(event: K, listener: (payload: T[K]) => any): this;
once(evt: string, listener: Function): this;
off<K extends keyof T>(evt: K | string, listener?: Function): this;
emit<K extends keyof T>(evt: K | string, ...args: any[]): boolean;
}
export enum Event {
/** 断开连接 */
DISCONNECTED = 'disconnected',
/** 加入到大厅 */
LOBBY_JOINED = 'lobbyJoined',
/** 大厅房间列表变化 */
LOBBY_ROOM_LIST_UPDATED = 'lobbyRoomListUpdate',
/** 有新玩家加入房间 */
PLAYER_ROOM_JOINED = 'newPlayerJoinedRoom',
/** 有玩家离开房间 */
PLAYER_ROOM_LEFT = 'playerLeftRoom',
/** 玩家活跃属性变化 */
PLAYER_ACTIVITY_CHANGED = 'playerActivityChanged',
/** 主机变更 */
MASTER_SWITCHED = 'masterSwitched',
/** 离开房间 */
ROOM_LEFT = 'roomLeft',
/** 被踢出房间 */
ROOM_KICKED = 'roomKicked',
/** 房间系统属性变化 */
ROOM_SYSTEM_PROPERTIES_CHANGED = 'roomSystemPropertiesChanged',
/** 房间自定义属性变化 */
ROOM_CUSTOM_PROPERTIES_CHANGED = 'roomCustomPropertiesChanged',
/** 玩家自定义属性变化 */
PLAYER_CUSTOM_PROPERTIES_CHANGED = 'playerCustomPropertiesChanged',
/** 自定义事件 */
CUSTOM_EVENT = 'customEvent',
/** 错误事件 */
ERROR = 'error',
}
export enum ReceiverGroup {
/** 其他人(除了自己之外的所有人) */
Others,
/** 所有人(包括自己) */
All,
/** 主机客户端 */
MasterClient,
}
interface CustomProperties {
[key: string]: any;
}
interface CustomEventData {
[key: string]: any;
}
interface ErrorEvent {
code: number;
detail: string;
}
declare interface PlayEvent {
connected: void;
connectFailed: ErrorEvent;
disconnected: void;
lobbyJoined: void;
lobbyLeft: void;
lobbyRoomListUpdate: void;
roomCreated: void;
roomCreateFailed: ErrorEvent;
roomJoined: void;
roomJoinFailed: ErrorEvent;
newPlayerJoinedRoom: {
newPlayer: Player;
};
playerLeftRoom: {
leftPlayer: Player;
};
playerActivityChanged: {
player: Player;
};
masterSwitched: {
newMaster: Player;
};
roomLeft: void;
roomKicked: {
code: number;
msg: string;
};
roomCustomPropertiesChanged: {
changedProps: CustomProperties;
};
roomSystemPropertiesChanged: {
changedProps: CustomProperties;
};
playerCustomPropertiesChanged: {
player: Player;
changedProps: CustomProperties;
};
customEvent: {
eventId: number;
eventData: CustomEventData;
senderId: number;
};
error: ErrorEvent;
}
export class LobbyRoom {
readonly roomName: string;
readonly maxPlayerCount: number;
readonly expectedUserIds: string[];
readonly emptyRoomTtl: number;
readonly playerTtl: number;
readonly playerCount: number;
readonly customRoomPropertiesForLobby: CustomProperties;
}
export class Player {
readonly userId: string;
readonly actorId: number;
readonly isLocal: boolean;
readonly isMaster: boolean;
readonly isActive: boolean;
setCustomProperties(
properties: CustomProperties,
opts?: {
expectedValues?: CustomProperties;
}
): Promise<void>;
readonly customProperties: CustomProperties;
}
export class Room {
readonly name: string;
readonly open: boolean;
readonly visible: boolean;
readonly maxPlayerCount: number;
readonly master: Player;
readonly masterId: number;
readonly expectedUserIds: string[];
readonly playerList: Player[];
getPlayer(actorId: number): Player;
setCustomProperties(
properties: CustomProperties,
opts?: {
expectedValues?: CustomProperties;
}
): Promise<void>;
readonly customProperties: CustomProperties;
setOpen(open: boolean): Promise<void>;
setVisible(visible: boolean): Promise<void>;
setRoomMaxPlayerCount(count: number): Promise<void>;
setRoomExpectedUserIds(expectedUserIds: string[]): Promise<void>;
clearRoomExpectedUserIds(): Promise<void>;
addRoomExpectedUserIds(expectedUserIds: string[]): Promise<void>;
removeRoomExpectedUserIds(expectedUserIds: string[]): Promise<void>;
setMaster(newMasterId: number): Promise<void>;
sendEvent(
eventId: number,
eventData?: CustomEventData,
options?: {
receiverGroup?: ReceiverGroup;
targetActorIds?: number[];
}
): Promise<void>;
kickPlayer(
actorId: number,
opts?: {
code?: number;
msg?: string;
}
): Promise<void>;
leave(): Promise<void>;
}
export class Client extends EventEmitter<PlayEvent> {
readonly room: Room;
readonly player: Player;
readonly lobbyRoomList: LobbyRoom[];
userId: string;
constructor(opts: {
appId: string;
appKey: string;
userId: string;
ssl?: boolean;
feature?: string;
gameVersion?: string;
playServer?: string;
});
connect(): Promise<Client>;
reconnect(): Promise<Client>;
reconnectAndRejoin(): Promise<Room>;
close(): Promise<void>;
joinLobby(): Promise<void>;
leaveLobby(): Promise<void>;
createRoom(opts?: {
roomName?: string;
roomOptions?: Object;
expectedUserIds?: string[];
}): Promise<Room>;
joinRoom(
roomName: string,
opts?: {
expectedUserIds?: string[];
}
): Promise<Room>;
rejoinRoom(roomName: string): Promise<Room>;
joinOrCreateRoom(
roomName: string,
opts?: {
roomOptions?: Object;
expectedUserIds: string[];
}
): Promise<Room>;
joinRandomRoom(opts?: {
matchProperties?: Object;
expectedUserIds?: string[];
}): Promise<Room>;
matchRandom(
piggybackPeerId: string,
opts?: { matchProperties?: Object; expectedUserIds?: string[] }
): Promise<LobbyRoom>;
setRoomOpen(open: boolean): Promise<void>;
setRoomVisible(visible: boolean): Promise<void>;
setRoomMaxPlayerCount(count: number): Promise<void>;
setRoomExpectedUserIds(expectedUserIds: string[]): Promise<void>;
clearRoomExpectedUserIds(): Promise<void>;
addRoomExpectedUserIds(expectedUserIds: string[]): Promise<void>;
removeRoomExpectedUserIds(expectedUserIds: string[]): Promise<void>;
setMaster(newMasterId: number): Promise<void>;
sendEvent(
eventId: number,
eventData?: CustomEventData,
options?: {
receiverGroup?: ReceiverGroup;
targetActorIds?: number[];
}
): Promise<void>;
leaveRoom(): Promise<void>;
kickPlayer(
actorId: number,
opts?: {
code?: number;
msg?: string;
}
): Promise<void>;
pauseMessageQueue(): void;
resumeMessageQueue(): void;
}
export enum CreateRoomFlag {
FixedMaster = 1,
MasterUpdateRoomProperties = 2,
}
export function setAdapters(newAdapters: { WebSocket: Function }): void;
export enum LogLevel {
Debug = 'Debug',
Warn = 'Warn',
Error = 'Error',
}
export function setLogger(logger: {
Debug: (...args: any[]) => any;
Warn: (...args: any[]) => any;
Error: (...args: any[]) => any;
}): void;
export enum PlayErrorCode {
OPEN_WEBSOCKET_ERROR = 10001,
SEND_MESSAGE_STATE_ERROR = 10002,
}
export function registerType<T>(
type: T,
typeId: number,
serializeMethod: (obj: T) => Uint8Array,
deserializeMethod: (bytes: Uint8Array) => T
): void;
export function serializeObject(obj: Object): Uint8Array;
export function deserializeObject(bytes: Uint8Array): Object;
{
"ver": "2.0.2",
"uuid": "809d5125-8be7-46c1-a074-d261695a1d28",
"importer": "text",
"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.
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