master
parent
86b65b11c9
commit
592359bdfa
@ -1,25 +0,0 @@ |
||||
{ |
||||
"ver": "1.1.3", |
||||
"uuid": "c6c64a19-e84b-4591-8970-da484a708ff1", |
||||
"importer": "folder", |
||||
"isBundle": true, |
||||
"bundleName": "", |
||||
"priority": 1, |
||||
"compressionType": { |
||||
"bytedance": "zip", |
||||
"wechatgame": "zip" |
||||
}, |
||||
"optimizeHotUpdate": { |
||||
"bytedance": false, |
||||
"wechatgame": false |
||||
}, |
||||
"inlineSpriteFrames": { |
||||
"bytedance": false, |
||||
"wechatgame": false |
||||
}, |
||||
"isRemoteBundle": { |
||||
"bytedance": true, |
||||
"wechatgame": true |
||||
}, |
||||
"subMetas": {} |
||||
} |
@ -1,13 +0,0 @@ |
||||
{ |
||||
"ver": "1.1.3", |
||||
"uuid": "b85f145d-fd63-40c4-83fd-6df7db85d2c7", |
||||
"importer": "folder", |
||||
"isBundle": false, |
||||
"bundleName": "", |
||||
"priority": 1, |
||||
"compressionType": {}, |
||||
"optimizeHotUpdate": {}, |
||||
"inlineSpriteFrames": {}, |
||||
"isRemoteBundle": {}, |
||||
"subMetas": {} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -1,9 +0,0 @@ |
||||
{ |
||||
"ver": "1.3.2", |
||||
"uuid": "0c3ad405-76be-43f8-bd2f-80caab5fbb13", |
||||
"importer": "prefab", |
||||
"optimizationPolicy": "AUTO", |
||||
"asyncLoadAssets": false, |
||||
"readonly": false, |
||||
"subMetas": {} |
||||
} |
@ -1,13 +0,0 @@ |
||||
{ |
||||
"ver": "1.1.3", |
||||
"uuid": "a2300f86-6e03-44f7-97a6-4928a22c2c5d", |
||||
"importer": "folder", |
||||
"isBundle": false, |
||||
"bundleName": "", |
||||
"priority": 1, |
||||
"compressionType": {}, |
||||
"optimizeHotUpdate": {}, |
||||
"inlineSpriteFrames": {}, |
||||
"isRemoteBundle": {}, |
||||
"subMetas": {} |
||||
} |
@ -1,584 +0,0 @@ |
||||
import DaDianScript from "../../../FrameWork/Base/DaDianScript"; |
||||
import WordGameBaseComponent from "../../../FrameWork/Base/WordGameBaseComptent"; |
||||
import { ryw_Event } from "../../../FrameWork/Event/EventEnum"; |
||||
import EventMgr from "../../../FrameWork/Event/EventMgr"; |
||||
import Common from "../../../FrameWork/Util/Common"; |
||||
import Common5 from "../../../Platform/th/Common5"; |
||||
import Game from "../../../Scripts/Game"; |
||||
import CccGame from "../../../WordGame/gameComScript/CccGame/CccGame"; |
||||
import ChaDianListScript from "../../../WordGame/gameComScript/ChaDianListScript"; |
||||
import ChooseBtnLayer from "../../../WordGame/gameComScript/ChooseBtnLayer"; |
||||
import logPrefabScript from "../../../WordGame/gameComScript/logPrefabScript"; |
||||
// import ShengWuShiYanShiConfig from "./ShengWuShiYanShiConfig";
|
||||
|
||||
const { ccclass, property } = cc._decorator; |
||||
|
||||
@ccclass |
||||
export default class ShengWuShiYanShi extends WordGameBaseComponent { |
||||
|
||||
@property(cc.Node) |
||||
layerNode: cc.Node[] = []; |
||||
|
||||
@property(cc.Node) |
||||
chooseLayer: cc.Node = null; |
||||
|
||||
//当前层级下标
|
||||
curLayerIndex = 0; |
||||
//当前进度
|
||||
curSchedule = 0; |
||||
chadianNum = 0; |
||||
chooseIndex: number = -1; |
||||
chadianIndex: number = 0; |
||||
|
||||
//文本配置
|
||||
titleArrayConfig: string[] = []; |
||||
duihuaArrayConfig: any[] = []; |
||||
chadianListConfig: any = null; |
||||
chooseArrayConfig: any = null; |
||||
zombieLogConfig: any = null; |
||||
|
||||
|
||||
|
||||
start() { |
||||
super.start(); |
||||
DaDianScript.userEnterDaDian(); |
||||
this.openTouchEvent(this.node.getChildByName('bg')); |
||||
// this.initParameters();
|
||||
// this.initComponent();
|
||||
|
||||
Common5.getJsonFromBundle(Common5.selectGameInfo.bundle,'script/ShengWuShiYanShiConfig',(assest)=>{ |
||||
//this.jsonData = JSON.stringify(assest.json)
|
||||
|
||||
this.jsonData =assest.json |
||||
|
||||
this.initParameters(); |
||||
this.initComponent(); |
||||
} ) |
||||
|
||||
} |
||||
|
||||
initParameters() { |
||||
this.curLayerIndex = 0; |
||||
this.curSchedule = 0; |
||||
this.chadianNum = 0; |
||||
this.chooseIndex = -1; |
||||
this.chadianIndex = 0; |
||||
this.titleArrayConfig = this.jsonData.titleArray//ShengWuShiYanShiConfig.getInstance().getGameConfig('titleArray') as string[];
|
||||
this.duihuaArrayConfig = this.jsonData.duihuaArray//ShengWuShiYanShiConfig.getInstance().getGameConfig('duihuaArray') as any[];
|
||||
this.chadianListConfig = this.jsonData.chadianList//ShengWuShiYanShiConfig.getInstance().getGameConfig('chadianList');
|
||||
this.chooseArrayConfig = this.jsonData.chooseArray//ShengWuShiYanShiConfig.getInstance().getGameConfig('chooseArray');
|
||||
this.zombieLogConfig = this.jsonData.zombieLog//ShengWuShiYanShiConfig.getInstance().getGameConfig('zombieLog');
|
||||
Common.Type = this.curLayerIndex; |
||||
Common.subLevel = this.curLayerIndex; |
||||
Common.GameSubTipConfigs = this.jsonData.tipsArray//ShengWuShiYanShiConfig.getInstance().getGameConfig('tipsArray');
|
||||
Common.GameSubAnswerConfigs = this.jsonData.answersArray//ShengWuShiYanShiConfig.getInstance().getGameConfig('answersArray');
|
||||
} |
||||
|
||||
initComponent() { |
||||
for (const node of this.layerNode) { |
||||
node.active = false; |
||||
} |
||||
|
||||
EventMgr.onEvent_custom(ryw_Event.touchChaDianCheck, (data_) => { |
||||
this.gameChaDianStep(data_.touchIndex); |
||||
}, this); |
||||
|
||||
EventMgr.onEvent_custom(ryw_Event.NormalTouchEndCheck, (data_) => { |
||||
this.normalTouchCallback(data_.targetNode); |
||||
}, this); |
||||
|
||||
EventMgr.onEvent_custom(ryw_Event.NormalTouchMoveCheck, (data_) => { |
||||
this.normalTouchCallback(data_.targetNode); |
||||
}, this); |
||||
|
||||
EventMgr.onEvent_custom(ryw_Event.chooseResult, (data_) => { |
||||
this.chooseResultCallback(data_.touchIndex); |
||||
}, this); |
||||
|
||||
// EventMgr.onEvent_custom(ryw_Event.WordGameRevive, () => {
|
||||
// this.wordGameReviveCallback();
|
||||
// }, this);
|
||||
} |
||||
|
||||
refreshLayer() { |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
node.active = true; |
||||
|
||||
let title = this.titleArrayConfig[this.curLayerIndex]; |
||||
let lab = this.node.getChildByName("标题").getChildByName("lab"); |
||||
lab.getComponent(cc.Label).string = title; |
||||
|
||||
|
||||
Game.ins.setGameTitle(title) |
||||
|
||||
switch (this.curLayerIndex) { |
||||
case 0: |
||||
Common5.playMusicCustom("shengwushiyanshi", "sound/场景一"); |
||||
this.showDuiHua(this.duihuaArrayConfig[0], () => { |
||||
cc.tween(node.getChildByName('背景1')) |
||||
.to(0.5, { opacity: 0 }) |
||||
.call(() => { |
||||
cc.tween(node.getChildByName('背景2')) |
||||
.set({ active: true, opacity: 0 }) |
||||
.to(0.5, { opacity: 255 }) |
||||
.call(() => { |
||||
this.showDuiHua(this.duihuaArrayConfig[1], () => { |
||||
this.refreshChadian(0); |
||||
}); |
||||
}) |
||||
.start(); |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case 1: |
||||
Common5.playMusicCustom("shengwushiyanshi", "sound/场景二三"); |
||||
this.node.getChildByName("mask").active = true; |
||||
this.showDuiHua(this.duihuaArrayConfig[3], () => { |
||||
this.showDuiHua(this.duihuaArrayConfig[4], () => { |
||||
this.node.getChildByName("mask").active = false; |
||||
}); |
||||
}); |
||||
break; |
||||
case 2: |
||||
this.node.getChildByName("mask").active = true; |
||||
this.showDuiHua(this.duihuaArrayConfig[7], () => { |
||||
this.node.getChildByName("mask").active = false; |
||||
this.refreshChadian(1); |
||||
}); |
||||
break; |
||||
default: |
||||
break; |
||||
} |
||||
} |
||||
|
||||
refreshChadian(chadianIndex: number) { |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
let chadianIconList = node.getChildByName('chadianIconList'); |
||||
let chadianTouchList = node.getChildByName('chadianTouchList'); |
||||
chadianIconList.active = true; |
||||
chadianTouchList.active = true; |
||||
|
||||
this.chadianIndex = chadianIndex; |
||||
let config = this.chadianListConfig[chadianIndex]; |
||||
if (config) { |
||||
let chadianIconList = node.getChildByName('chadianIconList'); |
||||
let scr: ChaDianListScript = chadianIconList.getComponent('ChaDianListScript'); |
||||
scr.setChaDianData(config.chadianIconList); |
||||
} |
||||
|
||||
this.curSchedule = 0; |
||||
} |
||||
|
||||
refreshChadian2(chadianIndex: number) { |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
let chadianIconList = node.getChildByName('chadianIconList2'); |
||||
let chadianTouchList = node.getChildByName('chadianTouchList2'); |
||||
chadianIconList.active = true; |
||||
chadianTouchList.active = true; |
||||
|
||||
Common.GameSubTipConfigs = this.jsonData.tipsArray2//ShengWuShiYanShiConfig.getInstance().getGameConfig('tipsArray2');
|
||||
this.chadianIndex = chadianIndex; |
||||
let config = this.chadianListConfig[chadianIndex]; |
||||
if (config) { |
||||
let chadianIconList = node.getChildByName('chadianIconList2'); |
||||
let scr: ChaDianListScript = chadianIconList.getComponent('ChaDianListScript'); |
||||
scr.setChaDianData(config.chadianIconList); |
||||
} |
||||
|
||||
this.curSchedule = 0; |
||||
} |
||||
|
||||
refreshConclusion() { |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
let chadianIconList = node.getChildByName('chadianIconList'); |
||||
let chadianTouchList = node.getChildByName('chadianTouchList'); |
||||
chadianIconList.active = false; |
||||
chadianTouchList.active = false; |
||||
|
||||
switch (this.curLayerIndex) { |
||||
case 0: |
||||
this.showDuiHua(this.duihuaArrayConfig[2], () => { |
||||
this.nextLayer(); |
||||
}); |
||||
break; |
||||
case 1: |
||||
cc.tween(node.getChildByName('背景1')) |
||||
.to(0.5, { opacity: 0 }) |
||||
.call(() => { |
||||
cc.tween(node.getChildByName('背景2')) |
||||
.set({ active: true, opacity: 0 }) |
||||
.to(0.5, { opacity: 255 }) |
||||
.call(() => { |
||||
this.showDuiHua(this.duihuaArrayConfig[5], () => { |
||||
this.showDuiHua(this.duihuaArrayConfig[6], () => { |
||||
this.nextLayer(); |
||||
}); |
||||
}); |
||||
}) |
||||
.start(); |
||||
}) |
||||
.start(); |
||||
break; |
||||
case 2: |
||||
if (this.chadianIndex == 1) { |
||||
node.getChildByName('背景').getChildByName('开门').active = true; |
||||
cc.tween(node.getChildByName('背景').getChildByName('角色')) |
||||
.delay(1) |
||||
.set({ active: true, opacity: 0 }) |
||||
.to(1, { opacity: 255 }) |
||||
.call(() => { |
||||
this.showDuiHua(this.duihuaArrayConfig[8], () => { |
||||
this.refreshChadian2(2); |
||||
}); |
||||
}) |
||||
.start(); |
||||
} else if (this.chadianIndex == 2) { |
||||
let chadianIconList = node.getChildByName('chadianIconList2'); |
||||
let chadianTouchList = node.getChildByName('chadianTouchList2'); |
||||
chadianIconList.active = false; |
||||
chadianTouchList.active = false; |
||||
this.showDuiHua(this.duihuaArrayConfig[9], () => { |
||||
this.showChooseLayer(0); |
||||
node.getChildByName('operate').active = true; |
||||
}); |
||||
} |
||||
break; |
||||
default: |
||||
break; |
||||
} |
||||
|
||||
this.curSchedule = 1; |
||||
} |
||||
|
||||
gameChaDianStep(touchIndex) { |
||||
let config = this.chadianListConfig[this.chadianIndex]; |
||||
let chadianLog = config.chadianLog; |
||||
|
||||
this.showDuiHua(chadianLog[touchIndex]); |
||||
console.log(this.chadianNum, ' this.chadianNum++='); |
||||
|
||||
if (this.curSchedule == 0) { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == chadianLog.length) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
} |
||||
} |
||||
|
||||
normalTouchCallback(targetNode) { |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
switch (targetNode.name) { |
||||
case "领取任务": |
||||
cc.tween(this.node.getChildByName('layer0')) |
||||
.delay(1.0) |
||||
.to(1, { opacity: 0 }) |
||||
.call(() => { |
||||
this.node.getChildByName('layer0').active = false; |
||||
this.refreshLayer(); |
||||
}) |
||||
.start(); |
||||
break; |
||||
case "牛肉": |
||||
targetNode.checkNode.active = true; |
||||
this.showDuiHua(this.zombieLogConfig[0], () => { |
||||
cc.tween(targetNode.attrNodeArray[0]) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == 6) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case "砖": |
||||
targetNode.checkNode.active = true; |
||||
this.showDuiHua(this.zombieLogConfig[1], () => { |
||||
cc.tween(targetNode.attrNodeArray[0]) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == 6) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case "打火机": |
||||
targetNode.checkNode.active = true; |
||||
this.showDuiHua(this.zombieLogConfig[2], () => { |
||||
cc.tween(targetNode.attrNodeArray[0]) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == 6) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case "手电筒": |
||||
this.showDuiHua(this.zombieLogConfig[3], () => { |
||||
cc.tween(targetNode.attrNodeArray[0]) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == 6) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case "鞋子道具": |
||||
targetNode.checkNode.active = true; |
||||
this.showDuiHua(this.zombieLogConfig[4], () => { |
||||
cc.tween(targetNode.attrNodeArray[0]) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == 6) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case "符咒": |
||||
targetNode.checkNode.active = true; |
||||
this.showDuiHua(this.zombieLogConfig[5], () => { |
||||
cc.tween(targetNode.attrNodeArray[0]) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.chadianNum++; |
||||
if (this.chadianNum == 6) { |
||||
this.chadianNum = 0; |
||||
this.scheduleOnce(() => { |
||||
this.refreshConclusion(); |
||||
}, 3); |
||||
} |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
case "针": |
||||
CccGame.playAnimation2(node.getChildByName('针管'), '针管', false, null, (spineNode) => { |
||||
this.chooseLayer.active = false; |
||||
spineNode.active = false; |
||||
this.node.getChildByName('mask').active = true; |
||||
cc.tween(node.getChildByName('背景').getChildByName('角色')) |
||||
.to(1, { opacity: 0 }) |
||||
.set({ active: false }) |
||||
.call(() => { |
||||
this.showDuiHua(this.duihuaArrayConfig[12], () => { |
||||
node.getChildByName('胜利').active = true; |
||||
Common5.playEffectCustom("shengwushiyanshi", 'sound/开门'); |
||||
this.showDuiHua(this.duihuaArrayConfig[13], () => { |
||||
this.endGameView(1); |
||||
}); |
||||
}); |
||||
}) |
||||
.start(); |
||||
}); |
||||
break; |
||||
default: |
||||
break; |
||||
} |
||||
} |
||||
|
||||
chooseResultCallback(touchIndex: number) { |
||||
this.node.getChildByName("mask").active = false; |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
if (this.chooseIndex == 0) { |
||||
this.node.getChildByName('mask').active = true; |
||||
if (touchIndex == 0) { |
||||
this.showDuiHua(this.duihuaArrayConfig[10], () => { |
||||
CccGame.playAnimation2(node.getChildByName('场景3死亡'), 'animation'); |
||||
this.scheduleOnce(() => { |
||||
this.wordGameReviveCallback(); |
||||
}, 2); |
||||
}); |
||||
} else { |
||||
this.showDuiHua(this.duihuaArrayConfig[11], () => { |
||||
CccGame.playAnimation2(node.getChildByName('场景3死亡'), 'animation'); |
||||
this.scheduleOnce(() => { |
||||
this.wordGameReviveCallback(); |
||||
}, 2); |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
|
||||
//重玩回调
|
||||
wordGameReviveCallback() { |
||||
this.node.getChildByName("mask").active = false; |
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
switch (this.curLayerIndex) { |
||||
case 2: |
||||
cc.tween(node) |
||||
.set({ opacity: 0 }) |
||||
.call(() => { |
||||
node.getChildByName('场景3死亡').active = false; |
||||
}) |
||||
.delay(1) |
||||
.to(1, { opacity: 255 }) |
||||
.call(() => { |
||||
this.showDuiHua(this.duihuaArrayConfig[9], () => { |
||||
this.showChooseLayer(0); |
||||
node.getChildByName('operate').active = true; |
||||
}); |
||||
}) |
||||
.start(); |
||||
break; |
||||
default: |
||||
break; |
||||
} |
||||
} |
||||
|
||||
//显示选项
|
||||
showChooseLayer(chooseIndex: number) { |
||||
this.chooseLayer.active = true; |
||||
this.chooseIndex = chooseIndex; |
||||
Common.GameSubChooseArray = this.chooseArrayConfig[chooseIndex]; |
||||
let script_: ChooseBtnLayer = this.chooseLayer.getComponent('ChooseBtnLayer'); |
||||
script_.setChooseBtnView(); |
||||
} |
||||
|
||||
//显示对话
|
||||
showDuiHua(curLog, func?) { |
||||
console.log("curLog==", curLog); |
||||
|
||||
if (curLog.str == '') { |
||||
return; |
||||
} |
||||
|
||||
if (curLog.effectUrl) { |
||||
Common5.playEffectCustom("shengwushiyanshi", curLog.effectUrl); |
||||
} |
||||
|
||||
let string_ = curLog.str |
||||
let qiPaoPos_ = curLog.qiPaoPos |
||||
let delayTime_ = curLog.delayTime || 3; |
||||
|
||||
let node = this.layerNode[this.curLayerIndex]; |
||||
if (qiPaoPos_ != -1) { |
||||
let qiPao = node.getChildByName("qiPao").getChildByName("qiPao_" + qiPaoPos_); |
||||
qiPao.stopAllActions() |
||||
qiPao.getChildByName("str").getComponent(cc.Label).string = string_ |
||||
qiPao.active = true |
||||
qiPao.scale = 0 |
||||
cc.tween(qiPao) |
||||
.to(0.2, { scale: 1 }) |
||||
.delay(delayTime_) |
||||
.call(() => { |
||||
qiPao.active = false |
||||
}) |
||||
.start(); |
||||
} |
||||
else { |
||||
let logPrefab = this.node.getChildByName('logPrefab') |
||||
let script_: logPrefabScript = logPrefab.getComponent('logPrefabScript') |
||||
script_.setDailogShow(string_, delayTime_) |
||||
} |
||||
|
||||
this.scheduleOnce(() => { |
||||
if (func) { |
||||
func(); |
||||
} |
||||
}, delayTime_); |
||||
} |
||||
|
||||
nextLayer() { |
||||
this.curLayerIndex++; |
||||
Common.subLevel = this.curLayerIndex; |
||||
|
||||
Game.ins.updateTishiBtn() |
||||
for (let i = 0; i < this.layerNode.length; i++) { |
||||
if (this.layerNode[i].active) { |
||||
cc.tween(this.layerNode[i]) |
||||
.delay(1.0) |
||||
.to(1, { opacity: 0 }) |
||||
.call(() => { |
||||
this.layerNode[i].active = false; |
||||
this.refreshLayer(); |
||||
}) |
||||
.start(); |
||||
} else { |
||||
this.layerNode[i].active = false; |
||||
} |
||||
}; |
||||
} |
||||
|
||||
endGameView(touchIndex) { |
||||
this.node.getChildByName("mask").active = true; |
||||
Game.ins.stopTime(); |
||||
this.scheduleOnce(() => { |
||||
|
||||
// this.node.getChildByName("mask").active = true;
|
||||
if (touchIndex == 0) { |
||||
Game.ins.showFail();; |
||||
} else { |
||||
Game.ins.showSuccess();; |
||||
} |
||||
}, 3) |
||||
} |
||||
|
||||
openTouchEvent(node) { |
||||
node.on(cc.Node.EventType.TOUCH_START, this.touchStartNode, this) |
||||
node.on(cc.Node.EventType.TOUCH_MOVE, this.touchMoveNode, this) |
||||
node.on(cc.Node.EventType.TOUCH_CANCEL, this.touchEndNode, this) |
||||
node.on(cc.Node.EventType.TOUCH_END, this.touchEndNode, this) |
||||
} |
||||
|
||||
closeTouchEvent(node: cc.Node) { |
||||
node.off(cc.Node.EventType.TOUCH_START, this.touchStartNode, this) |
||||
node.off(cc.Node.EventType.TOUCH_MOVE, this.touchMoveNode, this) |
||||
node.off(cc.Node.EventType.TOUCH_CANCEL, this.touchEndNode, this) |
||||
node.off(cc.Node.EventType.TOUCH_END, this.touchEndNode, this) |
||||
} |
||||
|
||||
touchStartNode(event) { |
||||
let target = event.target; |
||||
console.log('touchStartNode'); |
||||
} |
||||
|
||||
touchMoveNode(event) { |
||||
|
||||
} |
||||
|
||||
touchEndNode(event) { |
||||
let target = event.target |
||||
let logPrefab = this.node.getChildByName('logPrefab') |
||||
logPrefab.getChildByName('duihua').active = false; |
||||
} |
||||
|
||||
//update(dt) { }
|
||||
} |
@ -1,10 +0,0 @@ |
||||
{ |
||||
"ver": "1.1.0", |
||||
"uuid": "3ba65ac6-de48-4f05-9215-71419051da8a", |
||||
"importer": "typescript", |
||||
"isPlugin": false, |
||||
"loadPluginInWeb": true, |
||||
"loadPluginInNative": true, |
||||
"loadPluginInEditor": false, |
||||
"subMetas": {} |
||||
} |
@ -1,342 +0,0 @@ |
||||
{ |
||||
"titleArray": [ |
||||
"找出怪异的地方", |
||||
"赶走它们", |
||||
"找到证据逃出去" |
||||
], |
||||
"tipsArray": [ |
||||
"点击树上的乌鸦", |
||||
"上划背包将牛肉丢给感染者吃", |
||||
"点击墙上的实验日期" |
||||
], |
||||
"tipsArray2": [ |
||||
"点击树上的乌鸦", |
||||
"上划背包将牛肉丢给感染者吃", |
||||
"脖子上的绿色汁液" |
||||
], |
||||
"answersArray": [ |
||||
"场景一茬点:\n1.树上的乌鸦\n2.门口的封条\n3.楼上玻璃处的人影", |
||||
"场景二茬点:\n1.将墙上的砖头拖动到感染者头上\n2.上划背包露出牛肉,将肉拖给感染者\n3.上划女生的口袋露出打火机,点击打火机点火后拖给感染者\n4.将墙上的符咒拖给感染者\n5.将女生的右鞋拖给感染者\n6.将书包旁的手电筒拖给女生", |
||||
"场景三茬点:\n场景:\n1.点击地下的报纸\n2.旁边绿色的仪器罐\n3.桌子上的药品\n4.地下的痕迹\n5.墙上的抓痕\n6.点击墙上的实验日期\n主任身上:\n1.脖子上的绿色汁液\n2.胸口的工作牌\n3.下滑口罩露出獠牙\n4.缠着绷带的脚\n5.左划衣袖露出变异部位\n6.两个选项都不选,将桌上的注射器拖动到女人身上即可" |
||||
], |
||||
"chooseArray": [ |
||||
{ |
||||
"btnArray": [ |
||||
"相信他", |
||||
"拒绝他" |
||||
] |
||||
} |
||||
], |
||||
"duihuaArray": [ |
||||
{ |
||||
"str": "根据短信内容,应该就是这个地方了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/根据短信内容,应该就是这个地方了" |
||||
}, |
||||
{ |
||||
"str": "这里看起来荒废很多年了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 2, |
||||
"effectUrl": "sound/这里看起来荒废很多年了" |
||||
}, |
||||
{ |
||||
"str": "不管了,先进去看看", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/不管了,先进去看看" |
||||
}, |
||||
{ |
||||
"str": "还好你及时赶到,不然我就......", |
||||
"qiPaoPos": 0, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/还好你及时赶到,不然我就......" |
||||
}, |
||||
{ |
||||
"str": "坚持住,我来想想办法", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/坚持住,我来想想办法" |
||||
}, |
||||
{ |
||||
"str": "我发现了一个奇怪的地方,快跟我来", |
||||
"qiPaoPos": 1, |
||||
"delayTime": 2.5, |
||||
"effectUrl": "sound/我发现了一个奇怪的地方,快跟我来" |
||||
}, |
||||
{ |
||||
"str": "走,我们去看看", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/走,我们去看看" |
||||
}, |
||||
{ |
||||
"str": "这里好像是一个实验室?", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这里好像是一个实验室?" |
||||
}, |
||||
{ |
||||
"str": "快,离开这里,他们都是被生物实验失败的感染者", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/快,离开这里,他们都是被生物实验失败的感染者" |
||||
}, |
||||
{ |
||||
"str": "你们不用担心,跟着我,我带你们出去", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/你们不用担心,跟着我,我带你们出去" |
||||
}, |
||||
{ |
||||
"str": "孩子们,又来新鲜美味的食物了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/孩子们,又来新鲜美味的食物了" |
||||
}, |
||||
{ |
||||
"str": "既然被你们发现了,就别想活着走出去了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/既然被你们发现了,就别想活着走出去了" |
||||
}, |
||||
{ |
||||
"str": "你才是这实验室真正的主人吧", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/你才是这实验室真正的主人吧" |
||||
}, |
||||
{ |
||||
"str": "终于出来了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/终于出来了" |
||||
} |
||||
], |
||||
"chadianList": [ |
||||
{ |
||||
"chadianIconList": [ |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "乌鸦", |
||||
"url": "texture/chadianIcon/1/乌鸦", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "封条", |
||||
"url": "texture/chadianIcon/1/2", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "黑影", |
||||
"url": "texture/chadianIcon/1/3", |
||||
"isCheck": false |
||||
} |
||||
], |
||||
"chadianLog": [ |
||||
{ |
||||
"str": "乌鸦?看起来不太吉利啊", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/乌鸦?看起来不太吉利啊" |
||||
}, |
||||
{ |
||||
"str": "究竟是什么原因被封起来了?", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 2.5, |
||||
"effectUrl": "sound/究竟是什么原因被封起来了?" |
||||
}, |
||||
{ |
||||
"str": "楼上好像有人,难道就是她联系的我吗?", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3.5, |
||||
"effectUrl": "sound/楼上好像有人,难道就是她联系的我吗?" |
||||
} |
||||
] |
||||
}, |
||||
{ |
||||
"chadianIconList": [ |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "血迹", |
||||
"url": "texture/chadianIcon/2/1", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "抓痕", |
||||
"url": "texture/chadianIcon/2/2", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "报纸", |
||||
"url": "texture/chadianIcon/2/3", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "实验日期", |
||||
"url": "texture/chadianIcon/2/4", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "仪器", |
||||
"url": "texture/chadianIcon/2/5", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "化学药物", |
||||
"url": "texture/chadianIcon/2/6", |
||||
"isCheck": false |
||||
} |
||||
], |
||||
"chadianLog": [ |
||||
{ |
||||
"str": "这地上的痕迹是.....", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这地上的痕迹是....." |
||||
}, |
||||
{ |
||||
"str": "这是什么抓痕", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这是什么抓痕" |
||||
}, |
||||
{ |
||||
"str": "看来当年这里发生了不少事情", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/看来当年这里发生了不少事情" |
||||
}, |
||||
{ |
||||
"str": "那些奇怪生物看来跟这个实验有关", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/那些奇怪生物看来跟这个实验有关" |
||||
}, |
||||
{ |
||||
"str": "这个奇怪的机器是用来干嘛的", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这个奇怪的机器是用来干嘛的" |
||||
}, |
||||
{ |
||||
"str": "这里面是什么药水", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这里面是什么药水" |
||||
} |
||||
] |
||||
}, |
||||
{ |
||||
"chadianIconList": [ |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "汁液", |
||||
"url": "texture/chadianIcon/3/1", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "感染部位", |
||||
"url": "texture/chadianIcon/3/2", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "工作牌", |
||||
"url": "texture/chadianIcon/3/3", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "獠牙", |
||||
"url": "texture/chadianIcon/3/4", |
||||
"isCheck": false |
||||
}, |
||||
{ |
||||
"bandleName": "shengwushiyanshi", |
||||
"name": "受伤的腿", |
||||
"url": "texture/chadianIcon/3/5", |
||||
"isCheck": false |
||||
} |
||||
], |
||||
"chadianLog": [ |
||||
{ |
||||
"str": "不知道在哪里蹭上的", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/不知道在哪里蹭上的" |
||||
}, |
||||
{ |
||||
"str": "我也是这场实验的受害者", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/我也是这场实验的受害者" |
||||
}, |
||||
{ |
||||
"str": "我只是这个实验室的工作人员而已", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 4, |
||||
"effectUrl": "sound/我只是这个实验室的工作人员而已" |
||||
}, |
||||
{ |
||||
"str": "放心,我不会伤害你们的", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/放心,我不会伤害你们的" |
||||
}, |
||||
{ |
||||
"str": "这是我不小心割伤的", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这是我不小心割伤的" |
||||
} |
||||
] |
||||
} |
||||
], |
||||
"zombieLog": [ |
||||
{ |
||||
"str": "吃饱了,该去休息了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/吃饱了,该去休息了" |
||||
}, |
||||
{ |
||||
"str": "我是谁......我怎么在这里", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/我是谁......我怎么在这里" |
||||
}, |
||||
{ |
||||
"str": "好烫好烫", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/好烫好烫" |
||||
}, |
||||
{ |
||||
"str": "我最怕光了,快拿开", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/我最怕光了,快拿开" |
||||
}, |
||||
{ |
||||
"str": "这鞋子臭死我了", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/这鞋子臭死我了" |
||||
}, |
||||
{ |
||||
"str": "可恶的外来者,我要撕了你们", |
||||
"qiPaoPos": -1, |
||||
"delayTime": 3, |
||||
"effectUrl": "sound/可恶的外来者,我要撕了你们" |
||||
} |
||||
] |
||||
} |
@ -1,6 +0,0 @@ |
||||
{ |
||||
"ver": "1.0.2", |
||||
"uuid": "69ac2667-20a2-4e5e-bdf9-49cfbd4284ed", |
||||
"importer": "json", |
||||
"subMetas": {} |
||||
} |
@ -1,13 +0,0 @@ |
||||
{ |
||||
"ver": "1.1.3", |
||||
"uuid": "bb93e3a8-9275-4e2a-975a-bd0b716d1340", |
||||
"importer": "folder", |
||||
"isBundle": false, |
||||
"bundleName": "", |
||||
"priority": 1, |
||||
"compressionType": {}, |
||||
"optimizeHotUpdate": {}, |
||||
"inlineSpriteFrames": {}, |
||||
"isRemoteBundle": {}, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "face63d3-d7fd-4e37-831a-b0c68e91e55d", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.671837, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "7afebd11-13c2-4d3e-82ba-1334d981e55a", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.063673, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "0cf05541-6490-4f48-ad82-72340f8815f1", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.429388, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "6002eb36-713c-43f4-87ec-e4eac634f9ad", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 3.134694, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "b31cc823-57f1-49ad-abf0-f9980b6b0b46", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.194286, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "05b01245-76a9-4df4-aefc-6906c53b03ee", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.638367, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "1be88168-4072-41e1-b521-f1bd992824f3", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.168163, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "2d670f1c-d16e-421a-be5a-f56735ea080a", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 5.825306, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "33b0751e-1eff-4aa5-8163-e72b46df9c3f", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 14.915918, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "feae3abb-1984-403b-b1d4-31cac532ffdb", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.168163, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "4e6ff863-b72d-49dd-ba76-19f38acfec5a", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.38449, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "792b7f2f-ec61-46b4-a834-2ec544512222", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 3.108571, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "4e93498a-da5c-4cc7-b772-8e8fc30e0a07", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 4.048938, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "33a1ae0d-0999-4446-9c89-8bc3c1fd4cd2", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 4.04898, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "dd9f46d8-09fb-4ced-8160-b48ed8838c9d", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.828571, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "576041de-0c6e-4dd6-9fe9-5def2d3bf316", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.56, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "6b0c08bd-868c-4c73-aaef-dd868b7d7473", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.429388, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "0220da1a-be0e-43d1-832e-68b269a42598", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.880816, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "8d41d4d6-66b3-4165-8dd0-301ae9a0c675", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.246531, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "32a4ca8a-292c-4816-b77e-01cbce4e64aa", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.115918, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "9dd348c1-f297-4104-a185-35c259b96b0e", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 3.422041, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "03a9ee0d-adf1-4a1d-b42c-4db3117f4e5b", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.821224, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "b24c14e7-73fb-478f-a896-f080b2196be2", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 3.030204, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "2dc3148e-81e1-45cd-a1e6-5f1d90f1089e", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.985306, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "b816ac2b-0114-44e3-a8b5-700dc4f89811", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 0.888163, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "6c6dacbb-bf4f-4401-a97e-875cbb5d373a", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.959184, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "25178661-5c3d-4488-8baa-55a478749bc4", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.044898, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "d320aae1-5c22-4c23-a785-bbe7ed5cd844", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.645714, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "ece7d432-03b7-47f8-87b1-99d906c06795", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.246531, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "d688e7ac-b90e-4d76-bbeb-af655b5616b7", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.298776, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "3fc564d0-6426-470f-99fc-d3814fdd402c", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.436735, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "feced184-7fc4-486c-b82d-7d3dfcd683b0", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.17551, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "08836fcc-a7c2-47da-93ad-44ef941a9c1c", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.645714, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "749a44e4-20ec-436d-9afa-2d76366493e5", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.724082, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "71f5ca63-443b-4cba-b3ff-b55c973559a1", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.880816, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "37ed09b3-f690-4dfb-8b5f-0fa9ae49017d", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.332245, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "57431199-8557-4d4f-8d33-d02060b6696b", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 1.671837, |
||||
"subMetas": {} |
||||
} |
Binary file not shown.
@ -1,8 +0,0 @@ |
||||
{ |
||||
"ver": "2.0.3", |
||||
"uuid": "7b5404b8-bb92-4512-9f0e-ed88ce78dfe8", |
||||
"importer": "audio-clip", |
||||
"downloadMode": 0, |
||||
"duration": 2.795102, |
||||
"subMetas": {} |
||||
} |
@ -1,13 +0,0 @@ |
||||
{ |
||||
"ver": "1.1.3", |
||||
"uuid": "6bd16cba-d55b-4e30-8bef-49cc6f064ea4", |
||||
"importer": "folder", |
||||
"isBundle": false, |
||||
"bundleName": "", |
||||
"priority": 1, |
||||
"compressionType": {}, |
||||
"optimizeHotUpdate": {}, |
||||
"inlineSpriteFrames": {}, |
||||
"isRemoteBundle": {}, |
||||
"subMetas": {} |
||||
} |
@ -1,62 +0,0 @@ |
||||
|
||||
僵尸.png |
||||
size: 956,329 |
||||
format: RGBA8888 |
||||
filter: Linear,Linear |
||||
repeat: none |
||||
上臂右 |
||||
rotate: true |
||||
xy: 724, 26 |
||||
size: 107, 139 |
||||
orig: 107, 139 |
||||
offset: 0, 0 |
||||
index: -1 |
||||
上臂左 |
||||
rotate: true |
||||
xy: 724, 135 |
||||
size: 105, 144 |
||||
orig: 105, 144 |
||||
offset: 0, 0 |
||||
index: -1 |
||||
卷 |
||||
rotate: false |
||||
xy: 870, 219 |
||||
size: 19, 21 |
||||
orig: 19, 22 |
||||
offset: 0, 0 |
||||
index: -1 |
||||
小臂右 |
||||
rotate: true |
||||
xy: 724, 242 |
||||
size: 85, 194 |
||||
orig: 85, 194 |
||||
offset: 0, 0 |
||||
index: -1 |
||||
小臂左 |
||||
rotate: false |
||||
xy: 870, 24 |
||||
size: 77, 189 |
||||
orig: 77, 189 |
||||
offset: 0, 0 |
||||
index: -1 |
||||
星星 |
||||
rotate: false |
||||
xy: 891, 224 |
||||
size: 16, 16 |
||||
orig: 18, 18 |
||||
offset: 1, 1 |
||||
index: -1 |
||||
椭圆 1 |
||||
rotate: true |
||||
xy: 920, 215 |
||||
size: 112, 34 |
||||
orig: 112, 34 |
||||
offset: 0, 0 |
||||
index: -1 |
||||
身体 |
||||
rotate: true |
||||
xy: 2, 2 |
||||
size: 325, 720 |
||||
orig: 325, 720 |
||||
offset: 0, 0 |
||||
index: -1 |
@ -1,6 +0,0 @@ |
||||
{ |
||||
"ver": "1.0.3", |
||||
"uuid": "a8aa1fbf-52f9-41f4-9899-0c2e4ba5274c", |
||||
"importer": "asset", |
||||
"subMetas": {} |
||||
} |
@ -1,616 +0,0 @@ |
||||
{ |
||||
"skeleton": { |
||||
"hash": "mOPsCXB7/pDZkO7FGk2vXrxNBT4", |
||||
"spine": "3.8.75", |
||||
"x": -158, |
||||
"y": -456, |
||||
"width": 332, |
||||
"height": 834, |
||||
"images": "./images/", |
||||
"audio": "C:/Users/LongKong/Documents/WXWork/1688855657527795/Cache/File/2023-12/侦探笔记 生物实验室" |
||||
}, |
||||
"bones": [ |
||||
{ "name": "root" }, |
||||
{ "name": "身体", "parent": "root", "x": -2.13, "y": -449.08 }, |
||||
{ "name": "身体2", "parent": "身体", "length": 205.62, "rotation": 90.19, "x": 2.79, "y": -1.39 }, |
||||
{ "name": "身体3", "parent": "身体2", "length": 197.25, "rotation": -0.19, "x": 205.62 }, |
||||
{ "name": "身体4", "parent": "身体3", "length": 193.8, "rotation": -1.03, "x": 197.25 }, |
||||
{ "name": "身体5", "parent": "身体4", "length": 87.9, "rotation": 11.54, "x": 216.26, "y": -8.66 }, |
||||
{ "name": "bone", "parent": "身体5", "rotation": -100.51, "x": 84.97, "y": -6.29 }, |
||||
{ "name": "骨骼", "parent": "bone" }, |
||||
{ "name": "星星", "parent": "骨骼", "x": -5.41, "y": -11.02 }, |
||||
{ |
||||
"name": "卷", |
||||
"parent": "bone", |
||||
"x": -17.45, |
||||
"y": -44.28, |
||||
"scaleX": 0.82, |
||||
"scaleY": 0.82, |
||||
"shearX": 9.25 |
||||
}, |
||||
{ "name": "卷2", "parent": "bone", "x": 4.86, "y": -33.81 }, |
||||
{ "name": "骨骼2", "parent": "root" }, |
||||
{ "name": "上臂左", "parent": "身体4", "length": 86.04, "rotation": 26.97, "x": 177.04, "y": 40.13 }, |
||||
{ "name": "小臂左", "parent": "上臂左", "length": 138.46, "rotation": -21.32, "x": 85.1, "y": -0.32 }, |
||||
{ "name": "上臂右", "parent": "身体4", "length": 88.96, "rotation": -22.52, "x": 169.6, "y": -88.97 }, |
||||
{ "name": "小臂右", "parent": "上臂右", "length": 128.4, "rotation": 20.75, "x": 86.49, "y": 0.44 }, |
||||
{ "name": "星星2", "parent": "骨骼", "x": -5.41, "y": -11.02 }, |
||||
{ "name": "星星3", "parent": "骨骼", "x": -5.41, "y": -11.02 } |
||||
], |
||||
"slots": [ |
||||
{ "name": "上臂左", "bone": "上臂左", "attachment": "上臂左" }, |
||||
{ "name": "上臂右", "bone": "上臂右", "attachment": "上臂右" }, |
||||
{ "name": "身体", "bone": "身体", "attachment": "身体" }, |
||||
{ "name": "小臂左", "bone": "小臂左", "attachment": "小臂左" }, |
||||
{ "name": "小臂右", "bone": "小臂右", "attachment": "小臂右" }, |
||||
{ "name": "卷", "bone": "卷" }, |
||||
{ "name": "卷2", "bone": "卷2" }, |
||||
{ "name": "椭圆 1", "bone": "骨骼" }, |
||||
{ "name": "星星", "bone": "星星" }, |
||||
{ "name": "星星4", "bone": "星星2" }, |
||||
{ "name": "星星5", "bone": "星星3" } |
||||
], |
||||
"skins": [ |
||||
{ |
||||
"name": "default", |
||||
"attachments": { |
||||
"小臂右": { |
||||
"小臂右": { |
||||
"type": "mesh", |
||||
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ], |
||||
"triangles": [ 1, 2, 3, 1, 3, 0 ], |
||||
"vertices": [ -16.47, -48.74, -20.62, 36.16, 173.15, 45.63, 177.3, -39.27 ], |
||||
"hull": 4, |
||||
"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ], |
||||
"width": 85, |
||||
"height": 194 |
||||
} |
||||
}, |
||||
"身体": { |
||||
"身体": { |
||||
"type": "mesh", |
||||
"uvs": [ 0.42775, 9.8E-4, 0.40333, 0.02302, 0.38104, 0.0556, 0.36936, 0.08148, 0.39484, 0.09969, 0.44686, 0.13419, 0.36512, 0.16054, 0.29187, 0.22954, 0.25472, 0.35029, 0.1787, 0.43127, 0.10142, 0.52263, 0.02414, 0.62811, 0.0867, 0.66051, 0.14374, 0.67961, 0, 0.80245, 0, 1, 0.27956, 1, 0.19722, 0.89144, 0.27208, 0.85426, 0.44475, 0.71292, 0.47406, 0.67411, 0.50923, 0.56387, 0.56785, 0.67499, 0.58152, 0.72967, 0.68508, 0.73232, 0.77691, 0.83727, 0.77105, 0.88754, 0.77898, 0.91149, 0.6635, 0.95956, 0.65452, 0.99779, 0.91884, 1, 0.99582, 0.89354, 0.93937, 0.85531, 0.91627, 0.82809, 0.90986, 0.75164, 0.86623, 0.71516, 0.94963, 0.69778, 1, 0.66998, 0.98684, 0.58542, 0.94706, 0.49855, 0.90857, 0.40994, 0.87008, 0.35376, 0.84314, 0.2802, 0.8522, 0.2528, 0.8815, 0.21518, 0.84705, 0.19919, 0.80495, 0.17932, 0.77433, 0.156, 0.75136, 0.13872, 0.73031, 0.11712, 0.69873, 0.1262, 0.65567, 0.11496, 0.65758, 0.09941, 0.68437, 0.07868, 0.68437, 0.04067, 0.63461, 0.01216, 0.53988, 0, 0.51606, 0.35438, 0.52035, 0.4415, 0.52679, 0.27209, 0.53322, 0.18787, 0.53322, 0.13753 ], |
||||
"triangles": [ 29, 28, 30, 28, 27, 30, 30, 27, 31, 15, 17, 16, 15, 14, 17, 27, 26, 32, 27, 32, 31, 32, 25, 33, 25, 32, 26, 17, 14, 18, 14, 13, 18, 18, 13, 19, 25, 34, 33, 34, 24, 35, 34, 25, 24, 35, 24, 22, 24, 23, 22, 36, 35, 38, 19, 13, 20, 37, 36, 38, 20, 13, 21, 38, 35, 22, 38, 21, 39, 38, 22, 21, 21, 58, 39, 58, 40, 39, 10, 21, 13, 13, 12, 10, 12, 11, 10, 10, 9, 21, 21, 9, 58, 58, 8, 57, 8, 58, 9, 58, 41, 40, 41, 57, 42, 42, 57, 59, 57, 41, 58, 42, 59, 43, 46, 43, 59, 60, 47, 46, 47, 50, 48, 50, 47, 60, 57, 8, 59, 60, 61, 50, 61, 51, 50, 8, 7, 59, 43, 46, 45, 60, 46, 59, 59, 7, 60, 60, 7, 6, 60, 6, 5, 43, 45, 44, 60, 5, 61, 50, 49, 48, 51, 61, 52, 52, 61, 5, 56, 52, 4, 4, 52, 5, 1, 56, 2, 56, 1, 0, 56, 55, 52, 3, 2, 4, 56, 4, 2, 52, 55, 53, 55, 54, 53 ], |
||||
"vertices": [ 1, 5, 98.98, 13.67, 1, 1, 5, 84.83, 24.36, 1, 1, 5, 63.08, 35.77, 1, 2, 4, 252.22, 42.46, 6.0E-4, 5, 45.46, 42.89, 0.9994, 2, 4, 239.26, 33.95, 0.01954, 5, 31.06, 37.14, 0.98046, 2, 4, 214.73, 16.6, 0.43775, 5, 3.55, 25.05, 0.56225, 2, 4, 195.28, 42.82, 0.99064, 5, -10.26, 54.63, 0.00936, 1, 4, 145.18, 65.73, 1, 2, 3, 256.65, 75.18, 0.08335, 4, 58.04, 76.24, 0.91665, 2, 3, 198.34, 99.89, 0.57459, 4, -0.71, 99.89, 0.42541, 2, 3, 132.56, 125, 0.93917, 4, -66.93, 123.82, 0.06083, 2, 3, 56.62, 150.12, 0.99993, 4, -143.31, 147.56, 7.0E-5, 1, 3, 33.29, 129.79, 1, 1, 3, 19.54, 111.25, 1, 1, 3, -68.91, 157.96, 1, 1, 3, -211.14, 157.96, 1, 1, 3, -211.14, 67.1, 1, 1, 3, -132.98, 93.87, 1, 1, 3, -106.21, 69.54, 1, 1, 3, -4.44, 13.42, 1, 1, 3, 23.5, 3.89, 1, 1, 3, 102.87, -7.54, 1, 1, 3, 22.86, -26.59, 1, 1, 3, -16.51, -31.03, 1, 1, 3, -18.41, -64.69, 1, 1, 3, -93.98, -94.53, 1, 1, 3, -130.17, -92.63, 1, 1, 3, -147.42, -95.21, 1, 1, 3, -182.03, -57.68, 1, 1, 3, -209.55, -54.76, 1, 1, 3, -211.14, -140.66, 1, 1, 3, -134.49, -165.68, 1, 1, 3, -106.97, -147.33, 1, 1, 3, -87.37, -139.83, 1, 1, 3, -32.33, -137.74, 1, 1, 3, -6.05, -123.56, 1, 2, 3, 6.46, -150.67, 0.99961, 4, -188.06, -154.07, 3.9E-4, 2, 3, 26.47, -167.04, 0.99717, 4, -167.75, -170.08, 0.00283, 2, 3, 87.35, -162.76, 0.9593, 4, -106.95, -164.71, 0.0407, 2, 3, 149.9, -149.83, 0.7979, 4, -44.65, -150.66, 0.2021, 3, 3, 213.7, -137.32, 0.44465, 4, 18.92, -137.01, 0.55157, 5, -219.02, -86.28, 0.00377, 3, 3, 254.15, -124.81, 0.19785, 4, 59.14, -123.77, 0.77893, 5, -176.97, -81.36, 0.02322, 3, 3, 307.11, -116.06, 0.02725, 4, 111.93, -114.06, 0.85345, 5, -123.3, -82.41, 0.1193, 3, 3, 326.84, -119, 0.00735, 4, 131.71, -116.65, 0.80264, 5, -104.44, -88.9, 0.19002, 3, 3, 353.93, -128.53, 3.1E-4, 4, 158.97, -125.69, 0.73694, 5, -79.54, -103.2, 0.26275, 2, 4, 170.27, -114.29, 0.70418, 5, -66.19, -94.29, 0.29582, 2, 4, 184.33, -100.35, 0.60827, 5, -49.63, -83.45, 0.39173, 2, 4, 200.94, -90.09, 0.47466, 5, -31.3, -76.73, 0.52534, 2, 4, 213.24, -82.41, 0.3684, 5, -17.71, -71.66, 0.6316, 2, 4, 228.67, -75.29, 0.30019, 5, -1.17, -67.76, 0.69981, 2, 4, 221.95, -65.14, 0.27301, 5, -5.72, -56.48, 0.72699, 2, 4, 229.79, -51.01, 0.10319, 5, 4.78, -44.2, 0.89681, 2, 4, 240.99, -51.43, 0.02169, 5, 15.68, -46.85, 0.97831, 2, 4, 256.07, -59.86, 6.6E-4, 5, 28.77, -58.13, 0.99934, 1, 5, 55.68, -63.13, 1, 1, 5, 78.81, -50.97, 1, 1, 5, 93.03, -22.29, 1, 2, 4, 56.62, -8.74, 0.99964, 5, -156.43, 31.85, 3.6E-4, 2, 3, 190.98, -11.15, 0.7432, 4, -6.07, -11.26, 0.2568, 2, 4, 115.92, -11.16, 0.99378, 5, -98.81, 17.62, 0.00622, 2, 4, 176.59, -12.16, 0.92262, 5, -39.57, 4.5, 0.07738, 2, 4, 212.83, -11.51, 0.06695, 5, -3.93, -2.11, 0.93305 ], |
||||
"hull": 57, |
||||
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 0, 112, 8, 10 ], |
||||
"width": 325, |
||||
"height": 720 |
||||
} |
||||
}, |
||||
"椭圆 1": { |
||||
"椭圆 1": { |
||||
"type": "mesh", |
||||
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ], |
||||
"triangles": [ 1, 2, 3, 1, 3, 0 ], |
||||
"vertices": [ 53.46, -18.56, -58.54, -18.56, -58.54, 15.44, 53.46, 15.44 ], |
||||
"hull": 4, |
||||
"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ], |
||||
"width": 112, |
||||
"height": 34 |
||||
} |
||||
}, |
||||
"星星4": { |
||||
"星星": { "x": -0.13, "y": -0.2, "width": 18, "height": 18 } |
||||
}, |
||||
"星星5": { |
||||
"星星": { "x": -0.13, "y": -0.2, "width": 18, "height": 18 } |
||||
}, |
||||
"卷2": { |
||||
"卷": { "x": 0.1, "y": -0.25, "width": 19, "height": 22 } |
||||
}, |
||||
"星星": { |
||||
"星星": { "x": -0.13, "y": -0.2, "width": 18, "height": 18 } |
||||
}, |
||||
"上臂左": { |
||||
"上臂左": { |
||||
"type": "mesh", |
||||
"uvs": [ 1, 0.53047, 0.99999, 0.6242, 0.91304, 0.74826, 0.80963, 0.86592, 0.67761, 0.98897, 0.47722, 1, 0.31066, 0.81671, 0.12569, 0.61188, 0.04269, 0.46317, 0.12014, 0.37186, 0.0504, 0.29917, 1.0E-4, 0.21956, 0.036, 0.10106, 0.16333, 0.0315, 0.32802, 0.00394, 0.49516, 4.0E-5, 0.5571, 0.06956, 0.60807, 0.18506, 0.8128, 0.33075 ], |
||||
"triangles": [ 14, 17, 7, 14, 9, 10, 11, 12, 10, 16, 17, 14, 10, 12, 13, 14, 15, 16, 10, 13, 14, 0, 2, 18, 1, 2, 0, 2, 3, 6, 4, 6, 3, 5, 6, 4, 14, 7, 9, 8, 9, 7, 6, 7, 18, 17, 18, 7, 2, 6, 18 ], |
||||
"vertices": [ 2, 12, 20.59, -43.36, 0.43178, 4, 215.06, 10.83, 0.56822, 1, 4, 201.56, 10.59, 1, 1, 4, 183.54, 19.4, 1, 1, 4, 166.4, 29.95, 1, 1, 4, 148.44, 43.49, 1, 2, 12, -16.19, 35.58, 0.46278, 4, 146.47, 64.5, 0.53722, 1, 12, 15.19, 39.76, 1, 1, 12, 50.21, 44.32, 1, 1, 12, 73.28, 42.79, 1, 2, 12, 81.55, 29.73, 0.69764, 13, -14.24, 26.7, 0.30236, 1, 13, -3.22, 33.16, 1, 1, 13, 8.63, 37.5, 1, 1, 13, 25.34, 32.36, 1, 1, 13, 34.25, 18.23, 1, 1, 13, 36.81, 0.68, 1, 1, 13, 35.96, -16.86, 1, 1, 13, 25.45, -22.54, 1, 2, 12, 83.32, -28.11, 0.06856, 13, 8.44, -26.53, 0.93144, 1, 12, 55.05, -38.26, 1 ], |
||||
"hull": 19, |
||||
"edges": [ 10, 12, 8, 10, 2, 4, 2, 0, 0, 36, 4, 6, 6, 8, 22, 24, 16, 18, 18, 20, 20, 22, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 12, 14, 14, 16 ], |
||||
"width": 105, |
||||
"height": 144 |
||||
} |
||||
}, |
||||
"小臂左": { |
||||
"小臂左": { |
||||
"type": "mesh", |
||||
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ], |
||||
"triangles": [ 1, 2, 3, 1, 3, 0 ], |
||||
"vertices": [ -20.39, -31.38, -14.19, 45.37, 174.2, 30.15, 167.99, -46.6 ], |
||||
"hull": 4, |
||||
"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ], |
||||
"width": 77, |
||||
"height": 189 |
||||
} |
||||
}, |
||||
"卷": { |
||||
"卷": { "x": 0.1, "y": -0.25, "width": 19, "height": 22 } |
||||
}, |
||||
"上臂右": { |
||||
"上臂右": { |
||||
"type": "mesh", |
||||
"uvs": [ 0.7341, 0.10082, 0.88915, 0.10656, 1, 0.10994, 0.94648, 0.20406, 0.90924, 0.28042, 0.95811, 0.43268, 0.80685, 0.59515, 0.62364, 0.80088, 0.44632, 0.99999, 0.25087, 0.91717, 0.08905, 0.76009, 0.01484, 0.61915, 0, 0.50294, 0, 0.35827, 0.1685, 0.31349, 0.21433, 0.17914, 0.36157, 0.09853, 0.36696, 0, 0.54325, 0, 0.63697, 0.10749 ], |
||||
"triangles": [ 6, 19, 4, 3, 1, 2, 0, 4, 19, 16, 18, 19, 16, 17, 18, 3, 0, 1, 3, 4, 0, 19, 14, 16, 7, 10, 11, 9, 10, 7, 8, 9, 7, 6, 4, 5, 14, 12, 13, 11, 12, 14, 14, 15, 16, 14, 7, 11, 14, 6, 7, 6, 14, 19 ], |
||||
"vertices": [ 1, 15, 11.1, -18.91, 1, 1, 15, 11.11, -35.52, 1, 1, 15, 11.22, -47.39, 1, 1, 15, -2.13, -42.31, 1, 2, 14, 88.17, -40.46, 0.42866, 15, -12.92, -38.85, 0.57134, 2, 14, 70.85, -53.71, 0.99425, 15, -33.81, -45.1, 0.00575, 1, 14, 43.68, -47.9, 1, 2, 14, 9.64, -41.36, 0.73181, 4, 162.66, -130.86, 0.26819, 2, 14, -23.32, -35.02, 0.47226, 4, 134.65, -112.39, 0.52774, 1, 4, 145.79, -91.27, 1, 1, 4, 167.31, -73.57, 1, 1, 4, 186.75, -65.28, 1, 2, 14, 20.94, 36.36, 0.59892, 4, 202.87, -63.4, 0.40108, 1, 14, 39.37, 44.4, 1, 1, 14, 52.28, 30.36, 1, 1, 14, 71.36, 33.32, 1, 2, 14, 87.93, 23.36, 0.3454, 15, 9.47, 20.92, 0.6546, 1, 15, 23.17, 21.01, 1, 1, 15, 24.1, 2.17, 1, 1, 15, 9.66, -8.57, 1 ], |
||||
"hull": 20, |
||||
"edges": [ 24, 26, 20, 22, 22, 24, 16, 18, 18, 20, 6, 4, 32, 34, 34, 36, 36, 38, 26, 28, 28, 30, 30, 32, 0, 38, 0, 2, 2, 4, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16 ], |
||||
"width": 107, |
||||
"height": 139 |
||||
} |
||||
} |
||||
} |
||||
} |
||||
], |
||||
"animations": { |
||||
"待机": { |
||||
"bones": { |
||||
"身体3": { |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -10.72, "y": 0.04, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"身体4": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -1.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -6.6, "y": 0.12, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"身体5": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -4.33, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -5.77, "y": -0.1, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"上臂右": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -19.12, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"小臂右": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": 7.01, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"上臂左": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": 13.27, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"小臂左": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -10.83, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
} |
||||
} |
||||
}, |
||||
"眩晕": { |
||||
"slots": { |
||||
"椭圆 1": { |
||||
"attachment": [ |
||||
{ "name": "椭圆 1" } |
||||
] |
||||
}, |
||||
"星星5": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"星星": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"星星4": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
} |
||||
}, |
||||
"bones": { |
||||
"星星": { |
||||
"translate": [ |
||||
{}, |
||||
{ "time": 0.1667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 0.2, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 0.2333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 0.2667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 0.3333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 0.5, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 0.6, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 0.6667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 0.8333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 1 }, |
||||
{ "time": 1.1667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 1.2, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 1.2333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 1.2667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 1.3333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 1.5, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 1.6, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 1.6667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 1.8333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"骨骼": { |
||||
"rotate": [ |
||||
{ "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.1667, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.3333, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.5, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.6667, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.8333, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.1667, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.3333, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.5, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.6667, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.8333, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2, "angle": -3.6 } |
||||
], |
||||
"translate": [ |
||||
{ "y": 5.09 } |
||||
] |
||||
}, |
||||
"身体5": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -4.33, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -5.77, "y": -0.1, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"身体3": { |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -10.72, "y": 0.04, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"上臂左": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": 13.27, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"身体4": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -1.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -6.6, "y": 0.12, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"小臂右": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": 7.01, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"上臂右": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -19.12, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"小臂左": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -10.83, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"星星2": { |
||||
"translate": [ |
||||
{ "x": -31.56, "y": 11.38 }, |
||||
{ "time": 0.0333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 0.2, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 0.3, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 0.3667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 0.5333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 0.7 }, |
||||
{ "time": 0.8667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 0.9, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 0.9333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 0.9667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 1.0333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 1.2, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 1.3, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 1.3667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 1.5333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 1.7 }, |
||||
{ "time": 1.8667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 1.9, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 1.9333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 1.9667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 2, "x": -31.56, "y": 11.38 } |
||||
] |
||||
}, |
||||
"星星3": { |
||||
"translate": [ |
||||
{ "x": 38.35, "y": 25.83 }, |
||||
{ "time": 0.0667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 0.2333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 0.4 }, |
||||
{ "time": 0.5667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 0.6, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 0.6333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 0.6667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 0.7333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 0.9, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 1, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 1.0667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 1.2333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 1.4 }, |
||||
{ "time": 1.5667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 1.6, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 1.6333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 1.6667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 1.7333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 1.9, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 2, "x": 38.35, "y": 25.83 } |
||||
] |
||||
} |
||||
} |
||||
}, |
||||
"眩晕2": { |
||||
"slots": { |
||||
"椭圆 1": { |
||||
"attachment": [ |
||||
{ "name": "椭圆 1" } |
||||
] |
||||
}, |
||||
"卷2": { |
||||
"attachment": [ |
||||
{ "name": "卷" } |
||||
] |
||||
}, |
||||
"星星5": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"星星": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"星星4": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"卷": { |
||||
"attachment": [ |
||||
{ "name": "卷" } |
||||
] |
||||
} |
||||
}, |
||||
"bones": { |
||||
"星星": { |
||||
"translate": [ |
||||
{}, |
||||
{ "time": 0.1667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 0.2, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 0.2333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 0.2667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 0.3333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 0.5, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 0.6, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 0.6667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 0.8333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 1 }, |
||||
{ "time": 1.1667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 1.2, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 1.2333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 1.2667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 1.3333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 1.5, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 1.6, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 1.6667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 1.8333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"骨骼": { |
||||
"rotate": [ |
||||
{ "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.1667, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.3333, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.5, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.6667, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.8333, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.1667, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.3333, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.5, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.6667, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.8333, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2, "angle": -3.6 } |
||||
], |
||||
"translate": [ |
||||
{ "y": 5.09 } |
||||
] |
||||
}, |
||||
"卷": { |
||||
"rotate": [ |
||||
{}, |
||||
{ "time": 0.2667, "angle": 180 }, |
||||
{ "time": 0.5 }, |
||||
{ "time": 0.7667, "angle": 180 }, |
||||
{ "time": 1 }, |
||||
{ "time": 1.2667, "angle": 180 }, |
||||
{ "time": 1.5 }, |
||||
{ "time": 1.7667, "angle": 180 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "x": 0.39, "y": -0.98 } |
||||
] |
||||
}, |
||||
"卷2": { |
||||
"rotate": [ |
||||
{}, |
||||
{ "time": 0.2667, "angle": 180 }, |
||||
{ "time": 0.5 }, |
||||
{ "time": 0.7667, "angle": 180 }, |
||||
{ "time": 1 }, |
||||
{ "time": 1.2667, "angle": 180 }, |
||||
{ "time": 1.5 }, |
||||
{ "time": 1.7667, "angle": 180 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "x": 2.94, "y": -1.96 } |
||||
] |
||||
}, |
||||
"身体5": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -4.33, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -5.77, "y": -0.1, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"身体3": { |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -10.72, "y": 0.04, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"上臂左": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": 13.27, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"身体4": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -1.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
], |
||||
"translate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "x": -6.6, "y": 0.12, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"小臂右": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": 7.01, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"上臂右": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -19.12, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"小臂左": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -10.83, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2 } |
||||
] |
||||
}, |
||||
"星星2": { |
||||
"translate": [ |
||||
{ "x": -31.56, "y": 11.38 }, |
||||
{ "time": 0.0333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 0.2, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 0.3, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 0.3667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 0.5333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 0.7 }, |
||||
{ "time": 0.8667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 0.9, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 0.9333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 0.9667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 1.0333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 1.2, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 1.3, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 1.3667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 1.5333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 1.7 }, |
||||
{ "time": 1.8667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 1.9, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 1.9333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 1.9667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 2, "x": -31.56, "y": 11.38 } |
||||
] |
||||
}, |
||||
"星星3": { |
||||
"translate": [ |
||||
{ "x": 38.35, "y": 25.83 }, |
||||
{ "time": 0.0667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 0.2333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 0.4 }, |
||||
{ "time": 0.5667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 0.6, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 0.6333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 0.6667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 0.7333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 0.9, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 1, "x": 38.35, "y": 25.83 }, |
||||
{ "time": 1.0667, "x": 55.38, "y": 23.18 }, |
||||
{ "time": 1.2333, "x": 45.84, "y": 13.89 }, |
||||
{ "time": 1.4 }, |
||||
{ "time": 1.5667, "x": -32.88, "y": -4.43 }, |
||||
{ "time": 1.6, "x": -41.93, "y": -4.4 }, |
||||
{ "time": 1.6333, "x": -48.6, "y": -2.13 }, |
||||
{ "time": 1.6667, "x": -43.16, "y": 7.6 }, |
||||
{ "time": 1.7333, "x": -19.96, "y": 15.16 }, |
||||
{ "time": 1.9, "x": 9.06, "y": 22.18 }, |
||||
{ "time": 2, "x": 38.35, "y": 25.83 } |
||||
] |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,10 +0,0 @@ |
||||
{ |
||||
"ver": "1.2.5", |
||||
"uuid": "4f147e8d-021b-46a3-9526-35bbbe3227e6", |
||||
"importer": "spine", |
||||
"textures": [ |
||||
"7d9c9d06-084e-4e96-b48f-5b6362487b71" |
||||
], |
||||
"scale": 1, |
||||
"subMetas": {} |
||||
} |
Before Width: | Height: | Size: 315 KiB |
@ -1,38 +0,0 @@ |
||||
{ |
||||
"ver": "2.3.7", |
||||
"uuid": "7d9c9d06-084e-4e96-b48f-5b6362487b71", |
||||
"importer": "texture", |
||||
"type": "sprite", |
||||
"wrapMode": "clamp", |
||||
"filterMode": "bilinear", |
||||
"premultiplyAlpha": false, |
||||
"genMipmaps": false, |
||||
"packable": true, |
||||
"width": 956, |
||||
"height": 329, |
||||
"platformSettings": {}, |
||||
"subMetas": { |
||||
"僵尸": { |
||||
"ver": "1.0.6", |
||||
"uuid": "522db87d-2bf1-4fb5-abde-dde41962dbc1", |
||||
"importer": "sprite-frame", |
||||
"rawTextureUuid": "7d9c9d06-084e-4e96-b48f-5b6362487b71", |
||||
"trimType": "auto", |
||||
"trimThreshold": 1, |
||||
"rotated": false, |
||||
"offsetX": 0, |
||||
"offsetY": 0, |
||||
"trimX": 3, |
||||
"trimY": 3, |
||||
"width": 950, |
||||
"height": 323, |
||||
"rawWidth": 956, |
||||
"rawHeight": 329, |
||||
"borderTop": 0, |
||||
"borderBottom": 0, |
||||
"borderLeft": 0, |
||||
"borderRight": 0, |
||||
"subMetas": {} |
||||
} |
||||
} |
||||
} |
@ -1,41 +0,0 @@ |
||||
|
||||
场景2.png |
||||
size: 591,430 |
||||
format: RGBA8888 |
||||
filter: Linear,Linear |
||||
repeat: none |
||||
光 |
||||
rotate: true |
||||
xy: 2, 2 |
||||
size: 426, 545 |
||||
orig: 435, 565 |
||||
offset: 6, 18 |
||||
index: -1 |
||||
卷 |
||||
rotate: false |
||||
xy: 549, 188 |
||||
size: 15, 17 |
||||
orig: 17, 19 |
||||
offset: 1, 1 |
||||
index: -1 |
||||
手电筒 |
||||
rotate: false |
||||
xy: 549, 339 |
||||
size: 40, 89 |
||||
orig: 42, 91 |
||||
offset: 1, 1 |
||||
index: -1 |
||||
星星 |
||||
rotate: false |
||||
xy: 549, 207 |
||||
size: 16, 16 |
||||
orig: 18, 18 |
||||
offset: 1, 1 |
||||
index: -1 |
||||
椭圆 1 |
||||
rotate: true |
||||
xy: 549, 225 |
||||
size: 112, 34 |
||||
orig: 112, 34 |
||||
offset: 0, 0 |
||||
index: -1 |
@ -1,6 +0,0 @@ |
||||
{ |
||||
"ver": "1.0.3", |
||||
"uuid": "b17c8db2-c77e-434c-abe8-7a2ce59c7ee2", |
||||
"importer": "asset", |
||||
"subMetas": {} |
||||
} |
@ -1,313 +0,0 @@ |
||||
{ |
||||
"skeleton": { "hash": "jXYJWnTt0UYIEtr6PmtNbi/n510", "spine": "3.8.75" }, |
||||
"bones": [ |
||||
{ "name": "root" }, |
||||
{ "name": "手电筒", "parent": "root", "length": 62.83, "rotation": -96.91, "x": 6.39, "y": 69.76 }, |
||||
{ "name": "光", "parent": "手电筒", "x": 89.08, "y": -1.9 }, |
||||
{ "name": "bone", "parent": "root", "x": 3.19, "y": 3.37 }, |
||||
{ "name": "星星", "parent": "bone", "x": -5.41, "y": -11.02 }, |
||||
{ "name": "星星2", "parent": "bone", "x": -36.41, "y": -1.37 }, |
||||
{ "name": "星星3", "parent": "bone", "x": 37.57, "y": 15.09 }, |
||||
{ |
||||
"name": "卷", |
||||
"parent": "bone", |
||||
"x": -17.45, |
||||
"y": -44.28, |
||||
"scaleX": 0.82, |
||||
"scaleY": 0.82, |
||||
"shearX": 9.25 |
||||
}, |
||||
{ "name": "卷2", "parent": "bone", "x": 4.86, "y": -33.81 }, |
||||
{ "name": "骨骼", "parent": "bone" } |
||||
], |
||||
"slots": [ |
||||
{ "name": "卷", "bone": "卷" }, |
||||
{ "name": "卷2", "bone": "卷2" }, |
||||
{ "name": "椭圆 1", "bone": "骨骼" }, |
||||
{ "name": "星星", "bone": "星星" }, |
||||
{ "name": "星星3", "bone": "星星3" }, |
||||
{ "name": "星星2", "bone": "星星2" }, |
||||
{ "name": "手电筒", "bone": "手电筒" }, |
||||
{ "name": "光", "bone": "光" }, |
||||
{ "name": "1", "bone": "骨骼", "attachment": "1" }, |
||||
{ "name": "2", "bone": "骨骼", "attachment": "2" }, |
||||
{ "name": "3", "bone": "骨骼", "attachment": "3" } |
||||
], |
||||
"path": [ |
||||
{ |
||||
"name": "1", |
||||
"bones": [ "星星" ], |
||||
"target": "1" |
||||
}, |
||||
{ |
||||
"name": "2", |
||||
"order": 1, |
||||
"bones": [ "星星2" ], |
||||
"target": "2" |
||||
}, |
||||
{ |
||||
"name": "3", |
||||
"order": 2, |
||||
"bones": [ "星星3" ], |
||||
"target": "3" |
||||
} |
||||
], |
||||
"skins": [ |
||||
{ |
||||
"name": "default", |
||||
"attachments": { |
||||
"手电筒": { |
||||
"手电筒": { "x": 30.39, "y": -3.39, "rotation": 96.91, "width": 42, "height": 91 } |
||||
}, |
||||
"光": { |
||||
"光": { "x": 265.36, "y": -32.23, "rotation": 96.91, "width": 435, "height": 565 } |
||||
}, |
||||
"椭圆 1": { |
||||
"椭圆 1": { |
||||
"type": "mesh", |
||||
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ], |
||||
"triangles": [ 1, 2, 3, 1, 3, 0 ], |
||||
"vertices": [ 53.46, -18.56, -58.54, -18.56, -58.54, 15.44, 53.46, 15.44 ], |
||||
"hull": 4 |
||||
} |
||||
}, |
||||
"星星2": { |
||||
"星星": { "x": -0.13, "y": -0.2, "width": 18, "height": 18 } |
||||
}, |
||||
"星星3": { |
||||
"星星": { "x": -0.13, "y": -0.2, "width": 18, "height": 18 } |
||||
}, |
||||
"卷2": { |
||||
"卷": { "x": 0.1, "y": -0.25, "width": 17, "height": 19 } |
||||
}, |
||||
"星星": { |
||||
"星星": { "x": -0.13, "y": -0.2, "width": 18, "height": 18 } |
||||
}, |
||||
"1": { |
||||
"1": { |
||||
"type": "path", |
||||
"closed": true, |
||||
"lengths": [ 52.98, 111.92, 160.57, 174.1, 205.32 ], |
||||
"vertexCount": 15, |
||||
"vertices": [ 16.9, -8.36, -4.86, -12.21, -15.35, -14.07, -55.34, -18.85, -57.02, -12.06, -58.7, -5.27, -19.71, 7.26, -3.47, 9.92, 12.77, 12.58, 37.18, 15.34, 44.91, 12.99, 52.64, 10.63, 50.43, 8.13, 45.49, 4.06, 40.48, -0.07 ] |
||||
} |
||||
}, |
||||
"2": { |
||||
"2": { |
||||
"type": "path", |
||||
"closed": true, |
||||
"lengths": [ 68.43, 95.86, 184.29, 212.29 ], |
||||
"vertexCount": 12, |
||||
"vertices": [ -53.08, -4.76, -34.98, 1.58, -34.98, 1.58, 7.91, 14.66, 32.13, 13.97, 44.93, 13.6, 58.3, 12.02, 45.3, 3.73, 31.74, -4.93, -8.53, -17.08, -40.03, -16.29, -71.35, -15.51 ] |
||||
} |
||||
}, |
||||
"3": { |
||||
"3": { |
||||
"type": "path", |
||||
"closed": true, |
||||
"lengths": [ 22.3, 119.4, 149.35, 203.8 ], |
||||
"vertexCount": 12, |
||||
"vertices": [ 13.29, 13.79, 37.79, 13.53, 48.91, 13.42, 55.26, 10.16, 43.89, 3.03, 28.41, -6.67, -26.16, -20.11, -50.38, -15.48, -68.61, -11.99, -45.67, -1.89, -39.48, 0.47, -27.32, 5.12 ] |
||||
} |
||||
}, |
||||
"卷": { |
||||
"卷": { "x": 0.1, "y": -0.25, "width": 17, "height": 19 } |
||||
} |
||||
} |
||||
} |
||||
], |
||||
"animations": { |
||||
"手电筒": { |
||||
"slots": { |
||||
"光": { |
||||
"color": [ |
||||
{ "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.1667, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.3333, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.5, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.6667, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.8333, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.1667, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.3333, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.5, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.6667, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1.8333, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2.1667, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2.3333, "color": "ffffffff", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2.5, "color": "ffffff77", "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 2.6667, "color": "ffffffff" } |
||||
], |
||||
"attachment": [ |
||||
{ "name": "光" } |
||||
] |
||||
}, |
||||
"手电筒": { |
||||
"attachment": [ |
||||
{ "name": "手电筒" } |
||||
] |
||||
} |
||||
}, |
||||
"bones": { |
||||
"手电筒": { |
||||
"rotate": [ |
||||
{ "angle": -5.67 }, |
||||
{ "time": 0.6667, "angle": 23.63 }, |
||||
{ "time": 1.3333, "angle": -5.67 }, |
||||
{ "time": 2, "angle": 23.63 }, |
||||
{ "time": 2.6667, "angle": -5.67 } |
||||
] |
||||
} |
||||
} |
||||
}, |
||||
"眩晕": { |
||||
"slots": { |
||||
"星星2": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"星星3": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"椭圆 1": { |
||||
"attachment": [ |
||||
{ "name": "椭圆 1" } |
||||
] |
||||
}, |
||||
"星星": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
} |
||||
}, |
||||
"bones": { |
||||
"骨骼": { |
||||
"rotate": [ |
||||
{ "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.1667, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.3333, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.5, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.6667, "angle": -3.6, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.8333, "angle": -13.2, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1, "angle": -3.6 } |
||||
], |
||||
"translate": [ |
||||
{ "y": 5.09 } |
||||
] |
||||
} |
||||
}, |
||||
"path": { |
||||
"1": { |
||||
"position": [ |
||||
{}, |
||||
{ "time": 1, "position": 0.99 } |
||||
] |
||||
}, |
||||
"2": { |
||||
"position": [ |
||||
{}, |
||||
{ "time": 1, "position": 0.99 } |
||||
] |
||||
}, |
||||
"3": { |
||||
"position": [ |
||||
{}, |
||||
{ "time": 1, "position": 0.99 } |
||||
] |
||||
} |
||||
} |
||||
}, |
||||
"眩晕2": { |
||||
"slots": { |
||||
"星星2": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"星星3": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"椭圆 1": { |
||||
"attachment": [ |
||||
{ "name": "椭圆 1" } |
||||
] |
||||
}, |
||||
"卷": { |
||||
"attachment": [ |
||||
{ "name": "卷" } |
||||
] |
||||
}, |
||||
"星星": { |
||||
"attachment": [ |
||||
{ "name": "星星" } |
||||
] |
||||
}, |
||||
"卷2": { |
||||
"attachment": [ |
||||
{ "name": "卷" } |
||||
] |
||||
} |
||||
}, |
||||
"bones": { |
||||
"骨骼": { |
||||
"rotate": [ |
||||
{ "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.1667, "angle": -16.8, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.3333, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.5, "angle": -16.8, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.6667, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 0.8333, "angle": -16.8, "curve": 0.25, "c3": 0.75 }, |
||||
{ "time": 1 } |
||||
], |
||||
"translate": [ |
||||
{ "y": 5.09 } |
||||
] |
||||
}, |
||||
"卷": { |
||||
"rotate": [ |
||||
{}, |
||||
{ "time": 0.2667, "angle": 180 }, |
||||
{ "time": 0.5 }, |
||||
{ "time": 0.7667, "angle": 180 }, |
||||
{ "time": 1 } |
||||
] |
||||
}, |
||||
"卷2": { |
||||
"rotate": [ |
||||
{}, |
||||
{ "time": 0.2667, "angle": 180 }, |
||||
{ "time": 0.5 }, |
||||
{ "time": 0.7667, "angle": 180 }, |
||||
{ "time": 1 } |
||||
] |
||||
} |
||||
}, |
||||
"path": { |
||||
"1": { |
||||
"position": [ |
||||
{}, |
||||
{ "time": 1, "position": 0.99 } |
||||
] |
||||
}, |
||||
"2": { |
||||
"position": [ |
||||
{}, |
||||
{ "time": 1, "position": 0.99 } |
||||
] |
||||
}, |
||||
"3": { |
||||
"position": [ |
||||
{}, |
||||
{ "time": 1, "position": 0.99 } |
||||
] |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,10 +0,0 @@ |
||||
{ |
||||
"ver": "1.2.5", |
||||
"uuid": "2371a44b-7b7c-460c-a74d-b4aaf1f0a70f", |
||||
"importer": "spine", |
||||
"textures": [ |
||||
"4bbfccb3-40d6-4244-81e2-df9e38d76a4e" |
||||
], |
||||
"scale": 1, |
||||
"subMetas": {} |
||||
} |
Before Width: | Height: | Size: 47 KiB |
@ -1,38 +0,0 @@ |
||||
{ |
||||
"ver": "2.3.7", |
||||
"uuid": "4bbfccb3-40d6-4244-81e2-df9e38d76a4e", |
||||
"importer": "texture", |
||||
"type": "sprite", |
||||
"wrapMode": "clamp", |
||||
"filterMode": "bilinear", |
||||
"premultiplyAlpha": false, |
||||
"genMipmaps": false, |
||||
"packable": true, |
||||
"width": 591, |
||||
"height": 430, |
||||
"platformSettings": {}, |
||||
"subMetas": { |
||||
"场景2": { |
||||
"ver": "1.0.6", |
||||
"uuid": "e32054f8-3e8d-4f5a-9509-aed372c1d6a0", |
||||
"importer": "sprite-frame", |
||||
"rawTextureUuid": "4bbfccb3-40d6-4244-81e2-df9e38d76a4e", |
||||
"trimType": "auto", |
||||
"trimThreshold": 1, |
||||
"rotated": false, |
||||
"offsetX": 0, |
||||
"offsetY": 0, |
||||
"trimX": 2, |
||||
"trimY": 2, |
||||
"width": 587, |
||||
"height": 426, |
||||
"rawWidth": 591, |
||||
"rawHeight": 430, |
||||
"borderTop": 0, |
||||
"borderBottom": 0, |
||||
"borderLeft": 0, |
||||
"borderRight": 0, |
||||
"subMetas": {} |
||||
} |
||||
} |
||||
} |
@ -1,27 +0,0 @@ |
||||
|
||||
场景2死亡.png |
||||
size: 1465,669 |
||||
format: RGBA8888 |
||||
filter: Linear,Linear |
||||
repeat: none |
||||
恐怖 |
||||
rotate: true |
||||
xy: 2, 15 |
||||
size: 652, 955 |
||||
orig: 654, 957 |
||||
offset: 1, 1 |
||||
index: -1 |
||||
爪 |
||||
rotate: false |
||||
xy: 959, 106 |
||||
size: 504, 561 |
||||
orig: 513, 572 |
||||
offset: 4, 5 |
||||
index: -1 |
||||
遮挡 |
||||
rotate: true |
||||
xy: 959, 2 |
||||
size: 102, 151 |
||||
orig: 104, 153 |
||||
offset: 1, 1 |
||||
index: -1 |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue