Commit 7da96aed authored by liujiangnan's avatar liujiangnan

feat: 初始化

parent a3f5ba9f
No preview for this file type
......@@ -57,25 +57,10 @@ npm start
* 下载模板调试专用app
安卓下载:
http://download-iplayabc.oss-cn-beijing.aliyuncs.com/iDebugABC.apk
![avatar](http://staging-teach.cdn.ireadabc.com/084f2f95-8213-4c5a-8c46-b194819d7677.png)
iOS下载:
由于调试APP没有上架App Store 所以需要先获取手机的UDID 发送给我们的技术支持,加入后才可以扫码下载安装
获取UDID:https://www.pgyer.com/tools/udid
下载iOS: https://www.pgyer.com/gS0X
有时可能需要反复调试一些功能性的问题,与原生APP相关或者手上临时没有设备,我们提供了一个网页版的调试方式
http://staging-openapi.iteachabc.com/api/courseware/v1/middle/debug
* 启动本地服务
```
......@@ -90,6 +75,5 @@ npm start
### 注意事项及常见问题
* 项目里所有文件及文件夹的命名方式要注意不能包含空格、汉字、减号
* 开发者新建的脚本文件(.js/.ts)的文件名必须包含项目名称,例如在 test_01 项目中添加一个脚本文件(如想命名为 hello.ts );则需要命名为 hello_test_01.ts
* 项目里尽量不要使用setTimeout、setInterval等定时器,如果使用了记得在onDestroy中释放掉(onDestroy 是指CocosCreator的生命周期钩子)
* 理论上禁止使用全局变量,因为模板到线上会进行组装,常见问题是一个模板使用多次造成全局变量被读脏
{
"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
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
async onLoadEnd() {
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.initData();
this.initView();
this.initListener();
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
initView() {
this.initBg();
this.initPic();
this.initBtn();
this.initIcon();
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
pic1 = null;
pic2 = null;
initPic() {
const canvas = cc.find('Canvas');
const maxW = canvas.width * 0.7;
this.getSprNodeByUrl(this.data.pic_url, (sprNode) => {
const picNode1 = sprNode;
picNode1.scale = maxW / picNode1.width;
picNode1.baseX = picNode1.x;
canvas.addChild(picNode1);
this.pic1 = picNode1;
const labelNode = new cc.Node();
labelNode.color = cc.Color.YELLOW;
const label = labelNode.addComponent(cc.Label);
label.string = this.data.text;
label.fontSize = 60;
label.lineHeight = 60;
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent('cc.Label').font;
picNode1.addChild(labelNode);
});
this.getSprNodeByUrl(this.data.pic_url_2, (sprNode) => {
const picNode2 = sprNode;
picNode2.scale = maxW / picNode2.width;
canvas.addChild(picNode2);
picNode2.x = canvas.width;
picNode2.baseX = picNode2.x;
this.pic2 = picNode2;
const labelNode = new cc.Node();
const label = labelNode.addComponent(cc.RichText);
const size = 60
label.font = cc.find('Canvas/res/font/BRLNSDB').getComponent(cc.Label).font;
label.string = `<outline color=#751e00 width=4><size=${size}><color=#ffffff>${this.data.text}</color></size></outline>`
label.lineHeight = size;
picNode2.addChild(labelNode);
});
}
initIcon() {
const iconNode = this.getSprNode('icon');
iconNode.zIndex = 5;
iconNode.anchorX = 1;
iconNode.anchorY = 1;
iconNode.parent = cc.find('Canvas');
iconNode.x = iconNode.parent.width / 2 - 10;
iconNode.y = iconNode.parent.height / 2 - 10;
iconNode.on(cc.Node.EventType.TOUCH_START, () => {
this.playAudioByUrl(this.data.audio_url);
})
}
curPage = null;
initBtn() {
this.curPage = 0;
const bottomPart = cc.find('Canvas/bottomPart');
bottomPart.zIndex = 5; // 提高层级
bottomPart.x = bottomPart.parent.width / 2;
bottomPart.y = -bottomPart.parent.height / 2;
const leftBtnNode = bottomPart.getChildByName('btn_left');
//节点中添加了button组件 则可以添加click事件监听
leftBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 0) {
return;
}
this.curPage = 0
this.leftMove();
this.playLocalAudio('btn');
})
const rightBtnNode = bottomPart.getChildByName('btn_right');
//节点中添加了button组件 则可以添加click事件监听
rightBtnNode.on('click', () => {
if (!this._cantouch) {
return;
}
if (this.curPage == 1) {
return;
}
this.curPage = 1
this.rightMove();
// 游戏结束时需要调用这个方法通知系统作业完成
onHomeworkFinish();
this.playLocalAudio('btn');
})
}
leftMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
rightMove() {
this._cantouch = false;
const len = this.pic1.parent.width;
cc.tween(this.pic1)
.to(1, { x: this.pic1.baseX - len }, { easing: 'cubicInOut' })
.start();
cc.tween(this.pic2)
.to(1, { x: this.pic2.baseX - len }, { easing: 'cubicInOut' })
.call(() => {
this._cantouch = true;
})
.start();
}
// update (dt) {},
initListener() {
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
{
"ver": "1.0.8",
"uuid": "408a67f8-65fa-4cf1-8cf2-83e20e1a0fd5",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import { defaultData } from "../script/defaultData";
export class MyCocosSceneComponent extends cc.Component {
// 生命周期 onLoad
onLoad() {
this.initSceneData();
this.initSize();
}
_imageResList = null;
_audioResList = null;
_animaResList = null;
initSceneData() {
this._imageResList = [];
this._audioResList = [];
this._animaResList = [];
}
_designSize = null; // 设计分辨率
_frameSize = null; // 屏幕分辨率
_mapScaleMin = null; // 场景中常用缩放(取大值)
_mapScaleMax = null; // 场景中常用缩放(取小值)
_cocosScale = null; // cocos 自缩放 (较少用到)
initSize() {
// 注意cc.winSize只有在适配后(修改fitHeight/fitWidth后)才能获取到正确的值,因此使用cc.getFrameSize()来获取初始的屏幕大小
let screen_size = cc.view.getFrameSize().width / cc.view.getFrameSize().height
let design_size = cc.Canvas.instance.designResolution.width / cc.Canvas.instance.designResolution.height
let f = screen_size >= design_size
cc.Canvas.instance.fitHeight = f
cc.Canvas.instance.fitWidth = !f
const frameSize = cc.view.getFrameSize();
this._frameSize = frameSize;
this._designSize = cc.view.getDesignResolutionSize();
let sx = cc.winSize.width / frameSize.width;
let sy = cc.winSize.height / frameSize.height;
this._cocosScale = Math.min(sx, sy);
sx = frameSize.width / this._designSize.width;
sy = frameSize.height / this._designSize.height;
this._mapScaleMin = Math.min(sx, sy) * this._cocosScale;
this._mapScaleMax = Math.max(sx, sy) * this._cocosScale;
cc.director['_scene'].width = frameSize.width;
cc.director['_scene'].height = frameSize.height;
}
data = null;
// 生命周期 start
start() {
if (window && (<any>window).courseware && (<any>window).courseware.getData) {
(<any>window).courseware.getData((data) => {
this.log('data:' + data);
this.data = data || this.getDefaultData();
this.data = JSON.parse(JSON.stringify(this.data));
this.preloadItem();
})
} else {
this.data = this.getDefaultData();
this.preloadItem();
}
}
getDefaultData() {
return defaultData;
}
preloadItem() {
this.addPreloadImage();
this.addPreloadAudio();
this.addPreloadAnima();
this.preload();
}
addPreloadImage() {
}
addPreloadAudio() {
}
addPreloadAnima() {
}
preload() {
const preloadArr = this._imageResList.concat(this._audioResList).concat(this._animaResList);
cc.assetManager.preloadAny(preloadArr, null, null, async (err, data) => {
if (window && window["air"]) {
// window["air"].onCourseInScreen = (next) => {
// window["air"].isCourseInScreen = true;
// this.onLoadEnd();
// next();
// };
await this.onLoadEnd();
window["air"].hideAirClassLoading();
} else {
await this.onLoadEnd();
}
cc.debug.setDisplayStats(false);
});
}
log (str) {
const node = cc.find('middleLayer');
if(node){
node.getComponent('middleLayer').log(str);
}else{
console.log(str);
}
}
async onLoadEnd() {
}
// ------------------------------------------------
getSprNode(resName) {
const sf = cc.find('Canvas/res/img/' + resName).getComponent(cc.Sprite).spriteFrame;
const node = new cc.Node();
node.addComponent(cc.Sprite).spriteFrame = sf;
return node;
}
getSpriteFrimeByUrl(url, cb) {
cc.loader.load({ url }, (err, img) => {
const spriteFrame = new cc.SpriteFrame(img)
if (cb) {
cb(spriteFrame);
}
})
}
getSprNodeByUrl(url, cb) {
const node = new cc.Node();
const spr = node.addComponent(cc.Sprite);
this.getSpriteFrimeByUrl(url, (sf) => {
spr.spriteFrame = sf;
if (cb) {
cb(node);
}
})
}
playAudioByUrl(audio_url, cb = null) {
if (audio_url) {
cc.assetManager.loadRemote(audio_url, (err, audioClip) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8);
if (cb) {
cc.audioEngine.setFinishCallback(audioId, () => {
cb();
});
}
});
}else{
cb && cb();
}
}
}
\ No newline at end of file
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.1.2",
"uuid": "8ba21262-178f-4fa5-afc9-2c1dd50ba3ab",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "cb9fa4ea-66ca-45af-ad31-e445c7b0ef32",
"uuid": "38b1b69c-5309-4e6b-a9f8-66abd1d72003",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.1.2",
"uuid": "20185448-a1ca-4de2-8b37-7bf6cdfccbae",
"uuid": "b1fa46e4-941f-4f5c-b2de-2892f66246e1",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "2.0.1",
"uuid": "ee680664-50c4-4567-8445-80db76c98f53",
"downloadMode": 0,
"duration": 1.776327,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b",
"uuid": "c1bb4825-4f0f-4fe3-8da0-8a3ce5e25767",
"downloadMode": 0,
"duration": 0.130612,
"subMetas": {}
......
{
"ver": "2.0.1",
"uuid": "4ca06b10-6d5f-40e8-8c55-466bf87d1637",
"downloadMode": 0,
"duration": 1.28,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "392d826b-7b16-47de-8b23-1867e573d79e",
"downloadMode": 0,
"duration": 1.645714,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "c8d58061-033a-4532-be74-16ff17de8789",
"downloadMode": 0,
"duration": 1.248,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "043210f8-3b98-4251-9bbd-c970eeecfb70",
"downloadMode": 0,
"duration": 4.04898,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "31a91b7c-4ae4-42a9-9b99-afea7a8b25ed",
"downloadMode": 0,
"duration": 0.548571,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "c3e60e7f-db79-4724-9d43-75263c5dd731",
"downloadMode": 0,
"duration": 0.504,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "85a57ad6-3610-487c-a343-0926c99350a7",
"downloadMode": 0,
"duration": 1.959184,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "76e7bb19-a0db-4035-b4f1-10e8ae0e8827",
"downloadMode": 0,
"duration": 0.496327,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "6ae88876-73cc-44b8-a57d-38d4b6c029ab",
"downloadMode": 0,
"duration": 0.173333,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "503b998c-71e5-4eb6-ad74-f4022bff865c",
"downloadMode": 0,
"duration": 2.115917,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "247af95f-f313-4644-ad68-1010d68b3fa5",
"downloadMode": 0,
"duration": 2.016,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "cff094e9-1eeb-4eff-9bec-58955bddc19c",
"downloadMode": 0,
"duration": 0.940417,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "d89d1d07-76f1-4280-aef9-f9c8b22a19ce",
"downloadMode": 0,
"duration": 0.835918,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "0853721c-3f55-4eb2-873d-e3081cfadd4b",
"uuid": "3f9ecad3-bee0-4dbe-90dc-8a59f0bb6487",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.1.2",
"uuid": "d78e0195-da91-47c6-baf9-701840567182",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"clean_hand","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"armatureName","aabb":{"x":-323.5,"y":-323.5,"width":647,"height":647},"bone":[{"name":"root"},{"name":"card","parent":"root","transform":{"x":-102,"y":-11}},{"name":"bone","parent":"root","transform":{"x":-1.4,"y":361}},{"name":"bone1","parent":"root","transform":{"x":-0.65,"y":350.55}},{"length":180,"name":"hand","parent":"bone","transform":{"x":158.4,"y":-219,"skX":-91.9092,"skY":-91.9092,"scX":0.9,"scY":0.9}},{"length":180,"name":"hand1","parent":"bone1","transform":{"x":94.8491,"y":-208.55,"skX":88.0908,"skY":-91.9092,"scX":0.9,"scY":0.9}}],"slot":[{"name":"bg","parent":"root"},{"name":"card","parent":"card"},{"name":"hand","parent":"hand"},{"name":"hand1","parent":"hand1"},{"name":"zi","parent":"root"},{"name":"jiqi","parent":"root"}],"skin":[{"slot":[{"name":"hand1","display":[{"name":"hand","transform":{"x":96.53,"y":-29.3,"skX":91.91,"skY":91.91}}]},{"name":"zi","display":[{"name":"zi","transform":{"y":199}}]},{"name":"jiqi","display":[{"name":"jiqi","transform":{"x":0.5,"y":-162.5}}]},{"name":"bg","display":[{"name":"bg"}]},{"name":"card","display":[{"name":"card","transform":{"x":-2,"y":-1}}]},{"name":"hand","display":[{"name":"hand","transform":{"x":96.53,"y":-29.3,"skX":91.91,"skY":91.91}}]}]}],"animation":[{"duration":100,"playTimes":0,"name":"newAnimation","bone":[{"name":"hand","translateFrame":[{"duration":7},{"duration":2,"tweenEasing":0,"x":-31.92,"y":76.66},{"duration":91,"x":-171.89,"y":18.85}],"rotateFrame":[{"duration":7},{"duration":2,"tweenEasing":0},{"duration":91,"rotate":-35.58}]},{"name":"card","translateFrame":[{"duration":36},{"duration":14,"tweenEasing":0},{"tweenEasing":0,"x":-256.53},{"duration":36,"tweenEasing":0,"x":45.13},{"duration":13,"tweenEasing":0,"x":45.13},{"duration":0,"x":-218.98}]},{"name":"hand1","translateFrame":[{"duration":3,"tweenEasing":0,"x":-31.92,"y":76.66},{"duration":20,"tweenEasing":0,"x":37.78,"y":-7.16},{"duration":24,"tweenEasing":0,"x":37.78,"y":39.5},{"duration":30,"tweenEasing":0,"x":37.78,"y":-7.16},{"duration":3,"tweenEasing":0,"x":37.78,"y":39.5},{"duration":18,"tweenEasing":0,"x":37.78,"y":39.5},{"duration":2,"x":37.78,"y":-7.16}],"rotateFrame":[{"duration":23,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":31.36},{"duration":30,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":31.36},{"duration":20}]},{"name":"bone","translateFrame":[{"duration":7},{"duration":20,"tweenEasing":0,"y":92.91},{"duration":28,"tweenEasing":0,"y":-185.78},{"tweenEasing":0,"y":-185.78},{"duration":20,"tweenEasing":0,"y":125.7},{"duration":24,"y":-185.78}],"rotateFrame":[{"duration":7},{"duration":20,"tweenEasing":0},{"duration":28,"tweenEasing":0,"rotate":66.71},{"tweenEasing":0,"rotate":66.71},{"duration":20,"tweenEasing":0},{"duration":24,"rotate":66.71}]},{"name":"bone1","rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":20,"tweenEasing":0},{"duration":32,"tweenEasing":0,"rotate":-63.69},{"rotate":-63.69},{"duration":21,"tweenEasing":0},{"duration":2,"rotate":-63.69}]}],"slot":[{"name":"bg","colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":96}]},{"name":"hand","colorFrame":[{"duration":7,"tweenEasing":0,"value":{"aM":0}},{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":17,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":16,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":22,"value":{"aM":0}}]},{"name":"card","colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"tweenEasing":0,"value":{"aM":0}},{"duration":45,"tweenEasing":0},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":45,"tweenEasing":0},{"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"zi","colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":96}]},{"name":"jiqi","colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":96}]},{"name":"hand1","colorFrame":[{"duration":23,"tweenEasing":0,"value":{"aM":0}},{"tweenEasing":0,"value":{"aM":0}},{"duration":22,"tweenEasing":0},{"tweenEasing":0},{"duration":30,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"newAnimation"}]}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "ee1a7488-c20b-41cd-a5fa-58f23d618fba",
"subMetas": {}
}
\ No newline at end of file
{"width":1024,"SubTexture":[{"width":647,"y":1,"height":647,"name":"bg","x":1},{"width":83,"y":685,"height":83,"name":"card","x":169},{"width":166,"y":650,"height":210,"name":"hand","x":1},{"width":225,"y":650,"height":33,"name":"zi","x":169},{"width":198,"y":862,"height":142,"name":"jiqi","x":1}],"height":1024,"name":"clean_hand","imagePath":"clean_hand_tex.png"}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "7671f281-e4fe-4854-909d-7ad35dc93638",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f8725b69-53ca-449f-8aa9-347f4d0590a1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"clean_hand_tex": {
"ver": "1.0.4",
"uuid": "abcef872-e851-4b0b-b0a3-47c0e38b1eab",
"rawTextureUuid": "f8725b69-53ca-449f-8aa9-347f4d0590a1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -187.5,
"offsetY": 9.5,
"trimX": 1,
"trimY": 1,
"width": 647,
"height": 1003,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "98eab6a4-4e1d-434d-abaa-f31cffa50b97",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1",
"uuid": "e97c5a45-7f0c-4a01-a266-480e179d2e50",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "e8bd16b0-3804-45a9-a8ca-f52c02224f55",
"uuid": "3057f521-40e2-4985-b30f-c2f81ecaf7b1",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.2.9",
"uuid": "0737ce42-24f0-45c6-8e1a-8bdab4f74ba3",
"uuid": "d19b7acc-9db6-4c71-865c-6aa2e00f3a2f",
"asyncLoadAssets": false,
"autoReleaseAssets": true,
"autoReleaseAssets": false,
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.8",
"uuid": "f8b451ff-857c-4ca8-9870-866bc5154a29",
"uuid": "864d51a0-607c-40b5-a6f7-4618636bccd6",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
{
"ver": "1.1.2",
"uuid": "b0c008bc-cf92-463b-8360-0984e13c2e4d",
"uuid": "000bd989-338c-4fe4-a712-c50a1473a50b",
"isBundle": false,
"bundleName": "",
"priority": 1,
......
{
"ver": "1.0.8",
"uuid": "c41b0e51-55d7-443c-af3a-b22c3dd9b9e5",
"uuid": "534ccda4-3aa2-48f0-ae17-af6221dfe89e",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
This diff is collapsed.
{
"ver": "1.0.8",
"uuid": "b54300af-b8e5-4b4e-aa2f-9ac1cef7b598",
"uuid": "a2ea3c92-c535-4cfb-bec7-325676ba7d02",
"isPlugin": true,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
This diff is collapsed.
{
"ver": "1.0.8",
"uuid": "ade7af40-d56d-4087-bbc6-2888fef55353",
"uuid": "bd8a183a-a846-4c18-8bf5-50a16d60581a",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
{
"ver": "1.1.2",
"uuid": "f9481bb8-1c20-4d51-8c6b-77fabe20f5c7",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "090063dc-db8d-4611-a065-1b2bb413e6a1",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
light.png
size: 608,245
format: RGBA8888
filter: Linear,Linear
repeat: none
图层 641
rotate: false
xy: 2, 2
size: 253, 241
orig: 277, 255
offset: 13, 12
index: -1
图层 642
rotate: true
xy: 494, 129
size: 114, 112
orig: 127, 124
offset: 7, 6
index: -1
椭圆 3 拷贝
rotate: false
xy: 257, 8
size: 235, 235
orig: 251, 251
offset: 8, 8
index: -1
{
"ver": "1.0.1",
"uuid": "767749e5-1604-4de3-955b-15aa2746b93a",
"subMetas": {}
}
\ No newline at end of file
{"skeleton":{"hash":"MTutoTOmFCHtxdWMqMrAgCIPJD8","spine":"3.8.99","x":-237.29,"y":-128.34,"width":374.11,"height":255.86,"images":"","audio":""},"bones":[{"name":"root"},{"name":"椭圆 3 拷贝","parent":"root","x":-0.28,"y":-0.17},{"name":"椭圆 3 拷贝2","parent":"root","x":-1.52,"y":-0.05},{"name":"bone","parent":"root","x":-173.25,"y":-26.72},{"name":"bone2","parent":"root","x":-173.25,"y":-26.72},{"name":"bone3","parent":"root","x":-173.25,"y":-26.72},{"name":"bone4","parent":"root","x":-173.25,"y":-26.72},{"name":"bone5","parent":"root","x":-173.25,"y":-26.72},{"name":"bone6","parent":"root","x":-173.25,"y":-26.72},{"name":"bone7","parent":"root","x":-173.25,"y":-26.72},{"name":"bone8","parent":"root","x":-173.25,"y":-26.72},{"name":"bone9","parent":"root","x":-173.25,"y":-26.72}],"slots":[{"name":"图层 641","bone":"椭圆 3 拷贝2","attachment":"图层 641"},{"name":"图层 642","bone":"bone","attachment":"图层 642"},{"name":"图层 648","bone":"bone7","attachment":"图层 642"},{"name":"图层 649","bone":"bone8","attachment":"图层 642"},{"name":"图层 650","bone":"bone9","attachment":"图层 642"},{"name":"图层 643","bone":"bone2","attachment":"图层 642"},{"name":"图层 644","bone":"bone3","attachment":"图层 642"},{"name":"图层 645","bone":"bone4","attachment":"图层 642"},{"name":"图层 646","bone":"bone5","attachment":"图层 642"},{"name":"图层 647","bone":"bone6","attachment":"图层 642"},{"name":"椭圆 3 拷贝","bone":"椭圆 3 拷贝","attachment":"椭圆 3 拷贝"}],"skins":[{"name":"default","attachments":{"图层 641":{"图层 641":{"x":-0.17,"y":-0.79,"width":277,"height":255}},"图层 642":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 643":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 644":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 645":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 646":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 647":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 648":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 649":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"图层 650":{"图层 642":{"x":-0.54,"y":0.12,"width":127,"height":124}},"椭圆 3 拷贝":{"椭圆 3 拷贝":{"x":-1.19,"y":2.2,"width":251,"height":251}}}}],"animations":{"animation":{"slots":{"图层 641":{"color":[{"time":0.1667,"color":"ffffffff"},{"time":0.3333,"color":"ffffff00"}]},"图层 642":{"color":[{"time":0.3667,"color":"ffffffff"},{"time":0.5333,"color":"ffffff00"}]},"图层 643":{"color":[{"time":0.3667,"color":"ffffffff"},{"time":0.5333,"color":"ffffff00"}]},"图层 644":{"color":[{"time":0.3667,"color":"ffffffff"},{"time":0.5333,"color":"ffffff00"}]},"图层 645":{"color":[{"time":0.3,"color":"ffffffff"},{"time":0.4667,"color":"ffffff00"}]},"图层 646":{"color":[{"time":0.3,"color":"ffffffff"},{"time":0.5,"color":"ffffff00"}]},"图层 647":{"color":[{"time":0.3,"color":"ffffffff"},{"time":0.4333,"color":"ffffff00"}]},"图层 648":{"color":[{"time":0.4333,"color":"ffffffff"},{"time":0.5667,"color":"ffffff00"}]},"图层 649":{"color":[{"time":0.3333,"color":"ffffffff"},{"time":0.5,"color":"ffffff00"}]},"图层 650":{"color":[{"time":0.3333,"color":"ffffffff"},{"time":0.5,"color":"ffffff00"}]},"椭圆 3 拷贝":{"color":[{"time":0.2667,"color":"ffffffff"},{"time":0.5667,"color":"ffffff00"}]}},"bones":{"椭圆 3 拷贝2":{"scale":[{"x":0,"y":0},{"time":0.3333}]},"椭圆 3 拷贝":{"scale":[{"x":0,"y":0},{"time":0.5667,"x":1.2,"y":1.2}]},"bone":{"translate":[{"x":171.6,"y":25.8},{"time":0.3,"x":237.04,"y":-25.85},{"time":0.5333,"x":269.54,"y":-91}],"scale":[{"x":0,"y":0},{"time":0.0333,"x":1.2,"y":1.2}]},"bone2":{"translate":[{"x":171.6,"y":25.8},{"time":0.3,"x":260.31,"y":64.71},{"time":0.5333,"x":283.72,"y":13.96}],"scale":[{"x":0,"y":0},{"time":0.0333,"x":1.1,"y":1.1}]},"bone3":{"translate":[{"x":171.6,"y":25.8},{"time":0.3,"x":193.63,"y":119.98},{"time":0.5333,"x":237.95,"y":54.65}],"scale":[{"x":0,"y":0},{"time":0.0333,"x":1.3,"y":1.3}]},"bone4":{"translate":[{"x":171.6,"y":25.8},{"time":0.2333,"x":223.53,"y":27.83},{"time":0.4667,"x":289.96,"y":-48.45}],"scale":[{"x":0,"y":0},{"time":0.0333}]},"bone5":{"translate":[{"x":171.6,"y":25.8},{"time":0.2333,"x":100.92,"y":-0.18},{"time":0.5,"x":63.21,"y":-61.24}],"scale":[{"x":0,"y":0},{"time":0.0333,"x":0.9,"y":0.9}]},"bone6":{"translate":[{"x":171.6,"y":25.8},{"time":0.2333,"x":97.81,"y":73.05},{"time":0.4333,"x":23.97,"y":42.02}],"scale":[{"x":0,"y":0},{"time":0.0333}]},"bone7":{"translate":[{"x":171.6,"y":25.8},{"time":0.3667,"x":129.64,"y":119.56},{"time":0.5667,"x":103.97,"y":70.56}],"scale":[{"x":0,"y":0},{"time":0.0333,"x":1.2,"y":1.2}]},"bone8":{"translate":[{"x":171.6,"y":25.8},{"time":0.2667,"x":130.09,"y":-43.05},{"time":0.5,"x":122.25,"y":-76.12}],"scale":[{"x":0,"y":0},{"time":0.0333,"x":0.8,"y":0.8}]},"bone9":{"translate":[{"x":171.6,"y":25.8},{"time":0.2667,"x":80.81,"y":25.45},{"time":0.5,"x":37.73,"y":-34.86}],"scale":[{"x":0,"y":0},{"time":0.0333}]}}}}}
\ No newline at end of file
{
"ver": "1.2.3",
"uuid": "de84fa88-3f49-4b3e-a185-029473a054ec",
"textures": [
"dca54979-c45c-47c8-9fb5-578bdc26afae"
],
"scale": 1,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"uuid": "dca54979-c45c-47c8-9fb5-578bdc26afae",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 144,
"height": 144,
"width": 608,
"height": 245,
"platformSettings": {},
"subMetas": {
"icon": {
"light": {
"ver": "1.0.4",
"uuid": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a",
"rawTextureUuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"uuid": "164f9505-def2-4508-a5f5-7ef10af9ee1c",
"rawTextureUuid": "dca54979-c45c-47c8-9fb5-578bdc26afae",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 3,
"offsetY": 0,
"trimX": 2,
"trimY": 2,
"width": 138,
"height": 141,
"rawWidth": 144,
"rawHeight": 144,
"width": 604,
"height": 241,
"rawWidth": 608,
"rawHeight": 245,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "1.1.2",
"uuid": "3188af4c-29a8-4e5f-bed4-f4d6a4daac5f",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
right1.png
size: 435, 702
format: RGBA8888
filter: Linear, Linear
repeat: none
kuang
rotate: false
xy: 242, 115
size: 191, 191
orig: 207, 208
offset: 8, 9
index: -1
light1
rotate: true
xy: 2, 308
size: 392, 393
orig: 687, 529
offset: 57, 126
index: -1
light2
rotate: false
xy: 2, 62
size: 238, 244
orig: 445, 393
offset: 130, 73
index: -1
point
rotate: false
xy: 397, 664
size: 36, 36
orig: 36, 36
offset: 0, 0
index: -1
star
rotate: false
xy: 242, 2
size: 122, 111
orig: 132, 115
offset: 5, 4
index: -1
{
"ver": "1.0.1",
"uuid": "c1552d6d-c29b-4ce1-a745-bfa493d71fbb",
"subMetas": {}
}
\ No newline at end of file
{"skeleton":{"hash":"eYZP4ip08h8","spine":"3.8-from-4.0-from-4.1.19","x":-345.93,"y":-327.93,"width":790.02,"height":664.55,"images":"./images/","audio":"D:/01项目/01项目/07麻将项目/01制作文件/01游戏"},"bones":[{"name":"root"},{"name":"kuang","parent":"root","x":-5.11,"y":8.28},{"name":"light1","parent":"root","x":3.3,"y":3.14},{"name":"light2","parent":"root","x":-3.22,"y":4.39},{"name":"point","parent":"root","x":-97.4,"y":-266.25,"scaleX":0.2434,"scaleY":0.1947},{"name":"star","parent":"root","x":-120.93,"y":136.51,"scaleX":0.5,"scaleY":0.5},{"name":"light3","parent":"root","x":-3.22,"y":4.39,"scaleX":1.1,"scaleY":1.1},{"name":"point2","parent":"root","x":-11.59,"y":175.85},{"name":"star2","parent":"root","x":-187.51,"y":-17.25},{"name":"star3","parent":"root","x":-102.73,"y":55.56,"scaleX":0.5,"scaleY":0.5},{"name":"star4","parent":"root","x":-60.1,"y":-196.87,"scaleX":0.5,"scaleY":0.5},{"name":"point3","parent":"root","x":18.04,"y":-221.71,"scaleX":0.2434,"scaleY":0.1947},{"name":"point4","parent":"root","x":-185.95,"y":-35.38,"scaleX":0.8,"scaleY":0.8},{"name":"star5","parent":"root","x":-187.51,"y":-17.25},{"name":"point5","parent":"root","x":163.34,"y":-0.73},{"name":"point6","parent":"root","x":159.44,"y":30.88},{"name":"point7","parent":"root","x":149.05,"y":-69.14,"scaleX":0.9,"scaleY":0.9},{"name":"point8","parent":"root","x":98.82,"y":-127.16,"scaleX":0.4,"scaleY":0.4},{"name":"point9","parent":"root","x":164.64,"y":-97.72,"scaleX":0.3,"scaleY":0.3}],"slots":[{"name":"light1","bone":"light1","attachment":"light1"},{"name":"light2","bone":"light2","color":"ffffff47","attachment":"light2"},{"name":"light3","bone":"light3","color":"ffffff47","attachment":"light2"},{"name":"star","bone":"star","attachment":"star"},{"name":"star4","bone":"star4","attachment":"star"},{"name":"star3","bone":"star3","attachment":"star"},{"name":"star2","bone":"star2","attachment":"star"},{"name":"star5","bone":"star5","attachment":"star"},{"name":"point","bone":"point","attachment":"point"},{"name":"point3","bone":"point3","attachment":"point"},{"name":"point2","bone":"point2","attachment":"point"},{"name":"point5","bone":"point5","attachment":"point"},{"name":"point7","bone":"point7","attachment":"point"},{"name":"point9","bone":"point9","attachment":"point"},{"name":"point8","bone":"point8","attachment":"point"},{"name":"point6","bone":"point6","attachment":"point"},{"name":"point4","bone":"point4","attachment":"point"},{"name":"kuang","bone":"kuang","attachment":"kuang"}],"skins":[{"name":"default","attachments":{"kuang":{"kuang":{"x":6.22,"y":-8.11,"width":207,"height":208}},"light1":{"light1":{"x":97.28,"y":-66.57,"width":687,"height":529}},"light2":{"light2":{"x":-15.6,"y":-4.72,"width":445,"height":393}},"light3":{"light2":{"x":-17.92,"y":16.03,"rotation":-33.02,"width":445,"height":393}},"point":{"point":{"x":0.21,"y":-1.19,"width":36,"height":36}},"point2":{"point":{"x":0.21,"y":-1.19,"width":36,"height":36}},"point3":{"point":{"x":0.21,"y":-1.19,"width":36,"height":36}},"point4":{"point":{"x":0.21,"y":-1.19,"width":36,"height":36}},"point5":{"point":{"x":-0.99,"y":0.2,"scaleX":0.8,"scaleY":0.8,"rotation":65.1,"width":36,"height":36}},"point6":{"point":{"x":0.39,"y":-2.15,"scaleX":0.6,"scaleY":0.6,"width":36,"height":36}},"point7":{"point":{"x":-1.42,"y":0.63,"scaleX":0.8,"scaleY":0.8,"rotation":65.1,"width":36,"height":36}},"point8":{"point":{"x":-1.42,"y":0.63,"scaleX":0.8,"scaleY":0.8,"rotation":65.1,"width":36,"height":36}},"point9":{"point":{"x":-1.42,"y":0.63,"scaleX":0.8,"scaleY":0.8,"rotation":65.1,"width":36,"height":36}},"star":{"star":{"x":1.12,"y":-7.59,"width":132,"height":115}},"star2":{"star":{"x":-67.85,"y":34.09,"scaleX":0.2,"scaleY":0.2,"width":132,"height":115}},"star3":{"star":{"x":1.12,"y":-7.59,"width":132,"height":115}},"star4":{"star":{"x":1.12,"y":-7.59,"width":132,"height":115}},"star5":{"star":{"x":1.12,"y":-7.59,"width":132,"height":115}}}}],"animations":{"animation":{"slots":{"kuang":{"color":[{"color":"ffffff6d"},{"time":0.0333,"color":"ffffffff","curve":"stepped"},{"time":0.4,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}],"attachment":[{"name":null},{"time":0.0333,"name":"kuang"}]},"light1":{"color":[{"time":0.2667,"color":"ffffffff"},{"time":0.5,"color":"ffffff00"}],"attachment":[{"name":null},{"time":0.0333,"name":"light1"}]},"light2":{"color":[{"color":"ffffff57"},{"time":0.6,"color":"ffffff00"}],"attachment":[{"name":null},{"time":0.0333,"name":"light2"}]},"light3":{"color":[{"time":0.0333,"color":"ffffff10"},{"time":0.2667,"color":"ffffff54"},{"time":0.6,"color":"ffffff00"}],"attachment":[{"name":null},{"time":0.0333,"name":"light2"}]},"point":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point2":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point3":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point4":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point5":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point6":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point7":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point8":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"point9":{"attachment":[{"name":null},{"time":0.0333,"name":"point"}]},"star":{"attachment":[{"name":null},{"time":0.0333,"name":"star"}]},"star2":{"color":[{"time":0.1667,"color":"ffffffff"},{"time":0.3,"color":"ffffff57"},{"time":0.5,"color":"ffffffff"}],"attachment":[{"name":null},{"time":0.0333,"name":"star"}]},"star3":{"attachment":[{"name":null},{"time":0.0333,"name":"star"}]},"star4":{"attachment":[{"name":null},{"time":0.0333,"name":"star"}]},"star5":{"attachment":[{"name":null},{"time":0.0333,"name":"star"}]}},"bones":{"kuang":{"rotate":[{}],"translate":[{}],"scale":[{"x":0.8,"y":0.8},{"time":0.0333,"x":2,"y":2},{"time":0.2333,"y":1.1},{"time":0.6,"x":0.8,"y":0.8}]},"light1":{"rotate":[{},{"time":0.5,"angle":-39.07}],"translate":[{}],"scale":[{},{"time":0.0333,"x":0.5,"y":0.5},{"time":0.5,"x":1.3,"y":1.3}],"shear":[{}]},"point":{"rotate":[{}],"translate":[{"x":44.52,"y":126.37},{"time":0.6,"x":-32.14,"y":-81.68}],"scale":[{}],"shear":[{}]},"point2":{"rotate":[{}],"translate":[{"x":22.15,"y":-127.89},{"time":0.6,"x":18.34,"y":100.87}],"scale":[{},{"time":0.0333,"x":0,"y":0},{"time":0.1667}],"shear":[{}]},"point3":{"rotate":[{}],"translate":[{"x":-18.67,"y":76.11},{"time":0.6,"x":-1.34,"y":-69.63}],"scale":[{}],"shear":[{}]},"point5":{"rotate":[{}],"translate":[{"x":-79.55,"y":-37.26},{"time":0.6,"x":94.45,"y":-35.76}],"scale":[{},{"time":0.0667,"x":0,"y":0},{"time":0.1667}],"shear":[{}]},"point6":{"rotate":[{}],"translate":[{"x":-76.53,"y":-29.2},{"time":0.6,"x":86.2,"y":3.67}],"scale":[{},{"time":0.0333,"x":0,"y":0},{"time":0.1333}],"shear":[{}]},"point7":{"rotate":[{}],"translate":[{"x":-40.21,"y":38.05},{"time":0.6,"x":113.71,"y":-44.02}],"scale":[{}],"shear":[{}]},"point8":{"rotate":[{}],"translate":[{"x":-38.05,"y":69.65},{"time":0.6,"x":94.62,"y":-129.6}],"scale":[{}],"shear":[{}]},"point9":{"rotate":[{}],"translate":[{"x":-49.54,"y":12.21},{"time":0.6,"x":110.82,"y":-107.44}],"scale":[{}],"shear":[{}]},"star2":{"rotate":[{}],"translate":[{"x":95.41,"y":17.69},{"time":0.6,"x":-30.72,"y":-10.52}],"scale":[{}],"shear":[{}]},"star5":{"rotate":[{}],"translate":[{"x":71.29,"y":17.15},{"time":0.6,"x":-58.19,"y":-10.58}],"scale":[{},{"time":0.0333,"x":0,"y":0},{"time":0.1333},{"time":0.4,"x":0.6,"y":0.6},{"time":0.6}],"shear":[{},{"time":0.1333,"x":1.2}]},"light2":{"rotate":[{},{"time":0.5,"angle":-33.24}],"translate":[{}],"scale":[{},{"time":0.0333,"x":0.3,"y":0.3},{"time":0.5,"x":1.5,"y":1.5}],"shear":[{}]},"light3":{"rotate":[{},{"time":0.5,"angle":45.7}],"translate":[{}],"scale":[{},{"time":0.0333,"x":0.455,"y":0.455},{"time":0.5,"x":1.636,"y":1.636}],"shear":[{}]},"star4":{"rotate":[{}],"translate":[{"x":23.08,"y":105.4},{"time":0.6,"x":-58.92,"y":-50.88}],"scale":[{},{"time":0.0333,"x":0,"y":0},{"time":0.2}],"shear":[{}]},"star3":{"rotate":[{}],"translate":[{},{"time":0.6,"x":-29.34,"y":21.09}],"scale":[{}],"shear":[{}]},"point4":{"rotate":[{}],"translate":[{"x":68.07,"y":2.14},{"time":0.6,"x":-42.18,"y":-56.85}],"scale":[{},{"time":0.0333,"x":0,"y":0},{"time":0.1667}],"shear":[{}]},"star":{"rotate":[{}],"translate":[{"x":64.45,"y":-71.5},{"time":0.6,"x":-61.44,"y":40.35}],"scale":[{}],"shear":[{}]}}}}}
\ No newline at end of file
{
"ver": "1.2.3",
"uuid": "c45bbf8e-1964-420c-a54c-bfed36c7e650",
"textures": [
"a7c1e4e2-aab9-4920-8be7-8666625869a2"
],
"scale": 1,
"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.
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