修改,增加特效
9
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
//格式化代码
|
||||
"editor.snippetSuggestions": "inline",
|
||||
"editor.formatOnType": true,
|
||||
"editor.formatOnSave": true,
|
||||
"codingcopilot.enableAutoCompletions": true
|
||||
|
||||
|
||||
}
|
|
@ -110,6 +110,8 @@ export default class Block extends cc.Component {
|
|||
@property(cc.SpriteAtlas)
|
||||
ice_SpriteFrame: cc.SpriteAtlas = null;
|
||||
|
||||
@property(sp.SkeletonData)
|
||||
magic_SkeletonData: sp.SkeletonData = null;
|
||||
|
||||
// LIFE-CYCLE CALLBACKS:
|
||||
// @property(cc.SpriteAtlas)
|
||||
|
@ -783,6 +785,57 @@ export default class Block extends cc.Component {
|
|||
MapConroler._instance.nextLevel();
|
||||
this.node.active = false;
|
||||
this.node.removeFromParent();
|
||||
//如果是锤子状态消除
|
||||
// if (!MapConroler._instance.ishammer) {
|
||||
|
||||
// // 记录添加magic时的锚点
|
||||
// this.node.anchorX = 0.5;
|
||||
// this.node.anchorY = 0.5;
|
||||
// this.node.addChild(new cc.Node("magic"));
|
||||
// let effectNode = this.node.getChildByName("magic");
|
||||
// effectNode.setPosition(0, 0);
|
||||
|
||||
// // 改锚点后,修正magic的位置
|
||||
|
||||
// this.node.anchorX = 1;
|
||||
// this.node.anchorY = 0;
|
||||
|
||||
// // 重新设置magic的位置,使其视觉上不变
|
||||
// let parentSize = this.node.getContentSize();
|
||||
// effectNode.setPosition(
|
||||
// effectNode.x + parentSize.width * (0.5 - 1),
|
||||
// effectNode.y + parentSize.height * (0.5 - 0)
|
||||
// );
|
||||
// switch (this.node.name) {
|
||||
// case "block14":
|
||||
// this.node.anchorX = 0.66;
|
||||
// this.node.anchorY = 0;
|
||||
// effectNode.setPosition(-50, 120);
|
||||
// break;
|
||||
// case "block18":
|
||||
// this.node.anchorX = 0.66;
|
||||
// this.node.anchorY = 0;
|
||||
// effectNode.setPosition(-50, 200);
|
||||
// break;
|
||||
// case "block10":
|
||||
// effectNode.setPosition(0, 200);
|
||||
// break;
|
||||
// case "block21":
|
||||
// effectNode.setPosition(0, 130);
|
||||
// break;
|
||||
// case "block16":
|
||||
// effectNode.setPosition(0, 180);
|
||||
// break;
|
||||
// default:
|
||||
// break;
|
||||
// }
|
||||
|
||||
// effectNode.addComponent(sp.Skeleton);
|
||||
// effectNode.getComponent(sp.Skeleton).skeletonData = this.magic_SkeletonData;
|
||||
// effectNode.getComponent(sp.Skeleton).setAnimation(0, "play", false);
|
||||
// }
|
||||
// MapConroler._instance.ishammer = false;
|
||||
|
||||
}, 200);
|
||||
}
|
||||
|
||||
|
|
|
@ -47,7 +47,9 @@ export default class MapConroler extends cc.Component {
|
|||
destroyBtn: cc.Button = null;
|
||||
@property(cc.Button)
|
||||
magicBtn: cc.Button = null;
|
||||
|
||||
//魔法棒特效
|
||||
@property(cc.Node)
|
||||
magics: cc.Node = null;
|
||||
@property(cc.Node)
|
||||
mask: cc.Node = null;
|
||||
|
||||
|
@ -109,6 +111,7 @@ export default class MapConroler extends cc.Component {
|
|||
mapBlockArray: any; //地图的所有格子状态存储
|
||||
pause: boolean = false;//暂停状态
|
||||
hammer: boolean = false;//锤子状态
|
||||
ishammer: boolean = false;//魔法棒与锤子区分
|
||||
freezeArray: any; //冻结
|
||||
loackArray: any; //上锁
|
||||
particleEffects: cc.ParticleAsset[];
|
||||
|
@ -257,6 +260,7 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
this.pause = false;
|
||||
this.hammer = false;
|
||||
this.ishammer = false;
|
||||
this.wallNum = 0;
|
||||
this.setMapInfo();
|
||||
this.blocks = [];
|
||||
|
@ -1821,6 +1825,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.hammerMask.active = true;
|
||||
|
||||
this.hammer = true;
|
||||
this.ishammer = true;
|
||||
cc.fx.GameConfig.GM_INFO.hammerAmount -= 1;
|
||||
if (cc.fx.GameConfig.GM_INFO.hammerAmount < 0)
|
||||
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
|
||||
|
@ -1924,6 +1929,16 @@ export default class MapConroler extends cc.Component {
|
|||
magicBtn.getComponent("btnControl").setTouch(true);
|
||||
}, 1000);
|
||||
|
||||
// this.magics.active = true;
|
||||
// this.magics.getComponent(sp.Skeleton).setAnimation(1, "play", false);
|
||||
// //监听播放完后节点隐藏
|
||||
// this.magics.getComponent(sp.Skeleton).setCompleteListener((entry) => {
|
||||
// if (entry.animation.name === "play") {
|
||||
// // 动画播放结束后执行的逻辑
|
||||
// this.magics.active = false;
|
||||
// }
|
||||
// });
|
||||
|
||||
cc.fx.GameConfig.GM_INFO.magicAmount -= 1;
|
||||
if (cc.fx.GameConfig.GM_INFO.magicAmount < 0)
|
||||
cc.fx.GameConfig.GM_INFO.magicAmount = 0;
|
||||
|
|
|
@ -15,7 +15,7 @@ export default class NewClass extends cc.Component {
|
|||
heatht: cc.Node = null;
|
||||
//切换的节点
|
||||
@property([cc.Node])
|
||||
switchNode: cc.Node[] =[];
|
||||
switchNode: cc.Node[] = [];
|
||||
//倒计时健康回复
|
||||
@property(cc.Node)
|
||||
timeNode: cc.Node = null;
|
||||
|
@ -28,7 +28,7 @@ export default class NewClass extends cc.Component {
|
|||
|
||||
btn_Touch: boolean = true;
|
||||
|
||||
onLoad() {
|
||||
onLoad() {
|
||||
this.btn_Touch = true;
|
||||
}
|
||||
start() {
|
||||
|
@ -36,9 +36,9 @@ export default class NewClass extends cc.Component {
|
|||
this.openPop();
|
||||
}
|
||||
//打开商店界面
|
||||
openPop() {
|
||||
console.log("打开heath弹窗",cc.fx.GameConfig.GM_INFO.hp);
|
||||
|
||||
openPop() {
|
||||
console.log("打开heath弹窗", cc.fx.GameConfig.GM_INFO.hp);
|
||||
|
||||
//NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 30, 15, "time_", this.coin, true);
|
||||
}
|
||||
startGame() {
|
||||
|
@ -58,16 +58,16 @@ export default class NewClass extends cc.Component {
|
|||
}
|
||||
|
||||
//购买体力
|
||||
buyHeath(){
|
||||
if(!this.btn_Touch){
|
||||
buyHeath() {
|
||||
if (!this.btn_Touch) {
|
||||
return;
|
||||
}
|
||||
this.btn_Touch = false;
|
||||
//获取当前体力
|
||||
let curHeath = cc.fx.GameConfig.GM_INFO.hp;
|
||||
let curHeath = cc.fx.GameConfig.GM_INFO.hp;
|
||||
//获取当前金币
|
||||
let curCoin = cc.fx.GameConfig.GM_INFO.coin;
|
||||
if(curCoin >= 1000){
|
||||
if (curCoin >= 1000) {
|
||||
this.switchButtons[1].active = false;
|
||||
cc.fx.GameTool.changeCoin(-1000);
|
||||
cc.fx.GameConfig.GM_INFO.hp = 5;
|
||||
|
@ -84,7 +84,7 @@ export default class NewClass extends cc.Component {
|
|||
cc.fx.GameTool.getHealth(null);
|
||||
})
|
||||
}
|
||||
else{
|
||||
else {
|
||||
MiniGameSdk.API.showToast("金币不足,无法购买体力");
|
||||
setTimeout(() => {
|
||||
this.btn_Touch = true;
|
||||
|
@ -94,13 +94,13 @@ export default class NewClass extends cc.Component {
|
|||
}
|
||||
|
||||
//金币不够购买金币
|
||||
openShop(){
|
||||
openShop() {
|
||||
//获取场景中的 JiaZai 组件
|
||||
const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
|
||||
if (parentNode) {
|
||||
const jiazaiComp = parentNode.getComponent(JiaZai);
|
||||
if (jiazaiComp) {
|
||||
jiazaiComp.openShop();
|
||||
jiazaiComp.openShop();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -111,7 +111,7 @@ export default class NewClass extends cc.Component {
|
|||
//销毁预制体
|
||||
console.log("关闭heath弹窗");
|
||||
//关闭计时器
|
||||
// 获取场景中的 JiaZai 组件
|
||||
// 获取场景中的 JiaZai 组件
|
||||
const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
|
||||
if (jiazaiNode) {
|
||||
const jiazaiComp = jiazaiNode.getComponent(JiaZai);
|
||||
|
|
9
assets/animation/caidai.anim
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"__type__": "cc.AnimationClip",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"_duration": 0,
|
||||
"sample": 60,
|
||||
"curveData": {},
|
||||
"events": []
|
||||
}
|
6
assets/animation/caidai.anim.meta
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "2.1.2",
|
||||
"uuid": "e0f0c571-048a-45b2-a826-493c1fc72e86",
|
||||
"importer": "animation-clip",
|
||||
"subMetas": {}
|
||||
}
|
3213
assets/prefab/pop/jiesuan.prefab
Normal file
9
assets/prefab/pop/jiesuan.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "25091af6-ab2f-4963-8bf1-940e7226d033",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
|
@ -784,6 +784,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -784,6 +784,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1222,6 +1222,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1222,6 +1222,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1222,6 +1222,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1222,6 +1222,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1368,6 +1368,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -784,6 +784,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -784,6 +784,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -784,6 +784,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -784,6 +784,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1076,6 +1076,9 @@
|
|||
"ice_SpriteFrame": {
|
||||
"__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130"
|
||||
},
|
||||
"magic_SkeletonData": {
|
||||
"__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -28,19 +28,25 @@
|
|||
},
|
||||
{
|
||||
"__id__": 267
|
||||
},
|
||||
{
|
||||
"__id__": 324
|
||||
},
|
||||
{
|
||||
"__id__": 327
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 324
|
||||
"__id__": 335
|
||||
},
|
||||
{
|
||||
"__id__": 325
|
||||
"__id__": 336
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 326
|
||||
"__id__": 337
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -744,7 +750,7 @@
|
|||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 1080,
|
||||
"height": 1920
|
||||
"height": 1500
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
|
@ -812,7 +818,7 @@
|
|||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 1080,
|
||||
"height": 1600
|
||||
"height": 1500
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
|
@ -824,7 +830,7 @@
|
|||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
-69.89,
|
||||
40.697,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
|
@ -11981,6 +11987,437 @@
|
|||
"fileId": "e5881p4DhA2o2G5SieRWXh",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "feijinbi",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": false,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 325
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 326
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 1574.25,
|
||||
"height": 791.17
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
39.031,
|
||||
-94.499,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "sp.Skeleton",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 324
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
|
||||
}
|
||||
],
|
||||
"paused": false,
|
||||
"defaultSkin": "default",
|
||||
"defaultAnimation": "feijinbi",
|
||||
"_preCacheMode": 0,
|
||||
"_cacheMode": 0,
|
||||
"loop": false,
|
||||
"premultipliedAlpha": false,
|
||||
"timeScale": 1,
|
||||
"_accTime": 0,
|
||||
"_playCount": 0,
|
||||
"_frameCache": null,
|
||||
"_curFrame": null,
|
||||
"_skeletonCache": null,
|
||||
"_animationName": "feijinbi",
|
||||
"_animationQueue": [],
|
||||
"_headAniInfo": null,
|
||||
"_playTimes": 0,
|
||||
"_isAniComplete": true,
|
||||
"_N$skeletonData": {
|
||||
"__uuid__": "6e4dbe22-e1d1-48f1-af36-a0dca5c602da"
|
||||
},
|
||||
"_N$_defaultCacheMode": 0,
|
||||
"_N$debugSlots": false,
|
||||
"_N$debugBones": false,
|
||||
"_N$debugMesh": false,
|
||||
"_N$useTint": false,
|
||||
"_N$enableBatch": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "d36at0pq1IM6stLlGvXvPb",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "New Button",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 328
|
||||
}
|
||||
],
|
||||
"_active": false,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 332
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 334
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 100,
|
||||
"height": 40
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-10.715,
|
||||
-878.64,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "Background",
|
||||
"_objFlags": 512,
|
||||
"_parent": {
|
||||
"__id__": 327
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 329
|
||||
},
|
||||
{
|
||||
"__id__": 330
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 331
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 100,
|
||||
"height": 100
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Sprite",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 328
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "5b277947-e27a-4670-9186-88a1175375ce"
|
||||
},
|
||||
"_type": 1,
|
||||
"_sizeMode": 0,
|
||||
"_fillType": 0,
|
||||
"_fillCenter": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_fillStart": 0,
|
||||
"_fillRange": 0,
|
||||
"_isTrimmedMode": true,
|
||||
"_atlas": {
|
||||
"__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242"
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Widget",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 328
|
||||
},
|
||||
"_enabled": true,
|
||||
"alignMode": 0,
|
||||
"_target": null,
|
||||
"_alignFlags": 45,
|
||||
"_left": 0,
|
||||
"_right": 0,
|
||||
"_top": -30,
|
||||
"_bottom": -30,
|
||||
"_verticalCenter": 0,
|
||||
"_horizontalCenter": 0,
|
||||
"_isAbsLeft": true,
|
||||
"_isAbsRight": true,
|
||||
"_isAbsTop": true,
|
||||
"_isAbsBottom": true,
|
||||
"_isAbsHorizontalCenter": true,
|
||||
"_isAbsVerticalCenter": true,
|
||||
"_originalWidth": 100,
|
||||
"_originalHeight": 40,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "63SxiWro5NXqc3n9DjatiJ",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Button",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 327
|
||||
},
|
||||
"_enabled": true,
|
||||
"_normalMaterial": null,
|
||||
"_grayMaterial": null,
|
||||
"duration": 0.1,
|
||||
"zoomScale": 1.2,
|
||||
"clickEvents": [
|
||||
{
|
||||
"__id__": 333
|
||||
}
|
||||
],
|
||||
"_N$interactable": true,
|
||||
"_N$enableAutoGrayEffect": false,
|
||||
"_N$transition": 3,
|
||||
"transition": 3,
|
||||
"_N$normalColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 230,
|
||||
"g": 230,
|
||||
"b": 230,
|
||||
"a": 255
|
||||
},
|
||||
"_N$pressedColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 200,
|
||||
"g": 200,
|
||||
"b": 200,
|
||||
"a": 255
|
||||
},
|
||||
"pressedColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 200,
|
||||
"g": 200,
|
||||
"b": 200,
|
||||
"a": 255
|
||||
},
|
||||
"_N$hoverColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"hoverColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_N$disabledColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 120,
|
||||
"g": 120,
|
||||
"b": 120,
|
||||
"a": 200
|
||||
},
|
||||
"_N$normalSprite": {
|
||||
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
|
||||
},
|
||||
"_N$pressedSprite": {
|
||||
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
|
||||
},
|
||||
"pressedSprite": {
|
||||
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
|
||||
},
|
||||
"_N$hoverSprite": {
|
||||
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
|
||||
},
|
||||
"hoverSprite": {
|
||||
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
|
||||
},
|
||||
"_N$disabledSprite": {
|
||||
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
|
||||
},
|
||||
"_N$target": {
|
||||
"__id__": 328
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.ClickEvent",
|
||||
"target": {
|
||||
"__id__": 1
|
||||
},
|
||||
"component": "",
|
||||
"_componentId": "48bfeZuYFZE2qmgxbW2IigB",
|
||||
"handler": "playCoinAnim",
|
||||
"customEventData": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "66oM+CvTZBh6i/lRCAsoRc",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "48bfeZuYFZE2qmgxbW2IigB",
|
||||
"_name": "",
|
||||
|
@ -12001,6 +12438,9 @@
|
|||
"Stamina": {
|
||||
"__id__": 282
|
||||
},
|
||||
"coinAnim": {
|
||||
"__id__": 324
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -30,7 +30,9 @@ export default class NewClass extends cc.Component {
|
|||
private coinStart: number = 0;
|
||||
private coinEnd: number = 0;
|
||||
private coinAnimating: boolean = false;
|
||||
|
||||
//飞金币动画
|
||||
@property(cc.Node)
|
||||
coinAnim: cc.Node = null;
|
||||
private buy: boolean = false;
|
||||
onLoad() {
|
||||
this.btn_Touch = true;
|
||||
|
@ -82,6 +84,7 @@ export default class NewClass extends cc.Component {
|
|||
|
||||
}
|
||||
|
||||
|
||||
|
||||
startCoinAnim(target: number) {
|
||||
if (this.coinAnimating && this.coinEnd === target) return;
|
||||
|
@ -106,6 +109,16 @@ protected update(dt: number): void {
|
|||
}
|
||||
}
|
||||
|
||||
playCoinAnim(target?: number) {
|
||||
this.coinAnim.active = true;
|
||||
this.coinAnim.getComponent(sp.Skeleton).setAnimation(0, "feijinbi", false);
|
||||
// 监听动画完成事件
|
||||
this.coinAnim.getComponent(sp.Skeleton).setCompleteListener(() => {
|
||||
// 动画播放完成后销毁节点
|
||||
this.coinAnim.active = false;
|
||||
});
|
||||
this.startCoinAnim(5000);
|
||||
}
|
||||
//关闭商店界面
|
||||
closeShop() {
|
||||
// 移除 wx.onShow 监听器
|
||||
|
|
13
assets/shop/spin.meta
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "c596f6c9-cf4e-40a2-9f18-207dee6f8bf7",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
125
assets/shop/spin/feijinbi.atlas
Normal file
|
@ -0,0 +1,125 @@
|
|||
|
||||
feijinbi.png
|
||||
size: 964,964
|
||||
format: RGBA8888
|
||||
filter: Linear,Linear
|
||||
repeat: none
|
||||
goldbi
|
||||
rotate: true
|
||||
xy: 481, 450
|
||||
size: 109, 111
|
||||
orig: 109, 112
|
||||
offset: 0, 1
|
||||
index: -1
|
||||
guangxiao1/2_0003
|
||||
rotate: false
|
||||
xy: 0, 713
|
||||
size: 252, 248
|
||||
orig: 720, 1280
|
||||
offset: 236, 516
|
||||
index: -1
|
||||
guangxiao1/2_0004
|
||||
rotate: true
|
||||
xy: 762, 699
|
||||
size: 262, 138
|
||||
orig: 720, 1280
|
||||
offset: 219, 577
|
||||
index: -1
|
||||
guangxiao1/2_0005
|
||||
rotate: true
|
||||
xy: 441, 707
|
||||
size: 254, 163
|
||||
orig: 720, 1280
|
||||
offset: 225, 566
|
||||
index: -1
|
||||
guangxiao1/2_0006
|
||||
rotate: true
|
||||
xy: 254, 713
|
||||
size: 248, 185
|
||||
orig: 720, 1280
|
||||
offset: 228, 555
|
||||
index: -1
|
||||
guangxiao1/2_0007
|
||||
rotate: true
|
||||
xy: 606, 707
|
||||
size: 246, 154
|
||||
orig: 720, 1280
|
||||
offset: 229, 584
|
||||
index: -1
|
||||
guangxiao1/2_0008
|
||||
rotate: false
|
||||
xy: 321, 592
|
||||
size: 213, 113
|
||||
orig: 720, 1280
|
||||
offset: 232, 589
|
||||
index: -1
|
||||
guangxiao1/2_0009
|
||||
rotate: false
|
||||
xy: 594, 486
|
||||
size: 72, 73
|
||||
orig: 720, 1280
|
||||
offset: 262, 619
|
||||
index: -1
|
||||
序列/1
|
||||
rotate: false
|
||||
xy: 0, 552
|
||||
size: 159, 159
|
||||
orig: 159, 159
|
||||
offset: 0, 0
|
||||
index: -1
|
||||
序列/2
|
||||
rotate: true
|
||||
xy: 536, 561
|
||||
size: 144, 159
|
||||
orig: 159, 159
|
||||
offset: 8, 0
|
||||
index: -1
|
||||
序列/3
|
||||
rotate: false
|
||||
xy: 857, 538
|
||||
size: 104, 159
|
||||
orig: 159, 159
|
||||
offset: 28, 0
|
||||
index: -1
|
||||
序列/4
|
||||
rotate: true
|
||||
xy: 0, 489
|
||||
size: 61, 158
|
||||
orig: 159, 159
|
||||
offset: 49, 1
|
||||
index: -1
|
||||
序列/5
|
||||
rotate: false
|
||||
xy: 902, 699
|
||||
size: 48, 157
|
||||
orig: 159, 159
|
||||
offset: 56, 1
|
||||
index: -1
|
||||
序列/6
|
||||
rotate: true
|
||||
xy: 160, 489
|
||||
size: 61, 158
|
||||
orig: 159, 159
|
||||
offset: 49, 1
|
||||
index: -1
|
||||
序列/7
|
||||
rotate: true
|
||||
xy: 321, 486
|
||||
size: 104, 158
|
||||
orig: 159, 159
|
||||
offset: 28, 1
|
||||
index: -1
|
||||
序列/8
|
||||
rotate: true
|
||||
xy: 697, 553
|
||||
size: 144, 158
|
||||
orig: 159, 159
|
||||
offset: 8, 1
|
||||
index: -1
|
||||
序列/9
|
||||
rotate: false
|
||||
xy: 161, 552
|
||||
size: 158, 159
|
||||
orig: 159, 159
|
||||
offset: 1, 0
|
||||
index: -1
|
6
assets/shop/spin/feijinbi.atlas.meta
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.3",
|
||||
"uuid": "ef64a2c5-e4a5-4dde-9d79-15b9613cc7f6",
|
||||
"importer": "asset",
|
||||
"subMetas": {}
|
||||
}
|
482
assets/shop/spin/feijinbi.json
Normal file
|
@ -0,0 +1,482 @@
|
|||
{
|
||||
"skeleton": {
|
||||
"hash": "Bint8Ya1IRhbEP1Bnv+Af79fnxE",
|
||||
"spine": "3.8.99",
|
||||
"x": 97.61,
|
||||
"y": 42.73,
|
||||
"width": 1574.25,
|
||||
"height": 791.17,
|
||||
"images": "",
|
||||
"audio": ""
|
||||
},
|
||||
"bones": [
|
||||
{ "name": "root" },
|
||||
{ "name": "bone", "parent": "root", "rotation": 95.46, "x": 1035.43, "y": 367.29 },
|
||||
{ "name": "bone2", "parent": "root", "rotation": -30.6, "x": 1390.18, "y": 534.73 },
|
||||
{ "name": "bone3", "parent": "root", "rotation": -30.6, "x": 1318.54, "y": 151.45 },
|
||||
{ "name": "bone4", "parent": "root", "rotation": -40.17, "x": 1107.5, "y": 607.42 },
|
||||
{ "name": "bone5", "parent": "root", "rotation": 48.57, "x": 1559.7, "y": 223.05 },
|
||||
{ "name": "bone6", "parent": "root", "rotation": -40.17, "x": 1254.92, "y": 325.58 },
|
||||
{ "name": "bone7", "parent": "root", "rotation": -40.17, "x": 1391.17, "y": 386.88 },
|
||||
{ "name": "bone8", "parent": "root", "x": 146.64, "y": 784.75 },
|
||||
{ "name": "guangxiao", "parent": "root", "x": 145.96, "y": 788.6, "scaleX": 1.5, "scaleY": 1.5 },
|
||||
{ "name": "guangxiao2", "parent": "root", "x": 145.96, "y": 788.6, "scaleX": 1.5, "scaleY": 1.5 },
|
||||
{ "name": "guangxiao3", "parent": "root", "x": 145.96, "y": 788.6, "scaleX": 1.5, "scaleY": 1.5 }
|
||||
],
|
||||
"slots": [
|
||||
{ "name": "序列/1", "bone": "bone", "attachment": "序列/1" },
|
||||
{ "name": "序列/2", "bone": "bone2", "attachment": "序列/1" },
|
||||
{ "name": "序列/3", "bone": "bone3", "attachment": "序列/1" },
|
||||
{ "name": "序列/4", "bone": "bone4", "attachment": "序列/1" },
|
||||
{ "name": "序列/6", "bone": "bone6", "attachment": "序列/1" },
|
||||
{ "name": "序列/7", "bone": "bone7", "attachment": "序列/1" },
|
||||
{ "name": "序列/5", "bone": "bone5", "attachment": "序列/1" },
|
||||
{ "name": "goldbi", "bone": "bone8", "attachment": "goldbi" },
|
||||
{ "name": "guangxiao1/2_0003", "bone": "guangxiao", "blend": "additive" },
|
||||
{ "name": "guangxiao1/2_3", "bone": "guangxiao2", "blend": "additive" },
|
||||
{ "name": "guangxiao1/2_4", "bone": "guangxiao3", "blend": "additive" }
|
||||
],
|
||||
"skins": [
|
||||
{
|
||||
"name": "default",
|
||||
"attachments": {
|
||||
"goldbi": {
|
||||
"goldbi": {
|
||||
"x": -0.49,
|
||||
"y": 0.51,
|
||||
"scaleX": 0.624,
|
||||
"scaleY": 0.624,
|
||||
"rotation": -40.17,
|
||||
"width": 109,
|
||||
"height": 112
|
||||
}
|
||||
},
|
||||
"guangxiao1/2_0003": {
|
||||
"guangxiao1/2_0003": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0004": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0005": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0006": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0007": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0008": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0009": { "width": 720, "height": 1280 }
|
||||
},
|
||||
"guangxiao1/2_3": {
|
||||
"guangxiao1/2_0003": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0004": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0005": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0006": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0007": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0008": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0009": { "width": 720, "height": 1280 }
|
||||
},
|
||||
"guangxiao1/2_4": {
|
||||
"guangxiao1/2_0003": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0004": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0005": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0006": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0007": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0008": { "width": 720, "height": 1280 },
|
||||
"guangxiao1/2_0009": { "width": 720, "height": 1280 }
|
||||
},
|
||||
"序列/1": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
},
|
||||
"序列/2": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
},
|
||||
"序列/3": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
},
|
||||
"序列/4": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
},
|
||||
"序列/5": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
},
|
||||
"序列/6": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
},
|
||||
"序列/7": {
|
||||
"序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 },
|
||||
"序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"animations": {
|
||||
"feijinbi": {
|
||||
"slots": {
|
||||
"guangxiao1/2_0003": {
|
||||
"attachment": [
|
||||
{ "time": 0.5333, "name": "guangxiao1/2_0003" },
|
||||
{ "time": 0.6, "name": "guangxiao1/2_0004" },
|
||||
{ "time": 0.6667, "name": "guangxiao1/2_0005" },
|
||||
{ "time": 0.7333, "name": "guangxiao1/2_0006" },
|
||||
{ "time": 0.8, "name": "guangxiao1/2_0007" },
|
||||
{ "time": 0.8667, "name": "guangxiao1/2_0008" },
|
||||
{ "time": 0.9333, "name": "guangxiao1/2_0009" }
|
||||
]
|
||||
},
|
||||
"guangxiao1/2_3": {
|
||||
"attachment": [
|
||||
{ "time": 0.7, "name": "guangxiao1/2_0003" },
|
||||
{ "time": 0.7667, "name": "guangxiao1/2_0004" },
|
||||
{ "time": 0.8333, "name": "guangxiao1/2_0005" },
|
||||
{ "time": 0.9, "name": "guangxiao1/2_0006" },
|
||||
{ "time": 0.9667, "name": "guangxiao1/2_0007" },
|
||||
{ "time": 1.0333, "name": "guangxiao1/2_0008" },
|
||||
{ "time": 1.1, "name": "guangxiao1/2_0009" }
|
||||
]
|
||||
},
|
||||
"guangxiao1/2_4": {
|
||||
"attachment": [
|
||||
{ "time": 0.8667, "name": "guangxiao1/2_0003" },
|
||||
{ "time": 0.9333, "name": "guangxiao1/2_0004" },
|
||||
{ "time": 1, "name": "guangxiao1/2_0005" },
|
||||
{ "time": 1.0667, "name": "guangxiao1/2_0006" },
|
||||
{ "time": 1.1333, "name": "guangxiao1/2_0007" },
|
||||
{ "time": 1.2, "name": "guangxiao1/2_0008" },
|
||||
{ "time": 1.2667, "name": "guangxiao1/2_0009" }
|
||||
]
|
||||
},
|
||||
"序列/1": {
|
||||
"attachment": [
|
||||
{ "time": 0.2667, "name": "序列/2" },
|
||||
{ "time": 0.3, "name": "序列/3" },
|
||||
{ "time": 0.3333, "name": "序列/4" },
|
||||
{ "time": 0.3667, "name": "序列/5" },
|
||||
{ "time": 0.4, "name": "序列/6" },
|
||||
{ "time": 0.4333, "name": "序列/7" },
|
||||
{ "time": 0.4667, "name": "序列/8" },
|
||||
{ "time": 0.5, "name": "序列/9" },
|
||||
{ "time": 0.5333, "name": "序列/1" },
|
||||
{ "time": 0.5667, "name": "序列/2" },
|
||||
{ "time": 0.6, "name": "序列/3" },
|
||||
{ "time": 0.6333, "name": "序列/4" },
|
||||
{ "time": 0.6667, "name": "序列/5" },
|
||||
{ "time": 0.7, "name": "序列/6" },
|
||||
{ "time": 0.7333, "name": "序列/7" },
|
||||
{ "time": 0.7667, "name": "序列/8" },
|
||||
{ "time": 0.8, "name": "序列/9" }
|
||||
]
|
||||
},
|
||||
"序列/2": {
|
||||
"attachment": [
|
||||
{ "time": 0.3667, "name": "序列/2" },
|
||||
{ "time": 0.4, "name": "序列/3" },
|
||||
{ "time": 0.4333, "name": "序列/4" },
|
||||
{ "time": 0.4667, "name": "序列/5" },
|
||||
{ "time": 0.5, "name": "序列/6" },
|
||||
{ "time": 0.5333, "name": "序列/7" },
|
||||
{ "time": 0.5667, "name": "序列/8" },
|
||||
{ "time": 0.6, "name": "序列/9" },
|
||||
{ "time": 0.6333, "name": "序列/1" },
|
||||
{ "time": 0.6667, "name": "序列/2" },
|
||||
{ "time": 0.7, "name": "序列/3" },
|
||||
{ "time": 0.7333, "name": "序列/4" },
|
||||
{ "time": 0.7667, "name": "序列/5" },
|
||||
{ "time": 0.8, "name": "序列/6" },
|
||||
{ "time": 0.8333, "name": "序列/7" },
|
||||
{ "time": 0.8667, "name": "序列/8" },
|
||||
{ "time": 0.9, "name": "序列/9" }
|
||||
]
|
||||
},
|
||||
"序列/3": {
|
||||
"attachment": [
|
||||
{ "time": 0.4667, "name": "序列/2" },
|
||||
{ "time": 0.5, "name": "序列/3" },
|
||||
{ "time": 0.5333, "name": "序列/4" },
|
||||
{ "time": 0.5667, "name": "序列/5" },
|
||||
{ "time": 0.6, "name": "序列/6" },
|
||||
{ "time": 0.6333, "name": "序列/7" },
|
||||
{ "time": 0.6667, "name": "序列/8" },
|
||||
{ "time": 0.7, "name": "序列/9" },
|
||||
{ "time": 0.7333, "name": "序列/1" },
|
||||
{ "time": 0.7667, "name": "序列/2" },
|
||||
{ "time": 0.8, "name": "序列/3" },
|
||||
{ "time": 0.8333, "name": "序列/4" },
|
||||
{ "time": 0.8667, "name": "序列/5" },
|
||||
{ "time": 0.9, "name": "序列/6" },
|
||||
{ "time": 0.9333, "name": "序列/7" },
|
||||
{ "time": 0.9667, "name": "序列/8" },
|
||||
{ "time": 1, "name": "序列/9" }
|
||||
]
|
||||
},
|
||||
"序列/4": {
|
||||
"attachment": [
|
||||
{ "time": 0.5333, "name": "序列/2" },
|
||||
{ "time": 0.5667, "name": "序列/3" },
|
||||
{ "time": 0.6, "name": "序列/4" },
|
||||
{ "time": 0.6333, "name": "序列/5" },
|
||||
{ "time": 0.6667, "name": "序列/6" },
|
||||
{ "time": 0.7, "name": "序列/7" },
|
||||
{ "time": 0.7333, "name": "序列/8" },
|
||||
{ "time": 0.7667, "name": "序列/9" },
|
||||
{ "time": 0.8, "name": "序列/1" },
|
||||
{ "time": 0.8333, "name": "序列/2" },
|
||||
{ "time": 0.8667, "name": "序列/3" },
|
||||
{ "time": 0.9, "name": "序列/4" },
|
||||
{ "time": 0.9333, "name": "序列/5" },
|
||||
{ "time": 0.9667, "name": "序列/6" },
|
||||
{ "time": 1, "name": "序列/7" },
|
||||
{ "time": 1.0333, "name": "序列/8" },
|
||||
{ "time": 1.0667, "name": "序列/9" }
|
||||
]
|
||||
},
|
||||
"序列/5": {
|
||||
"attachment": [
|
||||
{ "time": 0.2333, "name": "序列/2" },
|
||||
{ "time": 0.2667, "name": "序列/3" },
|
||||
{ "time": 0.3, "name": "序列/4" },
|
||||
{ "time": 0.3333, "name": "序列/5" },
|
||||
{ "time": 0.3667, "name": "序列/6" },
|
||||
{ "time": 0.4, "name": "序列/7" },
|
||||
{ "time": 0.4333, "name": "序列/8" },
|
||||
{ "time": 0.4667, "name": "序列/9" },
|
||||
{ "time": 0.5, "name": "序列/1" },
|
||||
{ "time": 0.5333, "name": "序列/2" },
|
||||
{ "time": 0.5667, "name": "序列/3" },
|
||||
{ "time": 0.6, "name": "序列/4" },
|
||||
{ "time": 0.6333, "name": "序列/5" },
|
||||
{ "time": 0.6667, "name": "序列/6" },
|
||||
{ "time": 0.7, "name": "序列/7" },
|
||||
{ "time": 0.7333, "name": "序列/8" },
|
||||
{ "time": 0.7667, "name": "序列/9" }
|
||||
]
|
||||
},
|
||||
"序列/6": {
|
||||
"attachment": [
|
||||
{ "time": 0.3333, "name": "序列/2" },
|
||||
{ "time": 0.3667, "name": "序列/3" },
|
||||
{ "time": 0.4, "name": "序列/4" },
|
||||
{ "time": 0.4333, "name": "序列/5" },
|
||||
{ "time": 0.4667, "name": "序列/6" },
|
||||
{ "time": 0.5, "name": "序列/7" },
|
||||
{ "time": 0.5333, "name": "序列/8" },
|
||||
{ "time": 0.5667, "name": "序列/9" },
|
||||
{ "time": 0.6, "name": "序列/1" },
|
||||
{ "time": 0.6333, "name": "序列/2" },
|
||||
{ "time": 0.6667, "name": "序列/3" },
|
||||
{ "time": 0.7, "name": "序列/4" },
|
||||
{ "time": 0.7333, "name": "序列/5" },
|
||||
{ "time": 0.7667, "name": "序列/6" },
|
||||
{ "time": 0.8, "name": "序列/7" },
|
||||
{ "time": 0.8333, "name": "序列/8" },
|
||||
{ "time": 0.8667, "name": "序列/9" }
|
||||
]
|
||||
},
|
||||
"序列/7": {
|
||||
"attachment": [
|
||||
{ "time": 0.4, "name": "序列/2" },
|
||||
{ "time": 0.4333, "name": "序列/3" },
|
||||
{ "time": 0.4667, "name": "序列/4" },
|
||||
{ "time": 0.5, "name": "序列/5" },
|
||||
{ "time": 0.5333, "name": "序列/6" },
|
||||
{ "time": 0.5667, "name": "序列/7" },
|
||||
{ "time": 0.6, "name": "序列/8" },
|
||||
{ "time": 0.6333, "name": "序列/9" },
|
||||
{ "time": 0.6667, "name": "序列/1" },
|
||||
{ "time": 0.7, "name": "序列/2" },
|
||||
{ "time": 0.7333, "name": "序列/3" },
|
||||
{ "time": 0.7667, "name": "序列/4" },
|
||||
{ "time": 0.8, "name": "序列/5" },
|
||||
{ "time": 0.8333, "name": "序列/6" },
|
||||
{ "time": 0.8667, "name": "序列/7" },
|
||||
{ "time": 0.9, "name": "序列/8" },
|
||||
{ "time": 0.9333, "name": "序列/9" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"bones": {
|
||||
"bone": {
|
||||
"translate": [
|
||||
{ "x": -1036.2, "y": -365.5 },
|
||||
{ "time": 0.1667, "x": -1293.76, "y": -250.33 },
|
||||
{ "time": 0.2667, "x": -1339.17, "y": -219.11, "curve": "stepped" },
|
||||
{ "time": 0.4667, "x": -1339.17, "y": -219.11 },
|
||||
{ "time": 0.6333, "x": -890.77, "y": 427.96 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0 },
|
||||
{ "time": 0.1667, "curve": "stepped" },
|
||||
{ "time": 0.4667 },
|
||||
{ "time": 0.6333, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone2": {
|
||||
"translate": [
|
||||
{ "x": -1393.79, "y": -535.78, "curve": "stepped" },
|
||||
{ "time": 0.1667, "x": -1393.79, "y": -535.78 },
|
||||
{ "time": 0.2667, "x": -1293.76, "y": -250.33 },
|
||||
{ "time": 0.3667, "x": -1268.22, "y": -233.3, "curve": "stepped" },
|
||||
{ "time": 0.5667, "x": -1268.22, "y": -233.3 },
|
||||
{ "time": 0.7333, "x": -1244.65, "y": 258.34 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0, "curve": "stepped" },
|
||||
{ "time": 0.1667, "x": 0, "y": 0 },
|
||||
{ "time": 0.2667, "curve": "stepped" },
|
||||
{ "time": 0.5667 },
|
||||
{ "time": 0.7333, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone3": {
|
||||
"translate": [
|
||||
{ "x": -1393.79, "y": -535.78 },
|
||||
{ "time": 0.2667, "x": -1319.96, "y": -153.79 },
|
||||
{ "time": 0.3667, "x": -1151.41, "y": -374.54 },
|
||||
{ "time": 0.4667, "x": -1132.57, "y": -404.69, "curve": "stepped" },
|
||||
{ "time": 0.6667, "x": -1132.57, "y": -404.69 },
|
||||
{ "time": 0.8333, "x": -1174.03, "y": 640.33 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0, "curve": "stepped" },
|
||||
{ "time": 0.2667, "x": 0, "y": 0 },
|
||||
{ "time": 0.3667, "curve": "stepped" },
|
||||
{ "time": 0.6667 },
|
||||
{ "time": 0.8333, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone4": {
|
||||
"translate": [
|
||||
{ "x": -1107.61, "y": -613.82, "curve": "stepped" },
|
||||
{ "time": 0.3333, "x": -1107.61, "y": -613.82 },
|
||||
{ "time": 0.4333, "x": -1290.16, "y": -777.79 },
|
||||
{ "time": 0.5333, "x": -1355.2, "y": -851.5, "curve": "stepped" },
|
||||
{ "time": 0.7333, "x": -1355.2, "y": -851.5 },
|
||||
{ "time": 0.9, "x": -957.25, "y": 181.92 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0, "curve": "stepped" },
|
||||
{ "time": 0.3333, "x": 0, "y": 0 },
|
||||
{ "time": 0.4333, "curve": "stepped" },
|
||||
{ "time": 0.7333 },
|
||||
{ "time": 0.9, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone5": {
|
||||
"translate": [
|
||||
{ "x": -1393.79, "y": -535.78 },
|
||||
{ "time": 0.0333, "x": -1561.11, "y": -229.15 },
|
||||
{ "time": 0.1333, "x": -1151.41, "y": -374.54 },
|
||||
{ "time": 0.2333, "x": -1132.57, "y": -404.69, "curve": "stepped" },
|
||||
{ "time": 0.4333, "x": -1132.57, "y": -404.69 },
|
||||
{ "time": 0.6, "x": -1412.53, "y": 567.83 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0, "curve": "stepped" },
|
||||
{ "time": 0.0333, "x": 0, "y": 0 },
|
||||
{ "time": 0.1333, "curve": "stepped" },
|
||||
{ "time": 0.4333 },
|
||||
{ "time": 0.6, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone6": {
|
||||
"translate": [
|
||||
{ "x": -1255.04, "y": -331.98, "curve": "stepped" },
|
||||
{ "time": 0.1333, "x": -1255.04, "y": -331.98 },
|
||||
{ "time": 0.2333, "x": -1402.72, "y": -234.56 },
|
||||
{ "time": 0.3333, "x": -1422.3, "y": -175.83, "curve": "stepped" },
|
||||
{ "time": 0.5333, "x": -1422.3, "y": -175.83 },
|
||||
{ "time": 0.7, "x": -1108.97, "y": 470.67 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0, "curve": "stepped" },
|
||||
{ "time": 0.1333, "x": 0, "y": 0 },
|
||||
{ "time": 0.2333, "curve": "stepped" },
|
||||
{ "time": 0.5333 },
|
||||
{ "time": 0.7, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone7": {
|
||||
"translate": [
|
||||
{ "x": -1394.68, "y": -386.48, "curve": "stepped" },
|
||||
{ "time": 0.2, "x": -1394.68, "y": -386.48 },
|
||||
{ "time": 0.3, "x": -1263.07, "y": -326.52 },
|
||||
{ "time": 0.4, "x": -1239.23, "y": -302.68, "curve": "stepped" },
|
||||
{ "time": 0.6, "x": -1239.23, "y": -302.68 },
|
||||
{ "time": 0.7667, "x": -1245.21, "y": 409.36 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0, "y": 0, "curve": "stepped" },
|
||||
{ "time": 0.2, "x": 0, "y": 0 },
|
||||
{ "time": 0.3, "curve": "stepped" },
|
||||
{ "time": 0.6 },
|
||||
{ "time": 0.7667, "x": 0, "y": 0 }
|
||||
]
|
||||
},
|
||||
"bone8": {
|
||||
"scale": [
|
||||
{ "time": 0.5333 },
|
||||
{ "time": 0.5667, "x": 1.5, "y": 1.5 },
|
||||
{ "time": 0.6, "curve": "stepped" },
|
||||
{ "time": 0.6333 },
|
||||
{ "time": 0.6667, "x": 1.5, "y": 1.5 },
|
||||
{ "time": 0.7, "curve": "stepped" },
|
||||
{ "time": 0.7333 },
|
||||
{ "time": 0.7667, "x": 1.5, "y": 1.5 },
|
||||
{ "time": 0.8, "curve": "stepped" },
|
||||
{ "time": 0.8333 },
|
||||
{ "time": 0.8667, "x": 1.5, "y": 1.5 },
|
||||
{ "time": 0.9 }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
10
assets/shop/spin/feijinbi.json.meta
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ver": "1.2.5",
|
||||
"uuid": "6e4dbe22-e1d1-48f1-af36-a0dca5c602da",
|
||||
"importer": "spine",
|
||||
"textures": [
|
||||
"12ac58bc-c359-4fe8-b250-18feb0c04ddf"
|
||||
],
|
||||
"scale": 1,
|
||||
"subMetas": {}
|
||||
}
|
BIN
assets/shop/spin/feijinbi.png
Normal file
After Width: | Height: | Size: 247 KiB |
38
assets/shop/spin/feijinbi.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "12ac58bc-c359-4fe8-b250-18feb0c04ddf",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 964,
|
||||
"height": 964,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"feijinbi": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "ab68ded9-fb8e-4c91-a91e-ee13d53b985b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "12ac58bc-c359-4fe8-b250-18feb0c04ddf",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": -1.5,
|
||||
"offsetY": -223.5,
|
||||
"trimX": 0,
|
||||
"trimY": 450,
|
||||
"width": 961,
|
||||
"height": 511,
|
||||
"rawWidth": 964,
|
||||
"rawHeight": 964,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
13
assets/shop/spin/mofabang_texiao.meta
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "3e2b9e78-1f47-4725-8f09-bb8491cd05d0",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
209
assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas
Normal file
|
@ -0,0 +1,209 @@
|
|||
|
||||
mofabang_baozha.png
|
||||
size: 2040,2040
|
||||
format: RGBA8888
|
||||
filter: Linear,Linear
|
||||
repeat: none
|
||||
images/effects/Glow1
|
||||
rotate: false
|
||||
xy: 862, 1516
|
||||
size: 216, 216
|
||||
orig: 256, 256
|
||||
offset: 20, 19
|
||||
index: -1
|
||||
images/effects/hit/hit_00
|
||||
rotate: true
|
||||
xy: 1379, 1762
|
||||
size: 276, 272
|
||||
orig: 400, 400
|
||||
offset: 61, 64
|
||||
index: -1
|
||||
images/effects/hit/hit_01
|
||||
rotate: false
|
||||
xy: 1395, 1520
|
||||
size: 248, 240
|
||||
orig: 400, 400
|
||||
offset: 76, 80
|
||||
index: -1
|
||||
images/effects/hit/hit_02
|
||||
rotate: false
|
||||
xy: 2, 1734
|
||||
size: 332, 304
|
||||
orig: 400, 400
|
||||
offset: 39, 51
|
||||
index: -1
|
||||
images/effects/hit/hit_03
|
||||
rotate: true
|
||||
xy: 604, 1726
|
||||
size: 312, 252
|
||||
orig: 400, 400
|
||||
offset: 50, 83
|
||||
index: -1
|
||||
images/effects/hit/hit_04
|
||||
rotate: false
|
||||
xy: 270, 1524
|
||||
size: 272, 208
|
||||
orig: 400, 400
|
||||
offset: 78, 108
|
||||
index: -1
|
||||
images/effects/hit/hit_05
|
||||
rotate: false
|
||||
xy: 2, 1512
|
||||
size: 266, 220
|
||||
orig: 400, 400
|
||||
offset: 79, 103
|
||||
index: -1
|
||||
images/effects/hit/hit_06
|
||||
rotate: false
|
||||
xy: 1117, 1496
|
||||
size: 276, 240
|
||||
orig: 400, 400
|
||||
offset: 73, 94
|
||||
index: -1
|
||||
images/effects/hit/hit_07
|
||||
rotate: true
|
||||
xy: 1117, 1738
|
||||
size: 300, 260
|
||||
orig: 400, 400
|
||||
offset: 67, 85
|
||||
index: -1
|
||||
images/effects/hit/hit_08
|
||||
rotate: true
|
||||
xy: 858, 1734
|
||||
size: 304, 257
|
||||
orig: 400, 400
|
||||
offset: 69, 82
|
||||
index: -1
|
||||
images/effects/hit/hit_09
|
||||
rotate: true
|
||||
xy: 336, 1738
|
||||
size: 300, 266
|
||||
orig: 400, 400
|
||||
offset: 70, 74
|
||||
index: -1
|
||||
images/effects/hit/hit_10
|
||||
rotate: true
|
||||
xy: 1645, 1380
|
||||
size: 162, 230
|
||||
orig: 400, 400
|
||||
offset: 95, 114
|
||||
index: -1
|
||||
images/effects/hit/hit_11
|
||||
rotate: false
|
||||
xy: 1148, 1399
|
||||
size: 101, 95
|
||||
orig: 400, 400
|
||||
offset: 99, 119
|
||||
index: -1
|
||||
images/effects/hit/hit_12
|
||||
rotate: false
|
||||
xy: 2037, 2037
|
||||
size: 1, 1
|
||||
orig: 400, 400
|
||||
offset: 198, 213
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_34
|
||||
rotate: false
|
||||
xy: 1653, 1719
|
||||
size: 211, 319
|
||||
orig: 1136, 640
|
||||
offset: 696, 201
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_35
|
||||
rotate: true
|
||||
xy: 544, 1546
|
||||
size: 178, 316
|
||||
orig: 1136, 640
|
||||
offset: 694, 201
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_36
|
||||
rotate: true
|
||||
xy: 1645, 1544
|
||||
size: 173, 313
|
||||
orig: 1136, 640
|
||||
offset: 696, 200
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_37
|
||||
rotate: false
|
||||
xy: 1866, 1810
|
||||
size: 169, 228
|
||||
orig: 1136, 640
|
||||
offset: 698, 233
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_38
|
||||
rotate: true
|
||||
xy: 544, 1378
|
||||
size: 166, 228
|
||||
orig: 1136, 640
|
||||
offset: 702, 235
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_39
|
||||
rotate: true
|
||||
xy: 270, 1358
|
||||
size: 164, 219
|
||||
orig: 1136, 640
|
||||
offset: 703, 241
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_40
|
||||
rotate: true
|
||||
xy: 1395, 1361
|
||||
size: 157, 208
|
||||
orig: 1136, 640
|
||||
offset: 710, 249
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_41
|
||||
rotate: true
|
||||
xy: 774, 1396
|
||||
size: 118, 189
|
||||
orig: 1136, 640
|
||||
offset: 749, 266
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_42
|
||||
rotate: true
|
||||
xy: 2, 1430
|
||||
size: 80, 187
|
||||
orig: 1136, 640
|
||||
offset: 751, 268
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_43
|
||||
rotate: true
|
||||
xy: 965, 1418
|
||||
size: 76, 181
|
||||
orig: 1136, 640
|
||||
offset: 752, 269
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_44
|
||||
rotate: false
|
||||
xy: 1960, 1665
|
||||
size: 72, 143
|
||||
orig: 1136, 640
|
||||
offset: 753, 305
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_45
|
||||
rotate: false
|
||||
xy: 1960, 1520
|
||||
size: 69, 143
|
||||
orig: 1136, 640
|
||||
offset: 754, 304
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_46
|
||||
rotate: false
|
||||
xy: 1947, 1376
|
||||
size: 67, 142
|
||||
orig: 1136, 640
|
||||
offset: 755, 304
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_47
|
||||
rotate: false
|
||||
xy: 191, 1369
|
||||
size: 67, 141
|
||||
orig: 1136, 640
|
||||
offset: 755, 304
|
||||
index: -1
|
||||
images/lizi/shoujibaodian_48
|
||||
rotate: false
|
||||
xy: 1877, 1400
|
||||
size: 68, 142
|
||||
orig: 1136, 640
|
||||
offset: 754, 303
|
||||
index: -1
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.3",
|
||||
"uuid": "43874b95-73bf-4894-be03-7efdd865733a",
|
||||
"importer": "asset",
|
||||
"subMetas": {}
|
||||
}
|
167
assets/shop/spin/mofabang_texiao/mofabang_baozha.json
Normal file
|
@ -0,0 +1,167 @@
|
|||
{
|
||||
"skeleton": {
|
||||
"hash": "hZHGx+scAEPxWQrFsM0GBbRcUg0",
|
||||
"spine": "3.8.99",
|
||||
"x": -273.93,
|
||||
"y": -795.48,
|
||||
"width": 640,
|
||||
"height": 1136,
|
||||
"images": "",
|
||||
"audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\300970_skill_hit"
|
||||
},
|
||||
"bones": [
|
||||
{ "name": "root" },
|
||||
{ "name": "all", "parent": "root" },
|
||||
{ "name": "hit", "parent": "all" },
|
||||
{ "name": "hit2", "parent": "all" },
|
||||
{ "name": "glow", "parent": "all" },
|
||||
{ "name": "lizi2", "parent": "root", "rotation": 90, "x": 1.13, "y": -2.39 }
|
||||
],
|
||||
"slots": [
|
||||
{ "name": "images/bg", "bone": "root" },
|
||||
{ "name": "images/effects/hit/hit_00", "bone": "hit", "attachment": "images/effects/hit/hit_00", "blend": "screen" },
|
||||
{ "name": "images/effects/hit/hit_0", "bone": "hit2" },
|
||||
{ "name": "images/effects/Glow1", "bone": "glow", "blend": "additive" },
|
||||
{ "name": "images/lizi/shoujibaodian_34", "bone": "lizi2", "attachment": "images/lizi/shoujibaodian_34", "blend": "additive" }
|
||||
],
|
||||
"skins": [
|
||||
{
|
||||
"name": "default",
|
||||
"attachments": {
|
||||
"images/effects/Glow1": {
|
||||
"images/effects/Glow1": { "width": 256, "height": 256 }
|
||||
},
|
||||
"images/effects/hit/hit_0": {
|
||||
"images/effects/hit/hit_02": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_03": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_04": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_05": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_06": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_07": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_08": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_09": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_10": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_11": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_12": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_13": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_14": { "width": 1, "height": 1 }
|
||||
},
|
||||
"images/effects/hit/hit_00": {
|
||||
"images/effects/hit/hit_00": { "width": 400, "height": 400 },
|
||||
"images/effects/hit/hit_01": { "width": 400, "height": 400 }
|
||||
},
|
||||
"images/lizi/shoujibaodian_34": {
|
||||
"images/lizi/shoujibaodian_34": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_35": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_36": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_37": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_38": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_39": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_40": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_41": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_42": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_43": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_44": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_45": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_46": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_47": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 },
|
||||
"images/lizi/shoujibaodian_48": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"animations": {
|
||||
"play": {
|
||||
"slots": {
|
||||
"images/effects/Glow1": {
|
||||
"color": [
|
||||
{ "time": 0.0333, "color": "5a05ffff" },
|
||||
{ "time": 0.4667, "color": "bd00ff00" }
|
||||
],
|
||||
"attachment": [
|
||||
{ "time": 0.0333, "name": "images/effects/Glow1" }
|
||||
]
|
||||
},
|
||||
"images/effects/hit/hit_0": {
|
||||
"attachment": [
|
||||
{ "time": 0.1333, "name": "images/effects/hit/hit_02" },
|
||||
{ "time": 0.1667, "name": "images/effects/hit/hit_03" },
|
||||
{ "time": 0.2, "name": "images/effects/hit/hit_04" },
|
||||
{ "time": 0.2333, "name": "images/effects/hit/hit_05" },
|
||||
{ "time": 0.2667, "name": "images/effects/hit/hit_06" },
|
||||
{ "time": 0.3, "name": "images/effects/hit/hit_07" },
|
||||
{ "time": 0.3333, "name": "images/effects/hit/hit_08" },
|
||||
{ "time": 0.3667, "name": "images/effects/hit/hit_09" },
|
||||
{ "time": 0.4, "name": "images/effects/hit/hit_10" },
|
||||
{ "time": 0.4333, "name": "images/effects/hit/hit_11" },
|
||||
{ "time": 0.4667, "name": "images/effects/hit/hit_12" },
|
||||
{ "time": 0.5, "name": "images/effects/hit/hit_13" },
|
||||
{ "time": 0.5333, "name": "images/effects/hit/hit_14" },
|
||||
{ "time": 0.5667, "name": null }
|
||||
]
|
||||
},
|
||||
"images/effects/hit/hit_00": {
|
||||
"color": [
|
||||
{ "color": "ffffff00" },
|
||||
{ "time": 0.0333, "color": "ffffffff" }
|
||||
],
|
||||
"attachment": [
|
||||
{ "time": 0.0667, "name": "images/effects/hit/hit_01" },
|
||||
{ "time": 0.1, "name": null }
|
||||
]
|
||||
},
|
||||
"images/lizi/shoujibaodian_34": {
|
||||
"color": [
|
||||
{ "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.3333, "color": "ffffff00" },
|
||||
{ "time": 0.3667, "color": "ffffffff", "curve": "stepped" },
|
||||
{ "time": 1.3, "color": "ffffffff" },
|
||||
{ "time": 1.3667, "color": "ffffff00" }
|
||||
],
|
||||
"attachment": [
|
||||
{ "time": 0.4333, "name": "images/lizi/shoujibaodian_35" },
|
||||
{ "time": 0.5, "name": "images/lizi/shoujibaodian_36" },
|
||||
{ "time": 0.5667, "name": "images/lizi/shoujibaodian_37" },
|
||||
{ "time": 0.6333, "name": "images/lizi/shoujibaodian_38" },
|
||||
{ "time": 0.7, "name": "images/lizi/shoujibaodian_39" },
|
||||
{ "time": 0.7667, "name": "images/lizi/shoujibaodian_40" },
|
||||
{ "time": 0.8333, "name": "images/lizi/shoujibaodian_41" },
|
||||
{ "time": 0.9, "name": "images/lizi/shoujibaodian_42" },
|
||||
{ "time": 0.9667, "name": "images/lizi/shoujibaodian_43" },
|
||||
{ "time": 1.0333, "name": "images/lizi/shoujibaodian_44" },
|
||||
{ "time": 1.1, "name": "images/lizi/shoujibaodian_45" },
|
||||
{ "time": 1.1667, "name": "images/lizi/shoujibaodian_46" },
|
||||
{ "time": 1.2333, "name": "images/lizi/shoujibaodian_47" },
|
||||
{ "time": 1.3, "name": "images/lizi/shoujibaodian_48" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"bones": {
|
||||
"glow": {
|
||||
"scale": [
|
||||
{ "time": 0.0333, "x": 0.5, "y": 0.5 },
|
||||
{ "time": 0.1333, "x": 2, "y": 2 },
|
||||
{ "time": 0.4667, "x": 3, "y": 3 }
|
||||
]
|
||||
},
|
||||
"hit": {
|
||||
"scale": [
|
||||
{ "time": 0.0333, "x": 1.5, "y": 1.5 }
|
||||
]
|
||||
},
|
||||
"lizi2": {
|
||||
"translate": [
|
||||
{ "time": 0.3667 },
|
||||
{ "time": 0.7667, "y": 6 },
|
||||
{ "time": 1.3, "y": -20.01 }
|
||||
],
|
||||
"scale": [
|
||||
{ "x": 0.7, "y": 0.7, "curve": "stepped" },
|
||||
{ "time": 0.3667, "x": 0.7, "y": 0.7 },
|
||||
{ "time": 1.3 }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
10
assets/shop/spin/mofabang_texiao/mofabang_baozha.json.meta
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ver": "1.2.5",
|
||||
"uuid": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b",
|
||||
"importer": "spine",
|
||||
"textures": [
|
||||
"1d199c80-c2cc-4a8a-9d5f-e38077dd0ca7"
|
||||
],
|
||||
"scale": 1,
|
||||
"subMetas": {}
|
||||
}
|
BIN
assets/shop/spin/mofabang_texiao/mofabang_baozha.png
Normal file
After Width: | Height: | Size: 1.1 MiB |
38
assets/shop/spin/mofabang_texiao/mofabang_baozha.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1d199c80-c2cc-4a8a-9d5f-e38077dd0ca7",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 2040,
|
||||
"height": 2040,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"mofabang_baozha": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "7fa70f61-ff3d-448a-b16e-16bb90b926b2",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1d199c80-c2cc-4a8a-9d5f-e38077dd0ca7",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": -678,
|
||||
"trimX": 2,
|
||||
"trimY": 1358,
|
||||
"width": 2036,
|
||||
"height": 680,
|
||||
"rawWidth": 2040,
|
||||
"rawHeight": 2040,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
104
assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas
Normal file
|
@ -0,0 +1,104 @@
|
|||
|
||||
mofabang_texiao.png
|
||||
size: 1000,1000
|
||||
format: RGBA8888
|
||||
filter: Linear,Linear
|
||||
repeat: none
|
||||
images/effects/chixu/chixu_00
|
||||
rotate: false
|
||||
xy: 2, 334
|
||||
size: 151, 124
|
||||
orig: 200, 200
|
||||
offset: 12, 44
|
||||
index: -1
|
||||
images/effects/chixu/chixu_01
|
||||
rotate: true
|
||||
xy: 159, 567
|
||||
size: 148, 132
|
||||
orig: 200, 200
|
||||
offset: 12, 37
|
||||
index: -1
|
||||
images/effects/chixu/chixu_02
|
||||
rotate: false
|
||||
xy: 2, 460
|
||||
size: 153, 125
|
||||
orig: 200, 200
|
||||
offset: 15, 37
|
||||
index: -1
|
||||
images/effects/chixu/chixu_03
|
||||
rotate: false
|
||||
xy: 2, 587
|
||||
size: 155, 128
|
||||
orig: 200, 200
|
||||
offset: 15, 36
|
||||
index: -1
|
||||
images/effects/chixu/chixu_04
|
||||
rotate: true
|
||||
xy: 157, 416
|
||||
size: 149, 126
|
||||
orig: 200, 200
|
||||
offset: 21, 36
|
||||
index: -1
|
||||
images/effects/chixu/chixu_05
|
||||
rotate: true
|
||||
xy: 155, 265
|
||||
size: 149, 123
|
||||
orig: 200, 200
|
||||
offset: 21, 36
|
||||
index: -1
|
||||
images/effects/chixu/chixu_06
|
||||
rotate: false
|
||||
xy: 148, 143
|
||||
size: 147, 120
|
||||
orig: 200, 200
|
||||
offset: 23, 38
|
||||
index: -1
|
||||
images/effects/chixu/chixu_07
|
||||
rotate: true
|
||||
xy: 2, 61
|
||||
size: 145, 119
|
||||
orig: 200, 200
|
||||
offset: 24, 39
|
||||
index: -1
|
||||
images/effects/chixu/chixu_08
|
||||
rotate: false
|
||||
xy: 2, 208
|
||||
size: 144, 124
|
||||
orig: 200, 200
|
||||
offset: 23, 41
|
||||
index: -1
|
||||
images/effects/chixu/chixu_09
|
||||
rotate: false
|
||||
xy: 123, 23
|
||||
size: 140, 118
|
||||
orig: 200, 200
|
||||
offset: 23, 43
|
||||
index: -1
|
||||
images/effects/chixu/chixu_10
|
||||
rotate: true
|
||||
xy: 265, 2
|
||||
size: 139, 117
|
||||
orig: 200, 200
|
||||
offset: 23, 43
|
||||
index: -1
|
||||
images/effects/guangdian
|
||||
rotate: false
|
||||
xy: 2, 54
|
||||
size: 5, 5
|
||||
orig: 5, 5
|
||||
offset: 0, 0
|
||||
index: -1
|
||||
images/effects/huiguang
|
||||
rotate: false
|
||||
xy: 2, 717
|
||||
size: 278, 278
|
||||
orig: 311, 310
|
||||
offset: 17, 16
|
||||
index: -1
|
||||
images/effects/微信图片_20250515181822
|
||||
rotate: false
|
||||
xy: 280, 305
|
||||
size: 93, 109
|
||||
orig: 93, 109
|
||||
offset: 0, 0
|
||||
index: -1
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.3",
|
||||
"uuid": "95976aae-0f09-4605-bcc2-687fdabc3353",
|
||||
"importer": "asset",
|
||||
"subMetas": {}
|
||||
}
|
269
assets/shop/spin/mofabang_texiao/mofabang_texiao.json
Normal file
|
@ -0,0 +1,269 @@
|
|||
{
|
||||
"skeleton": {
|
||||
"hash": "KwnUpLoFTPi0z5vmLJV6Z4zmnmE",
|
||||
"spine": "3.8.99",
|
||||
"x": -152.76,
|
||||
"y": -158.93,
|
||||
"width": 316.61,
|
||||
"height": 310,
|
||||
"images": "",
|
||||
"audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\500210_skill1"
|
||||
},
|
||||
"bones": [
|
||||
{ "name": "root" },
|
||||
{ "name": "all", "parent": "root" },
|
||||
{ "name": "shifa", "parent": "all", "scaleX": 1.5, "scaleY": 1.5 },
|
||||
{ "name": "chixu", "parent": "shifa" },
|
||||
{ "name": "chixu1", "parent": "chixu" },
|
||||
{ "name": "chixu2", "parent": "chixu", "scaleX": -1 },
|
||||
{ "name": "bone", "parent": "root", "x": 0.19, "y": -0.13 },
|
||||
{ "name": "bone2", "parent": "root", "x": -2.4, "y": -1.65 },
|
||||
{ "name": "bone3", "parent": "root", "x": -2.4, "y": -1.65 },
|
||||
{ "name": "bone4", "parent": "root", "x": -2.4, "y": -1.65 },
|
||||
{ "name": "bone5", "parent": "root", "x": -2.4, "y": -1.65 },
|
||||
{ "name": "bone6", "parent": "root", "x": -2.4, "y": -1.65 },
|
||||
{ "name": "bone7", "parent": "root", "x": -2.4, "y": -1.65 },
|
||||
{ "name": "bone8", "parent": "root", "x": -2.4, "y": -1.65 }
|
||||
],
|
||||
"slots": [
|
||||
{ "name": "images/effects/bg", "bone": "root" },
|
||||
{ "name": "images/effects/chixu/chixu_0", "bone": "chixu2", "color": "d120a1ca", "blend": "additive" },
|
||||
{ "name": "images/effects/微信图片_20250515181822", "bone": "bone", "attachment": "images/effects/微信图片_20250515181822" },
|
||||
{ "name": "images/effects/chixu/chixu_00", "bone": "chixu1", "blend": "additive" },
|
||||
{ "name": "images/effects/huiguang", "bone": "all", "attachment": "images/effects/huiguang", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian", "bone": "bone2", "attachment": "images/effects/guangdian", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian2", "bone": "bone3", "attachment": "images/effects/guangdian", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian4", "bone": "bone5", "attachment": "images/effects/guangdian", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian7", "bone": "bone8", "attachment": "images/effects/guangdian", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian5", "bone": "bone6", "attachment": "images/effects/guangdian", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian3", "bone": "bone4", "attachment": "images/effects/guangdian", "blend": "additive" },
|
||||
{ "name": "images/effects/guangdian6", "bone": "bone7", "attachment": "images/effects/guangdian", "blend": "additive" }
|
||||
],
|
||||
"skins": [
|
||||
{
|
||||
"name": "default",
|
||||
"attachments": {
|
||||
"images/effects/chixu/chixu_0": {
|
||||
"images/effects/chixu/chixu_00": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_01": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_02": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_03": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_04": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_05": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_06": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_07": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_08": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_09": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_10": { "width": 200, "height": 200 }
|
||||
},
|
||||
"images/effects/chixu/chixu_00": {
|
||||
"images/effects/chixu/chixu_00": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_01": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_02": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_03": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_04": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_05": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_06": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_07": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_08": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_09": { "width": 200, "height": 200 },
|
||||
"images/effects/chixu/chixu_10": { "width": 200, "height": 200 }
|
||||
},
|
||||
"images/effects/guangdian": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/guangdian2": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/guangdian3": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/guangdian4": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/guangdian5": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/guangdian6": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/guangdian7": {
|
||||
"images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 }
|
||||
},
|
||||
"images/effects/huiguang": {
|
||||
"images/effects/huiguang": { "x": 2.74, "y": -3.93, "rotation": 180, "width": 311, "height": 310 }
|
||||
},
|
||||
"images/effects/微信图片_20250515181822": {
|
||||
"images/effects/微信图片_20250515181822": {
|
||||
"x": 36.11,
|
||||
"y": -31.15,
|
||||
"scaleX": 2,
|
||||
"scaleY": 2,
|
||||
"rotation": 76.63,
|
||||
"width": 93,
|
||||
"height": 109
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"animations": {
|
||||
"play": {
|
||||
"slots": {
|
||||
"images/effects/chixu/chixu_0": {
|
||||
"attachment": [
|
||||
{ "time": 0.1333, "name": "images/effects/chixu/chixu_00" },
|
||||
{ "time": 0.2, "name": "images/effects/chixu/chixu_01" },
|
||||
{ "time": 0.2667, "name": "images/effects/chixu/chixu_02" },
|
||||
{ "time": 0.3333, "name": "images/effects/chixu/chixu_03" },
|
||||
{ "time": 0.4, "name": "images/effects/chixu/chixu_04" },
|
||||
{ "time": 0.4667, "name": "images/effects/chixu/chixu_05" },
|
||||
{ "time": 0.5333, "name": "images/effects/chixu/chixu_06" },
|
||||
{ "time": 0.6, "name": "images/effects/chixu/chixu_07" },
|
||||
{ "time": 0.6667, "name": "images/effects/chixu/chixu_08" },
|
||||
{ "time": 0.7333, "name": "images/effects/chixu/chixu_09" },
|
||||
{ "time": 0.8, "name": "images/effects/chixu/chixu_10" },
|
||||
{ "time": 0.8667, "name": null }
|
||||
]
|
||||
},
|
||||
"images/effects/chixu/chixu_00": {
|
||||
"attachment": [
|
||||
{ "name": "images/effects/chixu/chixu_06" },
|
||||
{ "time": 0.0667, "name": "images/effects/chixu/chixu_07" },
|
||||
{ "time": 0.1333, "name": "images/effects/chixu/chixu_08" },
|
||||
{ "time": 0.2, "name": "images/effects/chixu/chixu_09" },
|
||||
{ "time": 0.2667, "name": "images/effects/chixu/chixu_10" },
|
||||
{ "time": 0.3333, "name": null },
|
||||
{ "time": 0.6, "name": "images/effects/chixu/chixu_00" },
|
||||
{ "time": 0.6667, "name": "images/effects/chixu/chixu_01" },
|
||||
{ "time": 0.7333, "name": "images/effects/chixu/chixu_02" },
|
||||
{ "time": 0.8, "name": "images/effects/chixu/chixu_03" },
|
||||
{ "time": 0.8667, "name": "images/effects/chixu/chixu_04" },
|
||||
{ "time": 0.9333, "name": "images/effects/chixu/chixu_05" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian": {
|
||||
"color": [
|
||||
{ "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.1333, "color": "ffffff00" },
|
||||
{ "time": 0.1667, "color": "ffffffff" },
|
||||
{ "time": 0.2667, "color": "ffffff00" },
|
||||
{ "time": 0.3667, "color": "ffffffed" },
|
||||
{ "time": 0.4333, "color": "fffffff5" },
|
||||
{ "time": 0.5333, "color": "ffffff33" },
|
||||
{ "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
|
||||
{ "time": 0.6667, "color": "ffffffff" },
|
||||
{ "time": 0.8333, "color": "ffffff00" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian2": {
|
||||
"color": [
|
||||
{ "time": 0.3667, "color": "ffffffff" },
|
||||
{ "time": 0.5333, "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.9, "color": "ffffff00" },
|
||||
{ "time": 0.9333, "color": "ffffffff" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian3": {
|
||||
"color": [
|
||||
{ "time": 0.2333, "color": "ffffffff" },
|
||||
{ "time": 0.4, "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.6333, "color": "ffffff00" },
|
||||
{ "time": 0.6667, "color": "ffffffff" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian4": {
|
||||
"color": [
|
||||
{ "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.2, "color": "ffffff00" },
|
||||
{ "time": 0.2333, "color": "ffffffff", "curve": "stepped" },
|
||||
{ "time": 0.7333, "color": "ffffffff" },
|
||||
{ "time": 0.9, "color": "ffffff00" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian5": {
|
||||
"color": [
|
||||
{ "color": "ffffff00" },
|
||||
{ "time": 0.0333, "color": "ffffffff", "curve": "stepped" },
|
||||
{ "time": 0.5333, "color": "ffffffff" },
|
||||
{ "time": 0.7, "color": "ffffff00" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian6": {
|
||||
"color": [
|
||||
{ "time": 0.2333, "color": "ffffffff" },
|
||||
{ "time": 0.4, "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.6333, "color": "ffffff00" },
|
||||
{ "time": 0.6667, "color": "ffffffff" }
|
||||
]
|
||||
},
|
||||
"images/effects/guangdian7": {
|
||||
"color": [
|
||||
{ "color": "ffffff00", "curve": "stepped" },
|
||||
{ "time": 0.1333, "color": "ffffff00" },
|
||||
{ "time": 0.1667, "color": "ffffffff", "curve": "stepped" },
|
||||
{ "time": 0.6667, "color": "ffffffff" },
|
||||
{ "time": 0.8333, "color": "ffffff00" }
|
||||
]
|
||||
},
|
||||
"images/effects/huiguang": {
|
||||
"color": [
|
||||
{ "color": "ffffffff" },
|
||||
{ "time": 0.4667, "color": "ffffff71" },
|
||||
{ "time": 0.9333, "color": "ffffffff" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"bones": {
|
||||
"bone2": {
|
||||
"translate": [
|
||||
{ "time": 0.1667 },
|
||||
{ "time": 0.8333, "x": 18.29, "y": 73.14 }
|
||||
]
|
||||
},
|
||||
"bone3": {
|
||||
"translate": [
|
||||
{ "x": 34.13, "y": -4.63 },
|
||||
{ "time": 0.5333, "x": 170.66, "y": -23.16, "curve": "stepped" },
|
||||
{ "time": 0.8667, "x": 170.66, "y": -23.16 },
|
||||
{ "time": 0.9333 }
|
||||
]
|
||||
},
|
||||
"bone4": {
|
||||
"translate": [
|
||||
{ "x": 33.29, "y": 31.52 },
|
||||
{ "time": 0.4, "x": -69.48, "y": -142.62 },
|
||||
{ "time": 0.6667 },
|
||||
{ "time": 0.9333, "x": 33.29, "y": 31.52 }
|
||||
]
|
||||
},
|
||||
"bone5": {
|
||||
"translate": [
|
||||
{ "time": 0.2333 },
|
||||
{ "time": 0.9, "x": -128.62, "y": -19.54 }
|
||||
]
|
||||
},
|
||||
"bone6": {
|
||||
"translate": [
|
||||
{ "time": 0.0333 },
|
||||
{ "time": 0.7, "x": -57.7, "y": 131.91 }
|
||||
]
|
||||
},
|
||||
"bone7": {
|
||||
"translate": [
|
||||
{ "x": 18.08, "y": 13.84 },
|
||||
{ "time": 0.4, "x": 98.49, "y": 94.57 },
|
||||
{ "time": 0.6667 },
|
||||
{ "time": 0.9333, "x": 18.08, "y": 13.84 }
|
||||
]
|
||||
},
|
||||
"bone8": {
|
||||
"translate": [
|
||||
{ "time": 0.1667 },
|
||||
{ "time": 0.8333, "x": 97.32, "y": 76.27 }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
10
assets/shop/spin/mofabang_texiao/mofabang_texiao.json.meta
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ver": "1.2.5",
|
||||
"uuid": "02b34a75-e708-445c-b778-66a0e1cf004d",
|
||||
"importer": "spine",
|
||||
"textures": [
|
||||
"bbb977b3-e109-42c1-81f2-b03c5ecdaba2"
|
||||
],
|
||||
"scale": 1,
|
||||
"subMetas": {}
|
||||
}
|
BIN
assets/shop/spin/mofabang_texiao/mofabang_texiao.png
Normal file
After Width: | Height: | Size: 229 KiB |
38
assets/shop/spin/mofabang_texiao/mofabang_texiao.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "bbb977b3-e109-42c1-81f2-b03c5ecdaba2",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 1000,
|
||||
"height": 1000,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"mofabang_texiao": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "582626cb-8f49-47dc-bb2a-2bbe0a7710be",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "bbb977b3-e109-42c1-81f2-b03c5ecdaba2",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": -308,
|
||||
"offsetY": 1.5,
|
||||
"trimX": 2,
|
||||
"trimY": 2,
|
||||
"width": 380,
|
||||
"height": 993,
|
||||
"rawWidth": 1000,
|
||||
"rawHeight": 1000,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
13
assets/shop/spin/particle.meta
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "6826e4cc-e793-4a00-9a2f-170c7123c455",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
BIN
assets/shop/spin/particle/LiZi1.png
Normal file
After Width: | Height: | Size: 10 KiB |
38
assets/shop/spin/particle/LiZi1.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "727ab669-af95-43be-9818-2065a98b84a5",
|
||||
"importer": "image",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 192,
|
||||
"height": 192,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"LiZi1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c5195cb6-e974-4b2b-9b9a-fa73a8c21cfb",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "727ab669-af95-43be-9818-2065a98b84a5",
|
||||
"trimType": "none",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 192,
|
||||
"height": 192,
|
||||
"rawWidth": 192,
|
||||
"rawHeight": 192,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/shop/spin/particle/bang.png
Normal file
After Width: | Height: | Size: 25 KiB |
38
assets/shop/spin/particle/bang.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "d09b5280-3135-4508-b7ce-7b717d2eb629",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 186,
|
||||
"height": 218,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"bang": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "60d4df1f-7adc-411f-b414-63b28bbc62d8",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "d09b5280-3135-4508-b7ce-7b717d2eb629",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 186,
|
||||
"height": 218,
|
||||
"rawWidth": 186,
|
||||
"rawHeight": 218,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/shop/spin/particle/circle_00.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
38
assets/shop/spin/particle/circle_00.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "c88c6283-3de7-4606-b65a-fa3e18c95049",
|
||||
"importer": "image",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 200,
|
||||
"height": 200,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"circle_00": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "3e2536e0-8913-4e18-80ed-ae109a6fa197",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "c88c6283-3de7-4606-b65a-fa3e18c95049",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 200,
|
||||
"height": 200,
|
||||
"rawWidth": 200,
|
||||
"rawHeight": 200,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/shop/spin/particle/flash.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
38
assets/shop/spin/particle/flash.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "118d4d54-d313-4f52-b49f-593effa13423",
|
||||
"importer": "image",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 73,
|
||||
"height": 73,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"flash": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "a28b8261-be09-47df-aaa7-db3b6edebc3e",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "118d4d54-d313-4f52-b49f-593effa13423",
|
||||
"trimType": "none",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 73,
|
||||
"height": 73,
|
||||
"rawWidth": 73,
|
||||
"rawHeight": 73,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
660
assets/shop/spin/particle/tuowei1.prefab
Normal file
|
@ -0,0 +1,660 @@
|
|||
[
|
||||
{
|
||||
"__type__": "cc.Prefab",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"_native": "",
|
||||
"data": {
|
||||
"__id__": 1
|
||||
},
|
||||
"optimizationPolicy": 0,
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tuowei1",
|
||||
"_objFlags": 0,
|
||||
"_parent": null,
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 2
|
||||
},
|
||||
{
|
||||
"__id__": 5
|
||||
},
|
||||
{
|
||||
"__id__": 8
|
||||
},
|
||||
{
|
||||
"__id__": 11
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [],
|
||||
"_prefab": {
|
||||
"__id__": 14
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 0,
|
||||
"height": 0
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "bang",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": false,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 3
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 4
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 73,
|
||||
"height": 73
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Sprite",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 2
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 2,
|
||||
"_dstBlendFactor": 4,
|
||||
"_spriteFrame": null,
|
||||
"_type": 0,
|
||||
"_sizeMode": 1,
|
||||
"_fillType": 0,
|
||||
"_fillCenter": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_fillStart": 0,
|
||||
"_fillRange": 0,
|
||||
"_isTrimmedMode": true,
|
||||
"_atlas": null,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "41GQWZ2a5Ex6CABo1VEgRM",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tailing",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 6
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 7
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 0,
|
||||
"height": 0
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.MotionStreak",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 5
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 2,
|
||||
"_dstBlendFactor": 4,
|
||||
"_fadeTime": 0.3,
|
||||
"_minSeg": 1,
|
||||
"_stroke": 20,
|
||||
"_texture": {
|
||||
"__uuid__": "c88c6283-3de7-4606-b65a-fa3e18c95049"
|
||||
},
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 128,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_fastMode": false,
|
||||
"_N$preview": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "d7Nu2TAIxA4b0/kSUg8bAf",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "em_flash_particle",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 9
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 10
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 0,
|
||||
"height": 0
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.ParticleSystem",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 8
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_custom": true,
|
||||
"_file": null,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "c5195cb6-e974-4b2b-9b9a-fa73a8c21cfb"
|
||||
},
|
||||
"_texture": null,
|
||||
"_stopped": false,
|
||||
"playOnLoad": true,
|
||||
"autoRemoveOnFinish": false,
|
||||
"totalParticles": 100,
|
||||
"duration": -1,
|
||||
"emissionRate": 224.9,
|
||||
"life": 1,
|
||||
"lifeVar": 0.5,
|
||||
"_startColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_startColorVar": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 0
|
||||
},
|
||||
"_endColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 0
|
||||
},
|
||||
"_endColorVar": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 0
|
||||
},
|
||||
"angle": 0,
|
||||
"angleVar": 360,
|
||||
"startSize": 100,
|
||||
"startSizeVar": 30,
|
||||
"endSize": 1,
|
||||
"endSizeVar": 0,
|
||||
"startSpin": 50,
|
||||
"startSpinVar": 20,
|
||||
"endSpin": 20,
|
||||
"endSpinVar": 0,
|
||||
"sourcePos": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"posVar": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_positionType": 0,
|
||||
"positionType": 0,
|
||||
"emitterMode": 0,
|
||||
"gravity": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"speed": 112.1,
|
||||
"speedVar": 50,
|
||||
"tangentialAccel": 0,
|
||||
"tangentialAccelVar": 0,
|
||||
"radialAccel": -88.8,
|
||||
"radialAccelVar": 50,
|
||||
"rotationIsDir": true,
|
||||
"startRadius": 0,
|
||||
"startRadiusVar": 0,
|
||||
"endRadius": 0,
|
||||
"endRadiusVar": 0,
|
||||
"rotatePerS": 0,
|
||||
"rotatePerSVar": 0,
|
||||
"_N$preview": true,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "79oTbIHqZP55cNO2Plw9CS",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "em_flash_0001",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 12
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 13
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 0,
|
||||
"height": 0
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.ParticleSystem",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 11
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_custom": true,
|
||||
"_file": null,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "a28b8261-be09-47df-aaa7-db3b6edebc3e"
|
||||
},
|
||||
"_texture": null,
|
||||
"_stopped": false,
|
||||
"playOnLoad": true,
|
||||
"autoRemoveOnFinish": false,
|
||||
"totalParticles": 100,
|
||||
"duration": -1,
|
||||
"emissionRate": 100,
|
||||
"life": 0.2,
|
||||
"lifeVar": 0.5,
|
||||
"_startColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_startColorVar": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 0
|
||||
},
|
||||
"_endColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 0
|
||||
},
|
||||
"_endColorVar": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 0
|
||||
},
|
||||
"angle": 0,
|
||||
"angleVar": 360,
|
||||
"startSize": 50,
|
||||
"startSizeVar": 30,
|
||||
"endSize": 0,
|
||||
"endSizeVar": 0,
|
||||
"startSpin": 0,
|
||||
"startSpinVar": 20,
|
||||
"endSpin": 0,
|
||||
"endSpinVar": 0,
|
||||
"sourcePos": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"posVar": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_positionType": 0,
|
||||
"positionType": 0,
|
||||
"emitterMode": 0,
|
||||
"gravity": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"speed": 100,
|
||||
"speedVar": 0,
|
||||
"tangentialAccel": 0,
|
||||
"tangentialAccelVar": 0,
|
||||
"radialAccel": -100,
|
||||
"radialAccelVar": 50,
|
||||
"rotationIsDir": false,
|
||||
"startRadius": 0,
|
||||
"startRadiusVar": 0,
|
||||
"endRadius": 0,
|
||||
"endRadiusVar": 0,
|
||||
"rotatePerS": 0,
|
||||
"rotatePerSVar": 0,
|
||||
"_N$preview": true,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "12615JbA9PJ4FPoMzO8C6x",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "",
|
||||
"sync": false
|
||||
}
|
||||
]
|
9
assets/shop/spin/particle/tuowei1.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "ffebbf13-83a0-4923-a965-96f134e7b567",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|