修改资源路径

This commit is contained in:
YZ\249929363 2025-06-30 15:35:15 +08:00
parent a40e639211
commit 4087760563
224 changed files with 28436 additions and 35773 deletions

View File

@ -8,7 +8,7 @@
import { MiniGameManager } from "./Sdk/MiniGameManager";
import { MiniGameSdk } from "./Sdk/MiniGameSdk";
const {ccclass, property} = cc._decorator;
const { ccclass, property } = cc._decorator;
@ccclass
export default class GameManager extends cc.Component {
@ -18,33 +18,33 @@ export default class GameManager extends cc.Component {
@property
text: string = 'hello';
static _instance : GameManager = null;
static _instance: GameManager = null;
@property({type: [cc.Prefab], tooltip:"方块数组"})
Block_Array : Array<cc.Prefab> = [];
@property({ type: [cc.Prefab], tooltip: "方块数组" })
Block_Array: Array<cc.Prefab> = [];
@property({type: [cc.Prefab], tooltip:"墙壁数组"})
Wall_Prefab : Array<cc.Prefab> = [];
@property({ type: [cc.Prefab], tooltip: "墙壁数组" })
Wall_Prefab: Array<cc.Prefab> = [];
@property({type: [cc.SpriteAtlas], tooltip:"方块颜色"})
Block_Color : Array<cc.SpriteAtlas> = [];
@property({ type: [cc.SpriteAtlas], tooltip: "方块颜色" })
Block_Color: Array<cc.SpriteAtlas> = [];
particleEffects: cc.ParticleAsset[];
// @property({type: [cc.ParticleSystem], tooltip:"粒子数组"})
// particleEffects : Array<cc.ParticleSystem> = [];
load1 :boolean = false;
load2 :boolean = false;
load3 :boolean = false;
load4 :boolean = false;
load5 :boolean = false;
load1: boolean = false;
load2: boolean = false;
load3: boolean = false;
load4: boolean = false;
load5: boolean = false;
scheduleCallback: any;
timeNumber: number;
// LIFE-CYCLE CALLBACKS:
onLoad () {
onLoad() {
window.initMgr();
this.timeNumber = 3;
@ -52,14 +52,14 @@ export default class GameManager extends cc.Component {
cc.fx.GameConfig.init(true);
cc.fx.GameConfig.GM_INFO.gameState = false;
this.readMusicConfig();
console.log("音乐开关",cc.fx.GameConfig.GM_INFO.musicOpen);
console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen);
cc.fx.AudioManager._instance.playMusicGame();
this.load1 = this.load2 = this.load3 = this.load4 = this.load5 =false;
this.load1 = this.load2 = this.load3 = this.load4 = this.load5 = false;
setTimeout(() => {
this.readUserData();
}, 200);
if (GameManager._instance == null) {
GameManager._instance = this;
@ -73,8 +73,7 @@ export default class GameManager extends cc.Component {
const path2 = 'prefab/wall';
cc.resources.loadDir(path, cc.Prefab, (err, assets: cc.Prefab[]) => {
if (err) {
console.error('动态加载 Prefab 失败:', err);
console.log('动态加载 block 失败:', err);
cc.director.loadScene("LoadScene");
return;
}
@ -87,7 +86,7 @@ export default class GameManager extends cc.Component {
cc.resources.loadDir(path2, cc.Prefab, (err, assets: cc.Prefab[]) => {
if (err) {
console.error('动态加载 Prefab 失败:', err);
console.log('动态加载 wall 失败:', err);
cc.director.loadScene("LoadScene");
return;
}
@ -98,18 +97,8 @@ export default class GameManager extends cc.Component {
this.setWallPrefabSort();
});
// debugger;
// setTimeout(() => {
// cc.director.preloadScene("HomeScene", (err) => {
// if (err) {
// console.error('预加载 HomeScene 场景失败:', err);
// return;
// }
// });
// }, 1000);
// 检测微信小游戏切到后台
// 检测微信小游戏切到后台
if (cc.sys.platform === cc.sys.WECHAT_GAME) {
//@ts-ignore
wx.onHide(() => {
@ -124,12 +113,12 @@ export default class GameManager extends cc.Component {
}
onHide () {
onHide() {
cc.audioEngine.stopMusic();
cc.game.pause();
}
onShow () {
onShow() {
cc.audioEngine.resumeMusic();
cc.game.resume();
}
@ -138,10 +127,10 @@ export default class GameManager extends cc.Component {
}
setWallPrefabSort() {
const order = ['down', 'downLeft', 'downRight', 'left','right','up','upLeft','upRight'];
const order = ['down', 'downLeft', 'downRight', 'left', 'right', 'up', 'upLeft', 'upRight'];
this.Wall_Prefab.sort((a, b) => {
const indexA = order.indexOf(a.name);
const indexB = order.indexOf(b.name);
@ -149,21 +138,21 @@ export default class GameManager extends cc.Component {
if (indexB === -1) return -1;
return indexA - indexB;
});
}
setParticleSort() {
const order = ['top', 'bot', 'rig', 'lef'];
this.particleEffects.sort((a, b) => {
const indexA = order.indexOf(a.name.substr(0,3));
const indexB = order.indexOf(b.name.substr(0,3));
const indexA = order.indexOf(a.name.substr(0, 3));
const indexB = order.indexOf(b.name.substr(0, 3));
if (indexA === -1) return 1;
if (indexB === -1) return -1;
return indexA - indexB;
});
}
setSort(){
setSort() {
this.Block_Array.sort((a, b) => {
// 从名称中提取数字部分
const numberA = parseInt(a.name.match(/\d+/)?.[0] || '0', 10);
@ -172,20 +161,20 @@ export default class GameManager extends cc.Component {
});
}
start () {
start() {
}
startGame(){
console.log("进入场景之前_____________",cc.fx.GameConfig.GM_INFO.first);
startGame() {
console.log("进入场景之前_____________", cc.fx.GameConfig.GM_INFO.first);
cc.director.loadScene("HomeScene");
}
returnHome(){
returnHome() {
cc.tween(this.node.getChildByName("Game"))
.to(0.5, {opacity: 100})
.to(0.5, { opacity: 100 })
.call(() => {
// 预加载成功后加载场景
cc.director.loadScene("HomeScene", (err) => {
if (err) {
@ -197,86 +186,86 @@ export default class GameManager extends cc.Component {
})
.start();
cc.tween(this.node.getChildByName("mask"))
.to(0.5,{opacity: 255})
cc.tween(this.node.getChildByName("mask"))
.to(0.5, { opacity: 255 })
.start();
// cc.loader.releaseAll();
// 预加载 HomeScene 场景
}
readUserData(retryCount = 0){
readUserData(retryCount = 0) {
//@ts-ignore
if (typeof wx !== 'undefined' && wx !== null) {
let levelInfo = cc.fx.StorageMessage.getStorage("level");
//旧的读取数据设置数据方法,以强联网为主
if(levelInfo == undefined || levelInfo == "" || levelInfo == null){
this.oldReadData(retryCount);
}
//新的读取数据设置方法,以本地为主
else{
this.newReadData();
}
console.log("即将读取体力值");
cc.fx.GameTool.getHealth((data)=>{
console.log("体力值完成进入游戏");
this.load5 = true;
});
if (typeof wx !== 'undefined' && wx !== null) {
let levelInfo = cc.fx.StorageMessage.getStorage("level");
//旧的读取数据设置数据方法,以强联网为主
if (levelInfo == undefined || levelInfo == "" || levelInfo == null) {
this.oldReadData(retryCount);
}
//新的读取数据设置方法,以本地为主
else {
this.newReadData();
}
console.log("即将读取体力值");
cc.fx.GameTool.getHealth((data) => {
console.log("体力值完成进入游戏");
this.load5 = true;
});
}
else{
}
else {
this.load3 = true;
this.load4 = true;
this.load5 = true;
cc.fx.GameTool.getHealth(null);
}
}
// 存储用户数据
}
readMusicConfig(){
readMusicConfig() {
let audioInfo = cc.fx.StorageMessage.getStorage("music");
if(audioInfo == undefined || audioInfo == "" || audioInfo == null){
if (audioInfo == undefined || audioInfo == "" || audioInfo == null) {
audioInfo = {
"musicOpen": true, //音乐
"effectOpen": true, //音效
"vibrateOpen": true, //震动
}
cc.fx.StorageMessage.setStorage("music",audioInfo);
cc.fx.StorageMessage.setStorage("music", audioInfo);
}
else{
else {
cc.fx.GameConfig.GM_INFO.musicOpen = audioInfo.musicOpen;
cc.fx.GameConfig.GM_INFO.effectOpen = audioInfo.effectOpen;
cc.fx.GameConfig.GM_INFO.vibrateOpen = audioInfo.vibrateOpen;
}
}
//新用户,有本地缓存读取配置
newReadData(){
newReadData() {
console.log("读取新信息");
let openid = cc.fx.StorageMessage.getStorage("openid");
if(openid == null || openid == "" || openid == undefined){
if (openid == null || openid == "" || openid == undefined) {
console.log("没有openid");
//@ts-ignore
wx.cloud.callFunction({
name: 'userData',
name: 'userData',
data: {
action: 'read'
},
success: res => {
console.log('读取用户数据成功', res.result)
if(res.result.code == 404 && res.result.message == "未找到用户数据"){
if (res.result.code == 404 && res.result.message == "未找到用户数据") {
}
else if(res.result.code == 200){
if(res.result.data){
else if (res.result.code == 200) {
if (res.result.data) {
cc.fx.GameConfig.GM_INFO.openid = res.result.openid;
cc.fx.GameConfig.GM_INFO.username = res.result.data.username;
cc.fx.GameConfig.GM_INFO.useravatar = res.result.data.useravatar;
const register_time = res.result.data.register_time;
MiniGameSdk.API.shushu_userSet(register_time);
cc.fx.StorageMessage.setStorage("openid",cc.fx.GameConfig.GM_INFO.openid);
cc.fx.StorageMessage.setStorage("openid", cc.fx.GameConfig.GM_INFO.openid);
}
}
},
@ -285,118 +274,118 @@ export default class GameManager extends cc.Component {
}
})
}
else{
if(openid)
else {
if (openid)
cc.fx.GameConfig.GM_INFO.openid = openid;
}
//等级信息
cc.fx.GameTool.getUserLevel((data) =>{
cc.fx.GameTool.getUserLevel((data) => {
const timestamp = Date.now();
let levelInfo = cc.fx.StorageMessage.getStorage("level");
if(data.result.code == 404 && data.result.message == "未找到关卡数据"){
if (data.result.code == 404 && data.result.message == "未找到关卡数据") {
// console.log("没有等级信息,从用户接口拿到数据");
if(levelInfo.level){
if (levelInfo.level) {
cc.fx.GameConfig.GM_INFO.level = levelInfo.level;
}
this.load4 = true;
cc.fx.GameTool.setUserLevel((data)=>{
cc.fx.GameTool.setUserLevel((data) => {
});
}
else if(data.result.code == 200){
}
else if (data.result.code == 200) {
// console.log("有等级信息,从关卡接口拿到数据",data.result.data);
//游戏前端存储 新于服务器端,以游戏前端信息为主,放服务器存储
let temp = data.result.timestamp - levelInfo.timestamp;
console.log("等级时间差:",temp);
if((data.result.timestamp - levelInfo.timestamp) < 10000){
if(levelInfo.level){
console.log("以游戏前端等级为准",data.result.data);
console.log("等级时间差:", temp);
if ((data.result.timestamp - levelInfo.timestamp) < 10000) {
if (levelInfo.level) {
console.log("以游戏前端等级为准", data.result.data);
cc.fx.GameConfig.GM_INFO.level = levelInfo.level;
// console.log("等级为:",cc.fx.GameConfig.GM_INFO.level);
cc.fx.GameTool.setUserLevel((data)=>{
cc.fx.GameTool.setUserLevel((data) => {
});
}
}
//服务器端存储时间新于游戏端,以服务器端为主,往前端存储
else{
console.log("以服务器等级为准",data.result.data);
cc.fx.GameConfig.GM_INFO.level = data.result.data;
else {
console.log("以服务器等级为准", data.result.data);
cc.fx.GameConfig.GM_INFO.level = data.result.data;
levelInfo.level = cc.fx.GameConfig.GM_INFO.level;
levelInfo.timestamp = timestamp;
// console.log("1111111存储关卡数据:",cc.fx.GameConfig.GM_INFO.level);
cc.fx.StorageMessage.setStorage("level",levelInfo);
cc.fx.StorageMessage.setStorage("level", levelInfo);
}
this.load4 = true;
}
});
//金币信息
cc.fx.GameTool.getUserCoin((data) =>{
cc.fx.GameTool.getUserCoin((data) => {
const timestamp = Date.now();
let coinInfo = cc.fx.StorageMessage.getStorage("coin");
if(data.result.code == 404 && data.result.message == "未找到金币数据"){
if(coinInfo.coin)
if (data.result.code == 404 && data.result.message == "未找到金币数据") {
if (coinInfo.coin)
cc.fx.GameConfig.GM_INFO.coin = coinInfo.coin;
console.log("没有金币信息,从用户接口拿到数据",cc.fx.GameConfig.GM_INFO.coin);
console.log("没有金币信息,从用户接口拿到数据", cc.fx.GameConfig.GM_INFO.coin);
this.load3 = true;
cc.fx.GameTool.setUserCoin((data)=>{
cc.fx.GameTool.setUserCoin((data) => {
});
}
else if(data.result.code == 200){
}
else if (data.result.code == 200) {
// console.log("有金币信息,从金币接口拿到数据",data.result.data);
//游戏前端存储 新于服务器端,以游戏前端信息为主,放服务器存储
let temp = data.result.timestamp - coinInfo.timestamp;
console.log("金币时间差:",temp);
if((data.result.timestamp - coinInfo.timestamp) < 10000){
console.log("以前端金幣为准:",coinInfo);
if(coinInfo.coin)
console.log("金币时间差:", temp);
if ((data.result.timestamp - coinInfo.timestamp) < 10000) {
console.log("以前端金幣为准:", coinInfo);
if (coinInfo.coin)
cc.fx.GameConfig.GM_INFO.coin = coinInfo.coin;
else{
else {
cc.fx.GameConfig.GM_INFO.coin = data.result.data;
coinInfo.coin = cc.fx.GameConfig.GM_INFO.coin;
coinInfo.timestamp = timestamp;
console.log("11111111111");
cc.fx.StorageMessage.setStorage("coin",coinInfo);
cc.fx.StorageMessage.setStorage("coin", coinInfo);
}
console.log("改变后金币:",cc.fx.GameConfig.GM_INFO.coin);
cc.fx.GameTool.setUserCoin((data)=>{
console.log("改变后金币:", cc.fx.GameConfig.GM_INFO.coin);
cc.fx.GameTool.setUserCoin((data) => {
});
}
//服务器端存储时间新于游戏端,以服务器端为主,往前端存储
else{
console.log("以服务器金幣为准:",data.result.data);
cc.fx.GameConfig.GM_INFO.coin = data.result.data;
else {
console.log("以服务器金幣为准:", data.result.data);
cc.fx.GameConfig.GM_INFO.coin = data.result.data;
coinInfo.coin = cc.fx.GameConfig.GM_INFO.coin;
coinInfo.timestamp = timestamp;
console.log("2222222222");
cc.fx.StorageMessage.setStorage("coin",coinInfo);
cc.fx.StorageMessage.setStorage("coin", coinInfo);
}
this.load3 = true;
}
}
});
//道具信息
cc.fx.GameTool.getUserProp((data) =>{
cc.fx.GameTool.getUserProp((data) => {
const timestamp = Date.now();
let propInfo = cc.fx.StorageMessage.getStorage("prop");
if(data.result.code == 404 && data.result.message == "未找到道具数据"){
console.log("没有道具信息,从用户接口拿到数据",propInfo);
if(propInfo.freezeAmount == undefined || propInfo.hammerAmount == undefined || propInfo.magicAmount == undefined){
console.log("2222222道具数据异常");
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
cc.fx.GameConfig.GM_INFO.magicAmoun = 0;
let propInfoNew = {
"freezeAmount":cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount":cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount":cc.fx.GameConfig.GM_INFO.magicAmoun,
"timestamp":timestamp
}
console.log("1111111上传道具信息:",propInfoNew);
cc.fx.StorageMessage.setStorage("prop",propInfoNew);
if (data.result.code == 404 && data.result.message == "未找到道具数据") {
console.log("没有道具信息,从用户接口拿到数据", propInfo);
if (propInfo.freezeAmount == undefined || propInfo.hammerAmount == undefined || propInfo.magicAmount == undefined) {
console.log("2222222道具数据异常");
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
cc.fx.GameConfig.GM_INFO.magicAmoun = 0;
let propInfoNew = {
"freezeAmount": cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount": cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount": cc.fx.GameConfig.GM_INFO.magicAmoun,
"timestamp": timestamp
}
console.log("1111111上传道具信息:", propInfoNew);
cc.fx.StorageMessage.setStorage("prop", propInfoNew);
}
else{
else {
// cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze;
// cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer;
// cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand;
@ -405,235 +394,235 @@ export default class GameManager extends cc.Component {
cc.fx.GameConfig.GM_INFO.magicAmount = propInfo.magicAmount;
}
// cc.fx.GameConfig.GM_INFO.freezeAmount = propInfo.freezeAmount;
// cc.fx.GameConfig.GM_INFO.hammerAmount = propInfo.hammerAmount;
// cc.fx.GameConfig.GM_INFO.magicAmount = propInfo.magicAmount;
cc.fx.GameTool.setUserProp(0,0,(data)=>{
cc.fx.GameTool.setUserProp(0, 0, (data) => {
});
}
else if(data.result.code == 200){
}
else if (data.result.code == 200) {
// console.log("本地时间戳",propInfo.timestamp,"服务器时间戳",data.result.timestamp);
if((data.result.timestamp - propInfo.timestamp) < 10000){
console.log("以前端道具为主:",propInfo);
if(propInfo.freezeAmount == undefined || propInfo.hammerAmount == undefined || propInfo.magicAmount == undefined){
console.log("111111道具数据异常",data.result.data);
if ((data.result.timestamp - propInfo.timestamp) < 10000) {
console.log("以前端道具为主:", propInfo);
if (propInfo.freezeAmount == undefined || propInfo.hammerAmount == undefined || propInfo.magicAmount == undefined) {
console.log("111111道具数据异常", data.result.data);
cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze;
cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer;
cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand;
let propInfoNew = {
"freezeAmount":cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount":cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount":cc.fx.GameConfig.GM_INFO.magicAmount,
"timestamp":timestamp
"freezeAmount": cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount": cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount": cc.fx.GameConfig.GM_INFO.magicAmount,
"timestamp": timestamp
}
console.log("333333上传道具信息:",propInfoNew);
cc.fx.StorageMessage.setStorage("prop",propInfoNew);
console.log("333333上传道具信息:", propInfoNew);
cc.fx.StorageMessage.setStorage("prop", propInfoNew);
}
else{
else {
console.log("道具数据正常");
cc.fx.GameConfig.GM_INFO.freezeAmount = propInfo.freezeAmount;
cc.fx.GameConfig.GM_INFO.hammerAmount = propInfo.hammerAmount;
cc.fx.GameConfig.GM_INFO.magicAmount = propInfo.magicAmount;
cc.fx.GameTool.setUserProp(0,0,(data)=>{
cc.fx.GameTool.setUserProp(0, 0, (data) => {
});
}
}
else{
else {
cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze;
cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer;
cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand;
let propInfoNew = {
"freezeAmount":cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount":cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount":cc.fx.GameConfig.GM_INFO.magicAmount,
"timestamp":timestamp
"freezeAmount": cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount": cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount": cc.fx.GameConfig.GM_INFO.magicAmount,
"timestamp": timestamp
}
console.log("22222222上传道具信息:",propInfoNew,data.result);
cc.fx.StorageMessage.setStorage("prop",propInfoNew);
console.log("22222222上传道具信息:", propInfoNew, data.result);
cc.fx.StorageMessage.setStorage("prop", propInfoNew);
}
}
}
});
}
//旧用户,无本地缓存读取配置
oldReadData(retryCount:number){
oldReadData(retryCount: number) {
console.log("读取旧信息");
const MAX_RETRIES = 15;
const timestamp = Date.now();
// 读取用户数据
//@ts-ignore
wx.cloud.callFunction({
name: 'userData',
data: {
action: 'read'
},
success: res => {
console.log('读取用户数据成功', res.result)
if(res.result.code == 404 && res.result.message == "未找到用户数据"){
if(res.result.openid){
cc.fx.GameConfig.GM_INFO.openid = res.result.openid
}
cc.fx.GameConfig.GM_INFO.first = true;
this.load3 = true;
this.load4 = true;
let levelInfo = {"level":0,"timestamp":timestamp};
cc.fx.StorageMessage.setStorage("level",levelInfo);
let coinInfo = {"coin":0,"timestamp":timestamp};
console.log("33333333333");
cc.fx.StorageMessage.setStorage("coin",coinInfo);
let propInfo = {
"freezeAmount":0,
"hammerAmount":0,
"magicAmount":0,
"timestamp":timestamp,
}
cc.fx.StorageMessage.setStorage("prop",propInfo);
cc.fx.GameTool.setUserInfo((data)=>{
if(data.result.code == 200){
console.log("上传用户信息成功",data);
//@ts-ignore
wx.cloud.callFunction({
name: 'userData',
data: {
action: 'read'
},
success: res => {
console.log("上传后,读取用户信息,为上报注册时间")
if(res.result.code == 200){
const time = res.result.data.register_time;
MiniGameSdk.API.shushu_userSet(time);
}
}
})
name: 'userData',
data: {
action: 'read'
},
success: res => {
console.log('读取用户数据成功', res.result)
if (res.result.code == 404 && res.result.message == "未找到用户数据") {
if (res.result.openid) {
cc.fx.GameConfig.GM_INFO.openid = res.result.openid
}
});
console.log("服务器也没有金币信息",cc.fx.GameConfig.GM_INFO.coin);
cc.fx.GameTool.setUserCoin(cc.fx.GameConfig.GM_INFO.coin,(data)=>{
});
cc.fx.GameTool.setUserLevel((data)=>{
});
setTimeout(() => {
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
cc.fx.GameConfig.GM_INFO.magicAmount = 0;
cc.fx.GameTool.setUserProp(0,0,(data)=>{
if(data.result.code == 200){
console.log("上传道具信息成功",data);
}
else{
MiniGameSdk.API.showToast("网络异常,正在努力加载");
setTimeout(() => {
this.oldReadData(0);
}, 1000);
cc.fx.GameConfig.GM_INFO.first = true;
this.load3 = true;
this.load4 = true;
let levelInfo = { "level": 0, "timestamp": timestamp };
cc.fx.StorageMessage.setStorage("level", levelInfo);
let coinInfo = { "coin": 0, "timestamp": timestamp };
console.log("33333333333");
cc.fx.StorageMessage.setStorage("coin", coinInfo);
let propInfo = {
"freezeAmount": 0,
"hammerAmount": 0,
"magicAmount": 0,
"timestamp": timestamp,
}
cc.fx.StorageMessage.setStorage("prop", propInfo);
cc.fx.GameTool.setUserInfo((data) => {
if (data.result.code == 200) {
console.log("上传用户信息成功", data);
//@ts-ignore
wx.cloud.callFunction({
name: 'userData',
data: {
action: 'read'
},
success: res => {
console.log("上传后,读取用户信息,为上报注册时间")
if (res.result.code == 200) {
const time = res.result.data.register_time;
MiniGameSdk.API.shushu_userSet(time);
}
}
})
}
});
}, 0);
}
else if(res.result.code == 200){
if(res.result.data){
cc.fx.GameConfig.GM_INFO.openid = res.result.openid;
cc.fx.GameConfig.GM_INFO.level = res.result.data.level;
cc.fx.GameConfig.GM_INFO.coin = res.result.data.coinAmount;
cc.fx.GameConfig.GM_INFO.freezeAmount = res.result.data.freezeAmount;
cc.fx.GameConfig.GM_INFO.hammerAmount = res.result.data.hammerAmount;
cc.fx.GameConfig.GM_INFO.magicAmount = res.result.data.magicAmount;
cc.fx.GameConfig.GM_INFO.username = res.result.data.username;
cc.fx.GameConfig.GM_INFO.useravatar = res.result.data.useravatar;
cc.fx.StorageMessage.setStorage("openid",cc.fx.GameConfig.GM_INFO.openid);
const register_time = res.result.data.register_time;
MiniGameSdk.API.shushu_userSet(register_time);
}
setTimeout(() => {
cc.fx.GameTool.getUserCoin((data) =>{
if(data.result.code == 404 && data.result.message == "未找到金币数据"){
let coinInfo = {"coin":0,"timestamp":timestamp};
cc.fx.GameConfig.GM_INFO.coin = 0;
cc.fx.StorageMessage.setStorage("coin",coinInfo);
console.log("没有金币信息,从用户接口拿到数据",cc.fx.GameConfig.GM_INFO.coin);
cc.fx.GameTool.setUserCoin((data)=>{
// console.log("上传",data);
this.load3 = true;
});
}
else if(data.result.code == 200){
// console.log("有金币信息,从金币接口拿到数据",data.result.data);
cc.fx.GameConfig.GM_INFO.coin = data.result.data;
let coinInfo = {"coin":cc.fx.GameConfig.GM_INFO.coin,"timestamp":timestamp};
console.log("存储金币信息:",cc.fx.GameConfig.GM_INFO.coin);
console.log("4444444444");
cc.fx.StorageMessage.setStorage("coin",coinInfo);
this.load3 = true;
}
})
}, 500);
console.log("服务器也没有金币信息", cc.fx.GameConfig.GM_INFO.coin);
cc.fx.GameTool.setUserCoin(cc.fx.GameConfig.GM_INFO.coin, (data) => {
cc.fx.GameTool.getUserLevel((data) =>{
if(data.result.code == 404 && data.result.message == "未找到关卡数据"){
console.log("没有等级信息,从用户接口拿到数据");
let levelInfo = {"level":0,"timestamp":timestamp};
// console.log("333333存储关卡数据:",levelInfo);
cc.fx.GameConfig.GM_INFO.level = 0;
cc.fx.StorageMessage.setStorage("level",levelInfo);
cc.fx.GameTool.setUserLevel((data)=>{
console.log("拿到的数据",data);
this.load4 = true;
});
cc.fx.GameTool.setUserLevel((data) => {
});
setTimeout(() => {
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
cc.fx.GameConfig.GM_INFO.magicAmount = 0;
cc.fx.GameTool.setUserProp(0, 0, (data) => {
if (data.result.code == 200) {
console.log("上传道具信息成功", data);
}
else {
MiniGameSdk.API.showToast("网络异常,正在努力加载");
setTimeout(() => {
this.oldReadData(0);
}, 1000);
}
});
}
else if(data.result.code == 200){
console.log("有等级信息,从关卡接口拿到数据",data.result.data);
cc.fx.GameConfig.GM_INFO.level = data.result.data;
let levelInfo = {"level":cc.fx.GameConfig.GM_INFO.level,"timestamp":timestamp};
// console.log("444444存储关卡信息:",levelInfo);
cc.fx.StorageMessage.setStorage("level",levelInfo);
this.load4 = true;
}, 0);
}
else if (res.result.code == 200) {
if (res.result.data) {
cc.fx.GameConfig.GM_INFO.openid = res.result.openid;
cc.fx.GameConfig.GM_INFO.level = res.result.data.level;
cc.fx.GameConfig.GM_INFO.coin = res.result.data.coinAmount;
cc.fx.GameConfig.GM_INFO.freezeAmount = res.result.data.freezeAmount;
cc.fx.GameConfig.GM_INFO.hammerAmount = res.result.data.hammerAmount;
cc.fx.GameConfig.GM_INFO.magicAmount = res.result.data.magicAmount;
cc.fx.GameConfig.GM_INFO.username = res.result.data.username;
cc.fx.GameConfig.GM_INFO.useravatar = res.result.data.useravatar;
cc.fx.StorageMessage.setStorage("openid", cc.fx.GameConfig.GM_INFO.openid);
const register_time = res.result.data.register_time;
MiniGameSdk.API.shushu_userSet(register_time);
}
})
setTimeout(() => {
cc.fx.GameTool.getUserProp((data) =>{
if(data.result.code == 404 && data.result.message == "未找到道具数据"){
console.log("没有道具信息,从用户接口拿到数据");
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
cc.fx.GameConfig.GM_INFO.magicAmount = 0;
let propInfo = {
"freezeAmount":0,
"hammerAmount":0,
"magicAmount":0,
"timestamp":timestamp,
}
console.log("上传道具信息:",propInfo);
cc.fx.StorageMessage.setStorage("prop",propInfo);
cc.fx.GameTool.setUserProp(0,0,(data)=>{
});
}
else if(data.result.code == 200){
console.log("有道具信息,从道具接口拿到数据",data.result.data);
cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze || 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer || 0;
cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand || 0;
let propInfo = {
"freezeAmount":cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount":cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount":cc.fx.GameConfig.GM_INFO.magicAmount,
"timestamp":timestamp,
}
console.log("上传道具信息:",propInfo);
cc.fx.StorageMessage.setStorage("prop",propInfo);
setTimeout(() => {
cc.fx.GameTool.getUserCoin((data) => {
if (data.result.code == 404 && data.result.message == "未找到金币数据") {
let coinInfo = { "coin": 0, "timestamp": timestamp };
cc.fx.GameConfig.GM_INFO.coin = 0;
cc.fx.StorageMessage.setStorage("coin", coinInfo);
console.log("没有金币信息,从用户接口拿到数据", cc.fx.GameConfig.GM_INFO.coin);
cc.fx.GameTool.setUserCoin((data) => {
// console.log("上传",data);
this.load3 = true;
});
}
else if (data.result.code == 200) {
// console.log("有金币信息,从金币接口拿到数据",data.result.data);
cc.fx.GameConfig.GM_INFO.coin = data.result.data;
let coinInfo = { "coin": cc.fx.GameConfig.GM_INFO.coin, "timestamp": timestamp };
console.log("存储金币信息:", cc.fx.GameConfig.GM_INFO.coin);
console.log("4444444444");
cc.fx.StorageMessage.setStorage("coin", coinInfo);
this.load3 = true;
}
})
}, 500);
cc.fx.GameTool.getUserLevel((data) => {
if (data.result.code == 404 && data.result.message == "未找到关卡数据") {
console.log("没有等级信息,从用户接口拿到数据");
let levelInfo = { "level": 0, "timestamp": timestamp };
// console.log("333333存储关卡数据:",levelInfo);
cc.fx.GameConfig.GM_INFO.level = 0;
cc.fx.StorageMessage.setStorage("level", levelInfo);
cc.fx.GameTool.setUserLevel((data) => {
console.log("拿到的数据", data);
this.load4 = true;
});
}
else if (data.result.code == 200) {
console.log("有等级信息,从关卡接口拿到数据", data.result.data);
cc.fx.GameConfig.GM_INFO.level = data.result.data;
let levelInfo = { "level": cc.fx.GameConfig.GM_INFO.level, "timestamp": timestamp };
// console.log("444444存储关卡信息:",levelInfo);
cc.fx.StorageMessage.setStorage("level", levelInfo);
this.load4 = true;
}
})
}, 0);
}
setTimeout(() => {
cc.fx.GameTool.getUserProp((data) => {
if (data.result.code == 404 && data.result.message == "未找到道具数据") {
console.log("没有道具信息,从用户接口拿到数据");
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = 0;
cc.fx.GameConfig.GM_INFO.magicAmount = 0;
let propInfo = {
"freezeAmount": 0,
"hammerAmount": 0,
"magicAmount": 0,
"timestamp": timestamp,
}
console.log("上传道具信息:", propInfo);
cc.fx.StorageMessage.setStorage("prop", propInfo);
cc.fx.GameTool.setUserProp(0, 0, (data) => {
});
}
else if (data.result.code == 200) {
console.log("有道具信息,从道具接口拿到数据", data.result.data);
cc.fx.GameConfig.GM_INFO.freezeAmount = data.result.data.freeze || 0;
cc.fx.GameConfig.GM_INFO.hammerAmount = data.result.data.hammer || 0;
cc.fx.GameConfig.GM_INFO.magicAmount = data.result.data.magic_wand || 0;
let propInfo = {
"freezeAmount": cc.fx.GameConfig.GM_INFO.freezeAmount,
"hammerAmount": cc.fx.GameConfig.GM_INFO.hammerAmount,
"magicAmount": cc.fx.GameConfig.GM_INFO.magicAmount,
"timestamp": timestamp,
}
console.log("上传道具信息:", propInfo);
cc.fx.StorageMessage.setStorage("prop", propInfo);
},
fail: err => {
console.error('读取用户数据失败', err)
if (retryCount < MAX_RETRIES) {
}
})
}, 0);
}
},
fail: err => {
console.error('读取用户数据失败', err)
if (retryCount < MAX_RETRIES) {
console.error(`读取用户数据失败,第 ${retryCount + 1} 次重试,错误信息:`, err);
// 延迟 2 秒后重试
setTimeout(() => {
@ -648,32 +637,32 @@ export default class GameManager extends cc.Component {
})
}
setUserData(){
cc.fx.GameConfig.GameTool((data)=>{
console.log("上传",data);
setUserData() {
cc.fx.GameConfig.GameTool((data) => {
console.log("上传", data);
})
}
startTimeCutDown(){
this.scheduleCallback = function(){
if(this.timeNumber <= 0){
startTimeCutDown() {
this.scheduleCallback = function () {
if (this.timeNumber <= 0) {
this.stopTimeCutDown();
}
else{
else {
this.timeNumber -= 1;
}
}.bind(this);
this.schedule(this.scheduleCallback, 1);
}
stopTimeCutDown(){
if(this.scheduleCallback){
stopTimeCutDown() {
if (this.scheduleCallback) {
this.unschedule(this.scheduleCallback);
}
}
update (dt) {
if(this.load1 && this.load2 && this.load3 && this.load4 && this.load5 && this.timeNumber <= 0){
update(dt) {
if (this.load1 && this.load2 && this.load3 && this.load4 && this.load5 && this.timeNumber <= 0) {
this.load1 = this.load2 = false;
MiniGameSdk.API.shushu_Init();
this.startGame();

View File

@ -137,13 +137,10 @@ export default class MapConroler extends cc.Component {
this.homeCanTouch = true;
this.againCanTouch = true;
this.new_mode = 0;
<<<<<<< HEAD
this.count_Time = 0;
this.add_Time = 0;
=======
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
this.iceLabel.string = cc.fx.GameConfig.GM_INFO.freezeAmount.toString();
this.hammerLabel.string = cc.fx.GameConfig.GM_INFO.hammerAmount.toString();
this.magicLabel.string = cc.fx.GameConfig.GM_INFO.magicAmount.toString();
@ -191,14 +188,10 @@ export default class MapConroler extends cc.Component {
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
<<<<<<< HEAD
NumberToImage.getTimeMargin(this.timeNumber,50,"time_",this.timeLabel)
=======
this.count_Time = 0;
this.add_Time = 0;
NumberToImage.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel)
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
// this.timeLabel.string = timeTemp.toString();
NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 50, 20, "level_", this.levelLabel, false)
@ -225,18 +218,12 @@ export default class MapConroler extends cc.Component {
this.mapBlockArray = [];
this.freezeArray = [];
this.loackArray = [];
<<<<<<< HEAD
this.count_Time = 0;
this.add_Time = 0;
let startX = this.mapWidth%2==0?-(this.mapWidth-1)*60:-(this.mapWidth-1)*60;
let startY = this.mapHeight%2==0?-(this.mapHeight-1)*60:-(this.mapHeight-1)*60;
=======
let startX = this.mapWidth % 2 == 0 ? -(this.mapWidth - 1) * 60 : -(this.mapWidth - 1) * 60;
let startY = this.mapHeight % 2 == 0 ? -(this.mapHeight - 1) * 60 : -(this.mapHeight - 1) * 60;
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
// startX =(this.mapWidth-1)*60 + 60;
// startY =-(this.mapHeight-1)*60 - 60;
@ -1298,15 +1285,7 @@ export default class MapConroler extends cc.Component {
this.stopTimeCutDown();
// console.log("成功消除一个");
cc.fx.GameTool.changeCoin(40);
<<<<<<< HEAD
cc.fx.GameTool.addLevel(this.count_Time,this.add_Time);
=======
let timeData = {
count_Time: this.count_Time,
add_Time: this.add_Time
}
cc.fx.GameTool.addLevel(timeData);
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
cc.fx.GameTool.addLevel(this.count_Time, this.add_Time);
this.check_NewMode();
setTimeout(() => {
@ -1333,15 +1312,9 @@ export default class MapConroler extends cc.Component {
cc.fx.AudioManager._instance.playEffect("anniu_Big", null);
if (cc.fx.GameConfig.GM_INFO.level > 156) {
cc.fx.GameConfig.GM_INFO.level = 156;
<<<<<<< HEAD
// MapConroler._instance = null;
if(this.new_mode == 3){
=======
MapConroler._instance = null;
if (this.new_mode == 3) {
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
this.node.parent.parent.getChildByName("Win").active = false;
this.openNewMode(2);
cc.fx.GameConfig.LEVEL_INFO_init(false, 0);
@ -1371,15 +1344,9 @@ export default class MapConroler extends cc.Component {
else {
// console.log("下一关");
<<<<<<< HEAD
// MapConroler._instance = null;
if(this.new_mode == 3){
=======
MapConroler._instance = null;
if (this.new_mode == 3) {
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
this.node.parent.parent.getChildByName("Win").active = false;
this.openNewMode(2);
cc.fx.GameConfig.LEVEL_INFO_init(false, 0);
@ -1412,15 +1379,9 @@ export default class MapConroler extends cc.Component {
if (!this.againCanTouch) return;
this.againCanTouch = false;
<<<<<<< HEAD
// MapConroler._instance = null;
cc.fx.AudioManager._instance.playEffect("zhuan1",null);
=======
MapConroler._instance = null;
// MapConroler._instance = null;
cc.fx.AudioManager._instance.playEffect("zhuan1", null);
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
this.node.parent.parent.parent.getChildByName("zhuanchang").active = true;
this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false);
// this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setCompleteListener((entry) => {
@ -1497,15 +1458,9 @@ export default class MapConroler extends cc.Component {
return;
}
// MiniGameSdk.API.showToast("体力值减少");
<<<<<<< HEAD
// MapConroler._instance = null;
cc.fx.GameConfig.LEVEL_INFO_init(false,0);
if(this.new_mode == 3){
=======
MapConroler._instance = null;
cc.fx.GameConfig.LEVEL_INFO_init(false, 0);
if (this.new_mode == 3) {
>>>>>>> 0a31a7a5abc2c505bf743aa596e1c765a0405152
this.node.parent.parent.getChildByName("Win").active = false;
this.openNewMode(1);
return;

View File

@ -4,6 +4,96 @@
<dict>
<key>frames</key>
<dict>
<key>10down1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{1,565},{122,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>10down2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{125,565},{243,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>10down3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{370,565},{363,45}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>10down4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{735,565},{45,124}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>10down5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1,612},{45,245}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>10down6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{248,612},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>1down1.png</key>
<dict>
<key>aliases</key>
@ -15,9 +105,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{424,366},{122,45}}</string>
<string>{{1,1},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>1down2.png</key>
<dict>
@ -30,9 +120,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1035,248},{243,45}}</string>
<string>{{125,1},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>1down3.png</key>
<dict>
@ -45,9 +135,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{424,1},{363,45}}</string>
<string>{{370,1},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>1down4.png</key>
<dict>
@ -60,9 +150,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{1,368},{45,124}}</string>
<string>{{735,1},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>1down5.png</key>
<dict>
@ -75,9 +165,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{847,1},{45,245}}</string>
<string>{{1,48},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>1down6.png</key>
<dict>
@ -90,9 +180,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{1,1},{45,365}}</string>
<string>{{248,48},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>2down1.png</key>
<dict>
@ -105,9 +195,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{471,366},{122,45}}</string>
<string>{{861,1},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>2down2.png</key>
<dict>
@ -120,9 +210,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1082,1},{243,45}}</string>
<string>{{615,48},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>2down3.png</key>
<dict>
@ -135,9 +225,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{471,1},{363,45}}</string>
<string>{{1,95},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>2down4.png</key>
<dict>
@ -150,9 +240,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{48,368},{45,124}}</string>
<string>{{860,48},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>2down5.png</key>
<dict>
@ -165,9 +255,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{847,248},{45,245}}</string>
<string>{{366,95},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>2down6.png</key>
<dict>
@ -180,9 +270,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{48,1},{45,365}}</string>
<string>{{613,95},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>3down1.png</key>
<dict>
@ -195,9 +285,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{518,366},{122,45}}</string>
<string>{{1,142},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>3down2.png</key>
<dict>
@ -210,9 +300,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1082,246},{243,45}}</string>
<string>{{125,142},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>3down3.png</key>
<dict>
@ -225,9 +315,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{518,1},{363,45}}</string>
<string>{{370,142},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>3down4.png</key>
<dict>
@ -240,9 +330,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{95,368},{45,124}}</string>
<string>{{735,142},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>3down5.png</key>
<dict>
@ -255,9 +345,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{894,1},{45,245}}</string>
<string>{{1,189},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>3down6.png</key>
<dict>
@ -270,9 +360,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{95,1},{45,365}}</string>
<string>{{248,189},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>4down1.png</key>
<dict>
@ -285,9 +375,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{565,366},{122,45}}</string>
<string>{{861,142},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>4down2.png</key>
<dict>
@ -300,9 +390,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1129,1},{243,45}}</string>
<string>{{615,189},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>4down3.png</key>
<dict>
@ -315,9 +405,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{565,1},{363,45}}</string>
<string>{{1,236},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>4down4.png</key>
<dict>
@ -330,9 +420,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{142,368},{45,124}}</string>
<string>{{860,189},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>4down5.png</key>
<dict>
@ -345,9 +435,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{894,248},{45,245}}</string>
<string>{{366,236},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>4down6.png</key>
<dict>
@ -360,9 +450,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{142,1},{45,365}}</string>
<string>{{613,236},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>5down1.png</key>
<dict>
@ -375,9 +465,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{612,366},{122,45}}</string>
<string>{{1,283},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>5down2.png</key>
<dict>
@ -390,9 +480,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1129,246},{243,45}}</string>
<string>{{125,283},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>5down3.png</key>
<dict>
@ -405,9 +495,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{612,1},{363,45}}</string>
<string>{{370,283},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>5down4.png</key>
<dict>
@ -420,9 +510,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{189,368},{45,124}}</string>
<string>{{735,283},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>5down5.png</key>
<dict>
@ -435,9 +525,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{941,1},{45,245}}</string>
<string>{{1,330},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>5down6.png</key>
<dict>
@ -450,9 +540,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{189,1},{45,365}}</string>
<string>{{248,330},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>6down1.png</key>
<dict>
@ -465,9 +555,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{659,366},{122,45}}</string>
<string>{{861,283},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>6down2.png</key>
<dict>
@ -480,9 +570,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1176,1},{243,45}}</string>
<string>{{615,330},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>6down3.png</key>
<dict>
@ -495,9 +585,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{659,1},{363,45}}</string>
<string>{{1,377},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>6down4.png</key>
<dict>
@ -510,9 +600,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{236,368},{45,124}}</string>
<string>{{860,330},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>6down5.png</key>
<dict>
@ -525,9 +615,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{941,248},{45,245}}</string>
<string>{{366,377},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>6down6.png</key>
<dict>
@ -540,9 +630,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{236,1},{45,365}}</string>
<string>{{613,377},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>7down1.png</key>
<dict>
@ -551,13 +641,13 @@
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{122,45}</string>
<string>{122,46}</string>
<key>spriteSourceSize</key>
<string>{122,45}</string>
<string>{122,46}</string>
<key>textureRect</key>
<string>{{706,366},{122,45}}</string>
<string>{{861,565},{122,46}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>7down2.png</key>
<dict>
@ -566,13 +656,13 @@
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{243,45}</string>
<string>{244,46}</string>
<key>spriteSourceSize</key>
<string>{243,45}</string>
<string>{244,46}</string>
<key>textureRect</key>
<string>{{1176,246},{243,45}}</string>
<string>{{615,612},{244,46}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>7down3.png</key>
<dict>
@ -581,13 +671,13 @@
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{363,45}</string>
<string>{364,46}</string>
<key>spriteSourceSize</key>
<string>{363,45}</string>
<string>{364,46}</string>
<key>textureRect</key>
<string>{{706,1},{363,45}}</string>
<string>{{1,659},{364,46}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>7down4.png</key>
<dict>
@ -596,13 +686,13 @@
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,124}</string>
<string>{46,124}</string>
<key>spriteSourceSize</key>
<string>{45,124}</string>
<string>{46,124}</string>
<key>textureRect</key>
<string>{{283,368},{45,124}}</string>
<string>{{861,613},{46,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>7down5.png</key>
<dict>
@ -611,13 +701,13 @@
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,245}</string>
<string>{46,246}</string>
<key>spriteSourceSize</key>
<string>{45,245}</string>
<string>{46,246}</string>
<key>textureRect</key>
<string>{{988,1},{45,245}}</string>
<string>{{367,659},{46,246}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>7down6.png</key>
<dict>
@ -626,13 +716,13 @@
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{45,365}</string>
<string>{46,366}</string>
<key>spriteSourceSize</key>
<string>{45,365}</string>
<string>{46,366}</string>
<key>textureRect</key>
<string>{{283,1},{45,365}}</string>
<string>{{615,661},{46,366}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>8down1.png</key>
<dict>
@ -645,9 +735,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{753,366},{122,45}}</string>
<string>{{1,424},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>8down2.png</key>
<dict>
@ -660,9 +750,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1223,1},{243,45}}</string>
<string>{{125,424},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>8down3.png</key>
<dict>
@ -675,9 +765,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{753,1},{363,45}}</string>
<string>{{370,424},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>8down4.png</key>
<dict>
@ -690,9 +780,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{330,368},{45,124}}</string>
<string>{{735,424},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>8down5.png</key>
<dict>
@ -705,9 +795,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{988,248},{45,245}}</string>
<string>{{1,471},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>8down6.png</key>
<dict>
@ -720,9 +810,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{330,1},{45,365}}</string>
<string>{{248,471},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>9down1.png</key>
<dict>
@ -735,9 +825,9 @@
<key>spriteSourceSize</key>
<string>{122,45}</string>
<key>textureRect</key>
<string>{{800,366},{122,45}}</string>
<string>{{861,424},{122,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>9down2.png</key>
<dict>
@ -750,9 +840,9 @@
<key>spriteSourceSize</key>
<string>{243,45}</string>
<key>textureRect</key>
<string>{{1223,246},{243,45}}</string>
<string>{{615,471},{243,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>9down3.png</key>
<dict>
@ -765,9 +855,9 @@
<key>spriteSourceSize</key>
<string>{363,45}</string>
<key>textureRect</key>
<string>{{800,1},{363,45}}</string>
<string>{{1,518},{363,45}}</string>
<key>textureRotated</key>
<true/>
<false/>
</dict>
<key>9down4.png</key>
<dict>
@ -780,9 +870,9 @@
<key>spriteSourceSize</key>
<string>{45,124}</string>
<key>textureRect</key>
<string>{{377,368},{45,124}}</string>
<string>{{860,471},{45,124}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>9down5.png</key>
<dict>
@ -795,9 +885,9 @@
<key>spriteSourceSize</key>
<string>{45,245}</string>
<key>textureRect</key>
<string>{{1035,1},{45,245}}</string>
<string>{{366,518},{45,245}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
<key>9down6.png</key>
<dict>
@ -810,9 +900,9 @@
<key>spriteSourceSize</key>
<string>{45,365}</string>
<key>textureRect</key>
<string>{{377,1},{45,365}}</string>
<string>{{613,518},{45,365}}</string>
<key>textureRotated</key>
<false/>
<true/>
</dict>
</dict>
<key>metadata</key>
@ -826,9 +916,9 @@
<key>realTextureFileName</key>
<string>down.png</string>
<key>size</key>
<string>{1269,494}</string>
<string>{986,708}</string>
<key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:7a4c22871339652baf28bd6011424c2d:f70ceb55bdca44a4d81feac4e49d40ac:1f82f659e2591d395bca4b2a7c74dd8a$</string>
<string>$TexturePacker:SmartUpdate:e71e00cbca228ccc0b15a23585e90eb3:c43c34fe0ac0b70e0467bdecae7396c0:1f82f659e2591d395bca4b2a7c74dd8a$</string>
<key>textureFileName</key>
<string>down.png</string>
</dict>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 60 KiB

View File

@ -1,6 +1,6 @@
{
"ver": "2.3.7",
"uuid": "ed2c3a21-0522-445d-9904-76843208705f",
"uuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"importer": "texture",
"type": "raw",
"wrapMode": "clamp",
@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1269,
"height": 494,
"width": 986,
"height": 708,
"platformSettings": {},
"subMetas": {}
}

13
assets/prefab/alert.meta Normal file
View File

@ -0,0 +1,13 @@
{
"ver": "1.1.3",
"uuid": "84dfdbbd-ae68-4dec-b5e2-aa1e4d28c38f",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

13
assets/res/music.meta Normal file
View File

@ -0,0 +1,13 @@
{
"ver": "1.1.3",
"uuid": "99be851f-9f4f-4fdd-bd43-3e3f86dd78d2",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.3",
"uuid": "2ef5a7c6-04f5-418a-85b6-bf39220cd512",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 KiB

View File

@ -0,0 +1,15 @@
{
"ver": "2.3.7",
"uuid": "418b4767-01bf-4ac2-823b-9880f2a79215",
"importer": "texture",
"type": "raw",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1337,
"height": 975,
"platformSettings": {},
"subMetas": {}
}

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.3",
"uuid": "c8878cfa-dda2-45ac-9204-7b3c4da0d5c4",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -281,7 +281,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "fc8fd6fa-3cc2-4a69-a2f7-2c521de510b1"
"__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef"
},
"_type": 0,
"_sizeMode": 1,
@ -295,7 +295,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -315,7 +315,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": {
"__uuid__": "31479c6e-5626-4598-97ab-f94303e9efe7"
"__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf"
},
"_id": ""
},
@ -2042,7 +2042,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2056,7 +2056,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2087,7 +2087,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2101,7 +2101,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2264,7 +2264,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2278,7 +2278,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2309,7 +2309,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2323,7 +2323,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2418,7 +2418,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2432,7 +2432,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2527,7 +2527,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2541,7 +2541,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2788,7 +2788,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2802,7 +2802,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2833,7 +2833,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -2847,7 +2847,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3010,7 +3010,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3024,7 +3024,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3055,7 +3055,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -3069,7 +3069,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3164,7 +3164,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3178,7 +3178,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3273,7 +3273,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3287,7 +3287,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3534,7 +3534,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3548,7 +3548,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3579,7 +3579,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3593,7 +3593,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3756,7 +3756,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3770,7 +3770,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3801,7 +3801,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3815,7 +3815,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3910,7 +3910,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3924,7 +3924,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -4019,7 +4019,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -4033,7 +4033,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -159,7 +159,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "ee73bdf1-0624-464f-a268-cb0ff3f2952b"
"__uuid__": "4891e811-ae55-4277-b9de-7592e8016504"
},
"_type": 0,
"_sizeMode": 1,
@ -173,7 +173,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -159,7 +159,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "e7bbdb15-5185-4c6e-a2f6-1c337b60b460"
"__uuid__": "6aba7f92-7bd5-4b20-8a55-7730e1bfa75d"
},
"_type": 0,
"_sizeMode": 1,
@ -173,7 +173,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -281,7 +281,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "52f7fc1c-b560-4b6d-b15e-b38b6584a5d8"
"__uuid__": "4f65ed94-5d59-48ce-b94f-e199044365cf"
},
"_type": 0,
"_sizeMode": 1,
@ -295,7 +295,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -315,7 +315,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": {
"__uuid__": "31479c6e-5626-4598-97ab-f94303e9efe7"
"__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf"
},
"_id": ""
},
@ -486,9 +486,7 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "31479c6e-5626-4598-97ab-f94303e9efe7"
},
"_atlas": null,
"_id": ""
},
{
@ -2044,7 +2042,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2058,7 +2056,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2089,7 +2087,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2103,7 +2101,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2266,7 +2264,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2280,7 +2278,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2311,7 +2309,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2325,7 +2323,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2420,7 +2418,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2434,7 +2432,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2529,7 +2527,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2543,7 +2541,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2790,7 +2788,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2804,7 +2802,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2835,7 +2833,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -2849,7 +2847,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3012,7 +3010,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3026,7 +3024,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3057,7 +3055,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -3071,7 +3069,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3166,7 +3164,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3180,7 +3178,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3275,7 +3273,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3289,7 +3287,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3536,7 +3534,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3550,7 +3548,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3581,7 +3579,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3595,7 +3593,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3758,7 +3756,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3772,7 +3770,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3803,7 +3801,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3817,7 +3815,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3912,7 +3910,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3926,7 +3924,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -4021,7 +4019,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -4035,7 +4033,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -281,7 +281,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "52f7fc1c-b560-4b6d-b15e-b38b6584a5d8"
"__uuid__": "4f65ed94-5d59-48ce-b94f-e199044365cf"
},
"_type": 0,
"_sizeMode": 1,
@ -295,7 +295,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -315,7 +315,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": {
"__uuid__": "31479c6e-5626-4598-97ab-f94303e9efe7"
"__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf"
},
"_id": ""
},
@ -486,9 +486,7 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "31479c6e-5626-4598-97ab-f94303e9efe7"
},
"_atlas": null,
"_id": ""
},
{
@ -2044,7 +2042,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2058,7 +2056,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2089,7 +2087,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2103,7 +2101,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2266,7 +2264,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2280,7 +2278,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2311,7 +2309,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2325,7 +2323,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2420,7 +2418,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2434,7 +2432,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2529,7 +2527,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2543,7 +2541,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2790,7 +2788,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2804,7 +2802,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2835,7 +2833,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -2849,7 +2847,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3012,7 +3010,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3026,7 +3024,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3057,7 +3055,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -3071,7 +3069,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3166,7 +3164,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3180,7 +3178,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3275,7 +3273,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3289,7 +3287,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3536,7 +3534,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3550,7 +3548,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3581,7 +3579,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3595,7 +3593,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3758,7 +3756,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3772,7 +3770,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3803,7 +3801,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3817,7 +3815,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3912,7 +3910,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3926,7 +3924,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -4021,7 +4019,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -4035,7 +4033,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -281,7 +281,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "fc8fd6fa-3cc2-4a69-a2f7-2c521de510b1"
"__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef"
},
"_type": 0,
"_sizeMode": 1,
@ -295,7 +295,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -315,7 +315,7 @@
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"down_SpriteFrames": {
"__uuid__": "31479c6e-5626-4598-97ab-f94303e9efe7"
"__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf"
},
"_id": ""
},
@ -2042,7 +2042,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2056,7 +2056,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2087,7 +2087,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2101,7 +2101,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2264,7 +2264,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2278,7 +2278,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2309,7 +2309,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7"
"__uuid__": "1f53a670-99ab-4671-932f-3227940876cc"
},
"_type": 3,
"_sizeMode": 0,
@ -2323,7 +2323,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2418,7 +2418,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2432,7 +2432,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2527,7 +2527,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2541,7 +2541,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2788,7 +2788,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -2802,7 +2802,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -2833,7 +2833,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -2847,7 +2847,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3010,7 +3010,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3024,7 +3024,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3055,7 +3055,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "36c23619-6422-47be-aa02-f78b7618bb3c"
"__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a"
},
"_type": 3,
"_sizeMode": 0,
@ -3069,7 +3069,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3164,7 +3164,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3178,7 +3178,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3273,7 +3273,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3287,7 +3287,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3534,7 +3534,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3548,7 +3548,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3579,7 +3579,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3593,7 +3593,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3756,7 +3756,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3770,7 +3770,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3801,7 +3801,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270"
"__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60"
},
"_type": 3,
"_sizeMode": 0,
@ -3815,7 +3815,7 @@
"_fillRange": 1,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -3910,7 +3910,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -3924,7 +3924,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},
@ -4019,7 +4019,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "66c27f02-719e-422c-9277-42063833c0af"
"__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe"
},
"_type": 0,
"_sizeMode": 1,
@ -4033,7 +4033,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -159,7 +159,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "865e12b4-8506-4026-ab52-9c8421100cc4"
"__uuid__": "232d4cf2-be5a-4a98-8d4d-10edb8325e08"
},
"_type": 0,
"_sizeMode": 1,
@ -173,7 +173,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -159,7 +159,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "02a22e2f-85e0-4ce1-a955-6ea4bf514319"
"__uuid__": "b679c771-a901-4df3-a592-4ebd4cad002e"
},
"_type": 0,
"_sizeMode": 1,
@ -173,7 +173,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -46,16 +46,19 @@
},
{
"__id__": 212
},
{
"__id__": 216
}
],
"_active": true,
"_components": [
{
"__id__": 216
"__id__": 219
}
],
"_prefab": {
"__id__": 217
"__id__": 220
},
"_opacity": 255,
"_color": {
@ -255,7 +258,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 2340
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@ -338,8 +341,8 @@
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": -210,
"_bottom": -210,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
@ -7745,6 +7748,108 @@
"fileId": "c5IbgSqWhDerwgA0hdz30t",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "Top",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 217
}
],
"_prefab": {
"__id__": 218
},
"_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.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 216
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 0,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "e5881p4DhA2o2G5SieRWXh",
"sync": false
},
{
"__type__": "48bfeZuYFZE2qmgxbW2IigB",
"_name": "",

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "9color4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1276,
488,
60,
146
],
"offset": [
0,
0
],
"originalSize": [
60,
146
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "5color2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
387,
671,
258,
69
],
"offset": [
0,
0
],
"originalSize": [
258,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "9down5",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1035,
1,
366,
518,
45,
245
],
@ -18,6 +18,7 @@
45,
245
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "wall4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1129,
488,
137,
145
],
"offset": [
0,
0
],
"originalSize": [
137,
145
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "8down1",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
753,
366,
1,
424,
122,
45
],
@ -18,7 +18,6 @@
122,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "3down2",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1082,
246,
125,
142,
243,
45
],
@ -18,7 +18,6 @@
243,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "10down6",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
248,
612,
45,
365
],
"offset": [
0,
0
],
"originalSize": [
45,
365
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "2down1",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
471,
366,
861,
1,
122,
45
],
@ -18,7 +18,6 @@
122,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "6down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
659,
1,
377,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -1,12 +1,12 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"name": "10down3",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
706,
1,
370,
565,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -1,660 +0,0 @@
{
"__type__": "sp.SkeletonData",
"_name": "skeleton",
"_objFlags": 0,
"_native": "",
"_skeletonJson": {
"skeleton": {
"hash": "8JO/UTer3ajOZPnOtjA7VMfz2+I",
"spine": "3.8.99",
"x": -476.91,
"y": -152.86,
"width": 795,
"height": 728,
"images": "",
"audio": "D:/work/block/做完的/解扣"
},
"bones": [
{
"name": "root",
"x": 8.64,
"y": -17.49
},
{
"name": "bone3",
"parent": "root",
"x": -11.52,
"y": 52.57
},
{
"name": "kou1",
"parent": "bone3",
"x": 17.41,
"y": -32.85
},
{
"name": "bone",
"parent": "bone3",
"x": 16.62,
"y": -45.84
},
{
"name": "luosi",
"parent": "bone",
"x": 0.3,
"y": 0.82,
"scaleX": 0.6,
"scaleY": 0.6
},
{
"name": "bone2",
"parent": "bone3",
"x": 16.9,
"y": -19.1
},
{
"name": "luosi2",
"parent": "bone2",
"x": 0.3,
"y": 0.82,
"scaleX": 0.6,
"scaleY": 0.6
},
{
"name": "bone4",
"parent": "root",
"x": -40.06,
"y": 52.8
},
{
"name": "kou2",
"parent": "bone4",
"x": 17.41,
"y": -32.85
},
{
"name": "bone5",
"parent": "bone4",
"x": 16.42,
"y": -45.84
},
{
"name": "luosi3",
"parent": "bone5",
"x": 0.3,
"y": 0.82,
"scaleX": 0.6,
"scaleY": 0.6
},
{
"name": "bone6",
"parent": "bone4",
"x": 16.5,
"y": -18.9
},
{
"name": "luosi4",
"parent": "bone6",
"x": 0.3,
"y": 0.82,
"scaleX": 0.6,
"scaleY": 0.6
}
],
"slots": [
{
"name": "连接块/连接块",
"bone": "root"
},
{
"name": "连接块/kou1",
"bone": "kou1",
"attachment": "连接块/kou2shu"
},
{
"name": "连接块/kou2",
"bone": "kou2",
"attachment": "连接块/kou2shu"
},
{
"name": "连接块/luosi",
"bone": "luosi",
"attachment": "连接块/luosi"
},
{
"name": "连接块/luosi6",
"bone": "luosi3",
"attachment": "连接块/luosi"
},
{
"name": "连接块/luosi4",
"bone": "luosi2",
"attachment": "连接块/luosi"
},
{
"name": "连接块/luosi8",
"bone": "luosi4",
"attachment": "连接块/luosi"
},
{
"name": "连接块/luosi2",
"bone": "bone",
"attachment": "连接块/luosi2"
},
{
"name": "连接块/luosi5",
"bone": "bone5",
"attachment": "连接块/luosi2"
},
{
"name": "连接块/luosi3",
"bone": "bone2",
"attachment": "连接块/luosi2"
},
{
"name": "连接块/luosi7",
"bone": "bone6",
"attachment": "连接块/luosi2"
}
],
"skins": [
{
"name": "default",
"attachments": {
"连接块/kou1": {
"连接块/kou2shu": {
"width": 24,
"height": 52
}
},
"连接块/kou2": {
"连接块/kou2shu": {
"width": 24,
"height": 52
}
},
"连接块/luosi": {
"连接块/luosi": {
"x": -0.28,
"y": -3.1,
"width": 23,
"height": 21
}
},
"连接块/luosi2": {
"连接块/luosi2": {
"x": -0.06,
"y": -0.22,
"width": 12,
"height": 12
}
},
"连接块/luosi3": {
"连接块/luosi2": {
"x": -0.06,
"y": -0.22,
"width": 12,
"height": 12
}
},
"连接块/luosi4": {
"连接块/luosi": {
"x": -0.28,
"y": -3.1,
"width": 23,
"height": 21
}
},
"连接块/luosi5": {
"连接块/luosi2": {
"x": -0.06,
"y": -0.22,
"width": 12,
"height": 12
}
},
"连接块/luosi6": {
"连接块/luosi": {
"x": -0.28,
"y": -3.1,
"width": 23,
"height": 21
}
},
"连接块/luosi7": {
"连接块/luosi2": {
"x": -0.06,
"y": -0.22,
"width": 12,
"height": 12
}
},
"连接块/luosi8": {
"连接块/luosi": {
"x": -0.28,
"y": -3.1,
"width": 23,
"height": 21
}
}
}
}
],
"animations": {
"animation": {
"slots": {
"连接块/kou1": {
"color": [
{
"time": 0.3333,
"color": "ffffffff"
},
{
"time": 0.6,
"color": "ffffff00"
}
]
},
"连接块/kou2": {
"color": [
{
"time": 0.6667,
"color": "ffffffff"
},
{
"time": 0.9333,
"color": "ffffff00"
}
]
},
"连接块/luosi": {
"color": [
{
"color": "ffffff00",
"curve": "stepped"
},
{
"time": 0.3333,
"color": "ffffff00"
},
{
"time": 0.3667,
"color": "ffffffff"
},
{
"time": 0.6667,
"color": "ffffff00"
}
]
},
"连接块/luosi2": {
"color": [
{
"time": 0.3333,
"color": "ffffffff"
},
{
"time": 0.3667,
"color": "ffffff00"
}
]
},
"连接块/luosi3": {
"color": [
{
"time": 0.4667,
"color": "ffffffff"
},
{
"time": 0.5,
"color": "ffffff00"
}
]
},
"连接块/luosi4": {
"color": [
{
"color": "ffffff00",
"curve": "stepped"
},
{
"time": 0.4667,
"color": "ffffff00"
},
{
"time": 0.5,
"color": "ffffffff"
},
{
"time": 0.8,
"color": "ffffff00"
}
]
},
"连接块/luosi5": {
"color": [
{
"time": 0.5,
"color": "ffffffff"
},
{
"time": 0.5333,
"color": "ffffff00"
}
]
},
"连接块/luosi6": {
"color": [
{
"color": "ffffff00",
"curve": "stepped"
},
{
"time": 0.3333,
"color": "ffffff00"
},
{
"time": 0.3667,
"color": "ffffffff"
},
{
"time": 0.6667,
"color": "ffffff00"
}
]
},
"连接块/luosi7": {
"color": [
{
"time": 0.6333,
"color": "ffffffff"
},
{
"time": 0.6667,
"color": "ffffff00"
}
]
},
"连接块/luosi8": {
"color": [
{
"color": "ffffff00",
"curve": "stepped"
},
{
"time": 0.4667,
"color": "ffffff00"
},
{
"time": 0.5,
"color": "ffffffff"
},
{
"time": 0.8,
"color": "ffffff00"
}
]
}
},
"bones": {
"kou1": {
"rotate": [
{
"time": 0.3333
},
{
"time": 0.4667,
"angle": 35.85
},
{
"time": 0.6,
"angle": -136.48
}
],
"translate": [
{
"time": 0.3333
},
{
"time": 0.6,
"x": 160.21,
"y": -504.28
}
]
},
"luosi": {
"rotate": [
{
"time": 0.3667
},
{
"time": 0.6667,
"angle": -120.91
}
]
},
"bone": {
"rotate": [
{},
{
"time": 0.1667,
"angle": -177
},
{
"time": 0.3333,
"angle": 81.64
}
],
"translate": [
{
"time": 0.3333
},
{
"time": 0.6667,
"x": -231.71,
"y": 365.51
}
],
"scale": [
{},
{
"time": 0.3333,
"x": 1.1,
"y": 1.1
},
{
"time": 0.6667,
"x": 3,
"y": 3
}
]
},
"bone2": {
"rotate": [
{
"time": 0.1333
},
{
"time": 0.3,
"angle": -177
},
{
"time": 0.4667,
"angle": 81.64
}
],
"translate": [
{
"time": 0.4667
},
{
"time": 0.8,
"x": 258.57,
"y": 206.19
}
],
"scale": [
{
"time": 0.1333
},
{
"time": 0.4667,
"x": 1.1,
"y": 1.1
},
{
"time": 0.8,
"x": 3,
"y": 3
}
]
},
"luosi2": {
"rotate": [
{
"time": 0.5
},
{
"time": 0.8,
"angle": -120.91
}
]
},
"kou2": {
"rotate": [
{
"time": 0.6667
},
{
"time": 0.9333,
"angle": -112.36
}
],
"translate": [
{
"time": 0.6667
},
{
"time": 0.9333,
"x": -410.73,
"y": -378.57
}
]
},
"bone5": {
"rotate": [
{
"time": 0.1667
},
{
"time": 0.3333,
"angle": -177
},
{
"time": 0.5,
"angle": 81.64
}
],
"translate": [
{
"time": 0.5
},
{
"time": 0.8333,
"x": -351.46,
"y": -250.38
}
],
"scale": [
{
"time": 0.1667
},
{
"time": 0.5,
"x": 1.1,
"y": 1.1
},
{
"time": 0.8333,
"x": 3,
"y": 3
}
]
},
"luosi3": {
"rotate": [
{
"time": 0.3667
},
{
"time": 0.6667,
"angle": -120.91
}
]
},
"bone6": {
"rotate": [
{
"time": 0.3
},
{
"time": 0.4667,
"angle": -177
},
{
"time": 0.6333,
"angle": 81.64
}
],
"translate": [
{
"time": 0.6333
},
{
"time": 0.9667,
"x": 173.03,
"y": -292.38
}
],
"scale": [
{
"time": 0.3
},
{
"time": 0.6333,
"x": 1.1,
"y": 1.1
},
{
"time": 0.9667,
"x": 3,
"y": 3
}
]
},
"luosi4": {
"rotate": [
{
"time": 0.5
},
{
"time": 0.8,
"angle": -120.91
}
]
}
}
}
}
},
"_atlasText": "\r\nskeleton.png\r\nsize: 96,96\r\nformat: RGBA8888\r\nfilter: Linear,Linear\r\nrepeat: none\r\n连接块/kou2shu\r\n rotate: false\r\n xy: 2, 39\r\n size: 24, 52\r\n orig: 24, 52\r\n offset: 0, 0\r\n index: -1\r\n连接块/luosi\r\n rotate: false\r\n xy: 2, 16\r\n size: 23, 21\r\n orig: 23, 21\r\n offset: 0, 0\r\n index: -1\r\n连接块/luosi2\r\n rotate: false\r\n xy: 2, 2\r\n size: 12, 12\r\n orig: 12, 12\r\n offset: 0, 0\r\n index: -1\r\n",
"textures": [
{
"__uuid__": "dca5e70b-8d3f-4ac0-abe7-d0c5647f7837"
}
],
"textureNames": [
"skeleton.png"
],
"scale": 1
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "3color5",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
64,
390,
61,
267
],
"offset": [
0,
0
],
"originalSize": [
61,
267
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -159,7 +159,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "865e12b4-8506-4026-ab52-9c8421100cc4"
"__uuid__": "232d4cf2-be5a-4a98-8d4d-10edb8325e08"
},
"_type": 0,
"_sizeMode": 1,
@ -173,7 +173,7 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": {
"__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5"
"__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180"
},
"_id": ""
},

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "4color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
881,
758,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7color6",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1,
1,
62,
387
],
"offset": [
0,
0
],
"originalSize": [
62,
387
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down3",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1,
659,
364,
46
],
"offset": [
0,
0
],
"originalSize": [
364,
46
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "shu_zl2_1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
965,
829,
32,
54
],
"offset": [
0,
0
],
"originalSize": [
32,
54
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "6down6",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
236,
1,
613,
377,
45,
365
],
@ -18,6 +18,7 @@
45,
365
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "3down6",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
95,
1,
248,
189,
45,
365
],
@ -18,6 +18,7 @@
45,
365
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "5color6",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
907,
1,
61,
386
],
"offset": [
0,
0
],
"originalSize": [
61,
386
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "2color6",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
65,
1,
62,
386
],
"offset": [
0,
0
],
"originalSize": [
62,
386
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -145,6 +145,8 @@ var MapConroler = /** @class */ (function (_super) {
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
this.count_Time = 0;
this.add_Time = 0;
NumberToImage_1.default.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel);
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
// this.timeLabel.string = timeTemp.toString();

File diff suppressed because one or more lines are too long

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "9down4",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
377,
368,
860,
471,
45,
124
],
@ -18,6 +18,7 @@
45,
124
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "1down5",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
847,
1,
48,
45,
245
],
@ -18,6 +18,7 @@
45,
245
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "2color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
795,
618,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "6color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1021,
743,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -1,459 +0,0 @@
{
"__type__": "sp.SkeletonData",
"_name": "zhandan",
"_objFlags": 0,
"_native": "",
"_skeletonJson": {
"skeleton": {
"hash": "k+H2C+mXFNRS2OlTrDJIvQAbPQ4",
"spine": "3.8.99",
"x": -35.7,
"y": -33.01,
"width": 62,
"height": 95,
"images": "./0/",
"audio": ""
},
"bones": [
{
"name": "root"
},
{
"name": "banyuan0001",
"parent": "root",
"x": 107.34,
"y": 35.2
},
{
"name": "huoquan0001",
"parent": "root",
"x": 104.99,
"y": -67.86,
"scaleX": 2,
"scaleY": 2
},
{
"name": "zaza0001",
"parent": "root",
"x": 238.73,
"y": -87.12,
"scaleX": 2,
"scaleY": 2
},
{
"name": "banyuan2",
"parent": "root",
"x": -4.44,
"y": -26.16
},
{
"name": "banyuan1",
"parent": "banyuan2",
"x": -0.25,
"y": 40.16
}
],
"slots": [
{
"name": "bg",
"bone": "root"
},
{
"name": "huoquan0001",
"bone": "huoquan0001"
},
{
"name": "zaza0001",
"bone": "zaza0001"
},
{
"name": "banyuan0001",
"bone": "banyuan0001"
},
{
"name": "zhadan",
"bone": "banyuan1",
"attachment": "zhadan1"
}
],
"skins": [
{
"name": "default",
"attachments": {
"banyuan0001": {
"banyuan0001": {
"x": 4.37,
"y": 34.83,
"width": 265,
"height": 209
},
"banyuan0004": {
"x": 4.37,
"y": 34.83,
"width": 265,
"height": 209
},
"banyuan0007": {
"x": 4.37,
"y": 34.83,
"width": 265,
"height": 209
},
"banyuan0010": {
"x": 4.37,
"y": 34.83,
"width": 265,
"height": 209
},
"banyuan0013": {
"x": 4.37,
"y": 34.83,
"width": 265,
"height": 209
},
"banyuan0016": {
"x": 4.37,
"y": 34.83,
"width": 265,
"height": 209
}
},
"huoquan0001": {
"huoquan0001": {
"x": -0.96,
"y": -3.35,
"width": 222,
"height": 151
},
"huoquan0004": {
"x": -0.96,
"y": -3.35,
"width": 222,
"height": 151
},
"huoquan0006": {
"x": -0.96,
"y": -3.35,
"width": 222,
"height": 151
},
"huoquan0009": {
"x": -0.96,
"y": -3.35,
"width": 222,
"height": 151
},
"huoquan0012": {
"x": -0.96,
"y": -3.35,
"width": 222,
"height": 151
},
"huoquan0015": {
"x": -0.96,
"y": -3.35,
"width": 222,
"height": 151
}
},
"zaza0001": {
"zaza0001": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0003": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0004": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0008": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0012": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0016": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0020": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0024": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0028": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
},
"zaza0032": {
"x": -4.18,
"y": 21.34,
"width": 251,
"height": 223
}
},
"zhadan": {
"zhadan1": {
"y": 0.5,
"width": 62,
"height": 95
},
"zhadan2": {
"y": 0.5,
"width": 62,
"height": 95
},
"zhadan3": {
"y": 0.5,
"width": 62,
"height": 95
}
}
}
}
],
"animations": {
"eff": {
"slots": {
"banyuan0001": {
"attachment": [
{
"time": 0.3333,
"name": "banyuan0001"
},
{
"time": 0.4333,
"name": "banyuan0004"
},
{
"time": 0.5333,
"name": "banyuan0007"
},
{
"time": 0.6333,
"name": "banyuan0010"
},
{
"time": 0.7333,
"name": "banyuan0013"
},
{
"time": 0.8333,
"name": "banyuan0016"
},
{
"time": 0.9333,
"name": null
}
]
},
"huoquan0001": {
"attachment": [
{
"time": 0.3333,
"name": "huoquan0001"
},
{
"time": 0.4333,
"name": "huoquan0004"
},
{
"time": 0.5,
"name": "huoquan0006"
},
{
"time": 0.6,
"name": "huoquan0009"
},
{
"time": 0.7,
"name": "huoquan0012"
},
{
"time": 0.8,
"name": "huoquan0015"
},
{
"time": 0.8333,
"name": null
}
]
},
"zaza0001": {
"color": [
{
"time": 1.1333,
"color": "ffffffff"
},
{
"time": 1.4,
"color": "ffffff00"
}
],
"attachment": [
{
"time": 0.3333,
"name": "zaza0001"
},
{
"time": 0.4,
"name": "zaza0003"
},
{
"time": 0.4333,
"name": "zaza0004"
},
{
"time": 0.5667,
"name": "zaza0008"
},
{
"time": 0.7,
"name": "zaza0012"
},
{
"time": 0.8333,
"name": "zaza0016"
},
{
"time": 0.9667,
"name": "zaza0020"
},
{
"time": 1.1,
"name": "zaza0024"
},
{
"time": 1.2333,
"name": "zaza0028"
},
{
"time": 1.3333,
"name": "zaza0032"
},
{
"time": 1.4,
"name": null
}
]
},
"zhadan": {
"color": [
{
"time": 0.2667,
"color": "ffffffff"
},
{
"time": 0.3333,
"color": "ffffff00"
}
],
"attachment": [
{
"time": 0.0667,
"name": "zhadan2"
},
{
"time": 0.1333,
"name": "zhadan3"
}
]
}
},
"bones": {
"banyuan0001": {
"translate": [
{
"time": 0.3333,
"x": -111.11,
"y": -28.42
}
]
},
"huoquan0001": {
"translate": [
{
"time": 0.3333,
"x": -104.86,
"y": 63.21
}
]
},
"zaza0001": {
"translate": [
{
"time": 0.3333,
"x": -240.31,
"y": 91.73
}
]
},
"banyuan2": {
"scale": [
{},
{
"time": 0.0667,
"x": 1.2,
"y": 1.2
},
{
"time": 0.1333,
"x": 0.9,
"y": 0.9
},
{
"time": 0.2,
"x": 1.1,
"y": 1.1
},
{
"time": 0.2667
},
{
"time": 0.3333,
"x": 1.2,
"y": 1.2
}
]
}
}
}
}
},
"_atlasText": "\r\nzhandan.png\r\nsize: 1020,1020\r\nformat: RGBA8888\r\nfilter: Linear,Linear\r\nrepeat: none\r\nbanyuan0001\r\n rotate: true\r\n xy: 758, 692\r\n size: 86, 79\r\n orig: 265, 209\r\n offset: 87, 34\r\n index: -1\r\nbanyuan0004\r\n rotate: true\r\n xy: 633, 273\r\n size: 172, 133\r\n orig: 265, 209\r\n offset: 46, 11\r\n index: -1\r\nbanyuan0007\r\n rotate: false\r\n xy: 2, 4\r\n size: 242, 188\r\n orig: 265, 209\r\n offset: 10, 6\r\n index: -1\r\nbanyuan0010\r\n rotate: false\r\n xy: 2, 194\r\n size: 253, 195\r\n orig: 265, 209\r\n offset: 5, 7\r\n index: -1\r\nbanyuan0013\r\n rotate: false\r\n xy: 2, 611\r\n size: 259, 199\r\n orig: 265, 209\r\n offset: 2, 5\r\n index: -1\r\nbanyuan0016\r\n rotate: false\r\n xy: 2, 812\r\n size: 262, 203\r\n orig: 265, 209\r\n offset: 1, 3\r\n index: -1\r\nhuoquan0001\r\n rotate: true\r\n xy: 758, 780\r\n size: 123, 80\r\n orig: 222, 151\r\n offset: 52, 41\r\n index: -1\r\nhuoquan0004\r\n rotate: true\r\n xy: 633, 17\r\n size: 193, 140\r\n orig: 222, 151\r\n offset: 16, 9\r\n index: -1\r\nhuoquan0006\r\n rotate: true\r\n xy: 463, 615\r\n size: 209, 148\r\n orig: 222, 151\r\n offset: 7, 3\r\n index: -1\r\nhuoquan0009\r\n rotate: false\r\n xy: 468, 870\r\n size: 213, 145\r\n orig: 222, 151\r\n offset: 5, 2\r\n index: -1\r\nhuoquan0012\r\n rotate: true\r\n xy: 613, 655\r\n size: 213, 143\r\n orig: 222, 151\r\n offset: 5, 1\r\n index: -1\r\nhuoquan0015\r\n rotate: true\r\n xy: 633, 447\r\n size: 206, 140\r\n orig: 222, 151\r\n offset: 9, 1\r\n index: -1\r\nzaza0001\r\n rotate: true\r\n xy: 683, 905\r\n size: 110, 98\r\n orig: 251, 223\r\n offset: 74, 45\r\n index: -1\r\nzaza0003\r\n rotate: false\r\n xy: 240, 408\r\n size: 218, 201\r\n orig: 251, 223\r\n offset: 28, 0\r\n index: -1\r\nzaza0004\r\n rotate: false\r\n xy: 2, 391\r\n size: 236, 218\r\n orig: 251, 223\r\n offset: 15, 0\r\n index: -1\r\nzaza0008\r\n rotate: true\r\n xy: 266, 612\r\n size: 212, 195\r\n orig: 251, 223\r\n offset: 27, 6\r\n index: -1\r\nzaza0012\r\n rotate: true\r\n xy: 257, 191\r\n size: 215, 198\r\n orig: 251, 223\r\n offset: 24, 6\r\n index: -1\r\nzaza0016\r\n rotate: true\r\n xy: 266, 826\r\n size: 189, 200\r\n orig: 251, 223\r\n offset: 28, 4\r\n index: -1\r\nzaza0020\r\n rotate: true\r\n xy: 246, 2\r\n size: 187, 205\r\n orig: 251, 223\r\n offset: 24, 2\r\n index: -1\r\nzaza0024\r\n rotate: false\r\n xy: 457, 212\r\n size: 174, 194\r\n orig: 251, 223\r\n offset: 30, 6\r\n index: -1\r\nzaza0028\r\n rotate: false\r\n xy: 457, 16\r\n size: 174, 194\r\n orig: 251, 223\r\n offset: 30, 6\r\n index: -1\r\nzaza0032\r\n rotate: false\r\n xy: 460, 415\r\n size: 171, 194\r\n orig: 251, 223\r\n offset: 30, 6\r\n index: -1\r\nzhadan1\r\n rotate: false\r\n xy: 768, 352\r\n size: 60, 93\r\n orig: 62, 95\r\n offset: 1, 1\r\n index: -1\r\nzhadan2\r\n rotate: false\r\n xy: 768, 267\r\n size: 59, 83\r\n orig: 62, 95\r\n offset: 1, 1\r\n index: -1\r\nzhadan3\r\n rotate: false\r\n xy: 775, 447\r\n size: 59, 76\r\n orig: 62, 95\r\n offset: 1, 1\r\n index: -1\r\n",
"textures": [
{
"__uuid__": "15f7f173-be51-47f3-8314-66d14e63471f"
}
],
"textureNames": [
"zhandan.png"
],
"scale": 1
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "8down5",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
988,
248,
1,
471,
45,
245
],
@ -18,6 +18,7 @@
45,
245
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "shu_zl1_3",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1,
940,
178,
34
],
"offset": [
0,
0
],
"originalSize": [
178,
34
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "5down6",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
189,
1,
248,
330,
45,
365
],
@ -18,6 +18,7 @@
45,
365
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7color5",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
889,
340,
62,
267
],
"offset": [
0,
0
],
"originalSize": [
62,
267
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "10color4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1092,
816,
61,
146
],
"offset": [
0,
0
],
"originalSize": [
61,
146
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "wall7",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1269,
206,
61,
69
],
"offset": [
0,
0
],
"originalSize": [
61,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "5down2",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1129,
246,
125,
283,
243,
45
],
@ -18,7 +18,6 @@
243,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "8down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
753,
1,
370,
424,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down5",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
367,
659,
46,
246
],
"offset": [
0,
0
],
"originalSize": [
46,
246
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "9color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
661,
892,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -1,12 +1,12 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down5",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"name": "10down5",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
988,
1,
612,
45,
245
],
@ -18,6 +18,7 @@
45,
245
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "shu_zl1_2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
804,
479,
118,
34
],
"offset": [
0,
0
],
"originalSize": [
118,
34
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "4color2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
387,
600,
258,
69
],
"offset": [
0,
0
],
"originalSize": [
258,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,10 +2,10 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "1down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
424,
370,
1,
363,
45
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "2color3",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
129,
190,
378,
69
],
"offset": [
0,
0
],
"originalSize": [
378,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "6down5",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
941,
248,
366,
377,
45,
245
],
@ -18,6 +18,7 @@
45,
245
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "5color3",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
509,
198,
378,
69
],
"offset": [
0,
0
],
"originalSize": [
378,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,188 @@
{
"__type__": "cc.SpriteAtlas",
"_name": "down.plist",
"_objFlags": 0,
"_native": "",
"_spriteFrames": {
"10down1": {
"__uuid__": "c8f5862b-373d-4a40-b7b4-b550d4ed958a"
},
"10down2": {
"__uuid__": "51e06d9e-23ca-4762-8aef-cd8bab1d33dd"
},
"10down3": {
"__uuid__": "0c09885e-4d8d-43c8-9f7d-e97bccb67e77"
},
"10down4": {
"__uuid__": "ca5f78b1-730f-4ad9-a695-9f72982d7cce"
},
"10down5": {
"__uuid__": "362edd73-b6b5-4a1d-82bc-7714ae28b209"
},
"10down6": {
"__uuid__": "07594a6b-77fb-448b-89f1-653cdd63f516"
},
"1down1": {
"__uuid__": "c983d847-cfc4-4288-aef4-81f7614c015e"
},
"1down2": {
"__uuid__": "abfddfc6-a384-4b25-8868-90354a9531d9"
},
"1down3": {
"__uuid__": "37292117-0184-47bb-9029-40e2bf9f2e3b"
},
"1down4": {
"__uuid__": "aeab228a-209e-49fc-8bf5-c02865b9e02e"
},
"1down5": {
"__uuid__": "257d5583-e4b0-4dfc-910b-6efdc382de04"
},
"1down6": {
"__uuid__": "5fa4d829-4ef3-47a4-b9b0-5367ea5deadb"
},
"2down1": {
"__uuid__": "085f8402-f610-4636-862f-22fd6bc2e7ca"
},
"2down2": {
"__uuid__": "b6e07f67-9d56-45ff-be78-5375b5265998"
},
"2down3": {
"__uuid__": "42fbefea-6ea1-4889-9e5f-f3873953f13b"
},
"2down4": {
"__uuid__": "c9235f60-abf4-4de9-b0f0-45056ad4eec0"
},
"2down5": {
"__uuid__": "cfda791a-aa61-49c2-a331-117740c80b87"
},
"2down6": {
"__uuid__": "66736e80-5092-4271-8c58-17f8352c7b8d"
},
"3down1": {
"__uuid__": "dbf12764-e7df-4736-923b-4e613402fd70"
},
"3down2": {
"__uuid__": "0681c1ff-5cf4-4fe7-bc91-5e38c70ce46b"
},
"3down3": {
"__uuid__": "59e058ad-134c-4311-a1f4-59e93f8f8586"
},
"3down4": {
"__uuid__": "6168773e-4720-4796-9d76-84266915596b"
},
"3down5": {
"__uuid__": "e086948a-d672-4693-a773-355c1aaf8819"
},
"3down6": {
"__uuid__": "20a13038-b67b-4c07-89fd-38267efdc0e5"
},
"4down1": {
"__uuid__": "f68ebe9a-38e9-4208-8ac6-77d20462d9d6"
},
"4down2": {
"__uuid__": "678b10b4-1068-409c-82ea-15c65801d0a5"
},
"4down3": {
"__uuid__": "6ca2b413-78a7-4e32-bf03-b4a2b80f024b"
},
"4down4": {
"__uuid__": "40dd76f4-1ba0-40ce-9e2e-92f82d7da381"
},
"4down5": {
"__uuid__": "eb033dba-ae5e-4147-ad46-241ab27df770"
},
"4down6": {
"__uuid__": "accbb35a-b43d-49b8-97dc-c7e939ca052c"
},
"5down1": {
"__uuid__": "48cddc96-39c7-449c-8280-55dd44b65377"
},
"5down2": {
"__uuid__": "34494a3a-6ae1-43cc-a102-e6f66a620e20"
},
"5down3": {
"__uuid__": "5282d649-8ede-4c7e-aeed-37beb78e860a"
},
"5down4": {
"__uuid__": "5e92ffdd-e62a-480f-93f2-852830ea2d1e"
},
"5down5": {
"__uuid__": "fa7e8b5f-2600-4a98-8b15-1d95d419fbdb"
},
"5down6": {
"__uuid__": "2cb2dbcb-4868-4668-8fd8-fde9b1bd8dba"
},
"6down1": {
"__uuid__": "805ed668-1b05-44ff-98f9-2e8fc101a705"
},
"6down2": {
"__uuid__": "b8ef6026-86e6-481d-b285-65489050ac48"
},
"6down3": {
"__uuid__": "0a02963d-dd42-42ad-be69-c78af29eec3b"
},
"6down4": {
"__uuid__": "8398ddf1-296c-47cd-9d55-2ed4885f9509"
},
"6down5": {
"__uuid__": "3b3e5789-e908-47aa-9adb-61ff566da72f"
},
"6down6": {
"__uuid__": "1ecae730-c650-43a7-8c0a-560373777137"
},
"7down1": {
"__uuid__": "9c2db1a3-6fc0-44c8-b56b-c6d42033dffb"
},
"7down2": {
"__uuid__": "a5f933cc-d81e-4cab-92f3-86f1ba938126"
},
"7down3": {
"__uuid__": "18775144-2f12-48f0-9d3d-b737e7417b5a"
},
"7down4": {
"__uuid__": "690702de-7290-431c-8cf9-89157165ca91"
},
"7down5": {
"__uuid__": "355cc718-8d59-4f73-ae85-54d1899fe7be"
},
"7down6": {
"__uuid__": "569c479b-0e5d-4830-87a0-249867696779"
},
"8down1": {
"__uuid__": "05be34a9-d8ee-43d3-ae9c-ea9f9fa663ab"
},
"8down2": {
"__uuid__": "55e0ff42-6f24-4b09-ab71-9baa61ede941"
},
"8down3": {
"__uuid__": "34717e3a-f954-4de3-95a1-9337ea702d6a"
},
"8down4": {
"__uuid__": "b8f7c2fe-525a-434f-ab7e-41bdc9c91155"
},
"8down5": {
"__uuid__": "2b6d3d1e-8527-4810-a096-c3743fa6f668"
},
"8down6": {
"__uuid__": "c1342fe3-26bf-44b8-9163-aacbee5d6684"
},
"9down1": {
"__uuid__": "9e3650ed-bc7c-46ae-8c98-22c6001075b1"
},
"9down2": {
"__uuid__": "ccaae0e5-ef39-4909-8249-afb1cd2d6ada"
},
"9down3": {
"__uuid__": "dfd68eea-a8ae-4141-b080-f6cfefbad8cd"
},
"9down4": {
"__uuid__": "23fb16a5-4b81-4d2d-8fda-baffb1561c23"
},
"9down5": {
"__uuid__": "01a57769-e8df-4d79-91f9-900b3485adce"
},
"9down6": {
"__uuid__": "c8c757f3-a7c1-446f-847e-f079db95fc71"
}
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "9color2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
261,
884,
258,
69
],
"offset": [
0,
0
],
"originalSize": [
258,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "4down4",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
142,
368,
860,
189,
45,
124
],
@ -18,6 +18,7 @@
45,
124
],
"rotated": 1,
"capInsets": [
0,
0,

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 KiB

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "2down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
471,
1,
95,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "3color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
741,
758,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "8color4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
678,
829,
61,
145
],
"offset": [
0,
0
],
"originalSize": [
61,
145
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -1 +1 @@
{"version":3,"sources":["assets\\shop\\script\\shop.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAEM,IAAA,KAAwB,EAAE,CAAC,UAAU,EAAnC,OAAO,aAAA,EAAE,QAAQ,cAAkB,CAAC;AAG5C;IAAsC,4BAAY;IAAlD;QAAA,qEAkDC;QAjDG,MAAM;QAEN,UAAI,GAAY,IAAI,CAAC;QACrB,MAAM;QAEN,cAAQ,GAAY,IAAI,CAAC;;QA2CzB,iBAAiB;IACrB,CAAC;IA3CG,eAAe;IAEf,wBAAK,GAAL;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;IACpB,CAAC;IACD,QAAQ;IACR,2BAAQ,GAAR;QACI,SAAS;QACT,IAAM,QAAQ,GAAG;YACb,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE;YACzE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;YACnE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;YACnE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;YACpE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;YACpE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;YACpE,EAAE,UAAU,EAAE,2BAA2B,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE;YAC3F,EAAE,UAAU,EAAE,2BAA2B,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;SACxF,CAAC;QACF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YAC9D,IAAM,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;YACjF,IAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAC3E,IAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAC3E,IAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAChC,IAAI,UAAU,IAAI,OAAO,EAAE;gBACvB,uDAAuD;aAC1D;YACD,IAAI,KAAK,IAAI,OAAO,EAAE;gBAClB,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,QAAQ,EAAE,GAAG,GAAG,CAAC;aACzD;YACD,IAAI,KAAK,IAAI,OAAO,EAAE;gBAClB,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;aAC/B;SACJ;IACL,CAAC;IAGD,QAAQ;IACR,4BAAS,GAAT;QACI,OAAO;QACP,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IA5CD;QADC,QAAQ,CAAC,EAAE,CAAC,IAAI,CAAC;0CACG;IAGrB;QADC,QAAQ,CAAC,EAAE,CAAC,IAAI,CAAC;8CACO;IANR,QAAQ;QAD5B,OAAO;OACa,QAAQ,CAkD5B;IAAD,eAAC;CAlDD,AAkDC,CAlDqC,EAAE,CAAC,SAAS,GAkDjD;kBAlDoB,QAAQ","file":"","sourceRoot":"/","sourcesContent":["import List from \"../../Script/module/RankList/List\";\n\nconst { ccclass, property } = cc._decorator;\n\n@ccclass\nexport default class NewClass extends cc.Component {\n //商店界面\n @property(cc.Node)\n shop: cc.Node = null;\n //商品列表\n @property(cc.Node)\n itemList: cc.Node = null;\n // onLoad () {}\n\n start() {\n this.openShop();\n }\n //打开商店界面\n openShop() {\n // 商品数据数组\n const products = [\n { product_id: \"gold_pack_1\", name: \"金币包1\", price: 600, title: \"3x2六档金币\" },\n { product_id: \"gold_pack_2\", name: \"金币包2\", price: 3600, title: \"\" },\n { product_id: \"gold_pack_3\", name: \"金币包3\", price: 6800, title: \"\" },\n { product_id: \"gold_pack_4\", name: \"金币包4\", price: 12800, title: \"\" },\n { product_id: \"gold_pack_5\", name: \"金币包5\", price: 32800, title: \"\" },\n { product_id: \"gold_pack_6\", name: \"金币包6\", price: 64800, title: \"\" },\n { product_id: \"unlimited_health_bundle_1\", name: \"无限体力组合包1\", price: 1800, title: \"3个横版礼包\" },\n { product_id: \"unlimited_health_bundle_2\", name: \"无限体力组合包2\", price: 6600, title: \"\" }\n ];\n for (let i = 1; i <= 8 && i < this.itemList.children.length; i++) {\n const spriteComp = this.itemList.children[i].children[0].getComponent(cc.Sprite);\n const price = this.itemList.children[i].children[1].getComponent(cc.Label);\n const title = this.itemList.children[i].children[2].getComponent(cc.Label);\n const product = products[i - 1];\n if (spriteComp && product) {\n // TODO: 根据 product_id 或 name 设置 spriteComp.spriteFrame\n }\n if (price && product) {\n price.string = (product.price / 100).toString() + \"元\";\n }\n if (title && product) {\n title.string = product.name;\n }\n }\n }\n\n\n //关闭商店界面\n closeShop() {\n //销毁预制体\n this.shop.destroy();\n }\n\n // update (dt) {}\n}\n"]}
{"version":3,"sources":["assets\\shop\\script\\shop.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAEM,IAAA,KAAwB,EAAE,CAAC,UAAU,EAAnC,OAAO,aAAA,EAAE,QAAQ,cAAkB,CAAC;AAG5C;IAAsC,4BAAY;IAAlD;QAAA,qEAkDC;QAjDG,MAAM;QAEN,UAAI,GAAY,IAAI,CAAC;QACrB,MAAM;QAEN,cAAQ,GAAY,IAAI,CAAC;;QA2CzB,iBAAiB;IACrB,CAAC;IA3CG,eAAe;IAEf,wBAAK,GAAL;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;IACpB,CAAC;IACD,QAAQ;IACR,2BAAQ,GAAR;QACI,SAAS;QACT,IAAM,QAAQ,GAAG;YACb,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE;YACzE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;YACnE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;YACnE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;YACpE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;YACpE,EAAE,UAAU,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;YACpE,EAAE,UAAU,EAAE,2BAA2B,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE;YAC3F,EAAE,UAAU,EAAE,2BAA2B,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;SACxF,CAAC;QACF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YAC9D,IAAM,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;YACjF,IAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAC3E,IAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAC3E,IAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAChC,IAAI,UAAU,IAAI,OAAO,EAAE;gBACvB,uDAAuD;aAC1D;YACD,IAAI,KAAK,IAAI,OAAO,EAAE;gBAClB,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,QAAQ,EAAE,GAAG,GAAG,CAAC;aACzD;YACD,IAAI,KAAK,IAAI,OAAO,EAAE;gBAClB,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;aAC/B;SACJ;IACL,CAAC;IAGD,QAAQ;IACR,4BAAS,GAAT;QACI,OAAO;QACP,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IA5CD;QADC,QAAQ,CAAC,EAAE,CAAC,IAAI,CAAC;0CACG;IAGrB;QADC,QAAQ,CAAC,EAAE,CAAC,IAAI,CAAC;8CACO;IANR,QAAQ;QAD5B,OAAO;OACa,QAAQ,CAkD5B;IAAD,eAAC;CAlDD,AAkDC,CAlDqC,EAAE,CAAC,SAAS,GAkDjD;kBAlDoB,QAAQ","file":"","sourceRoot":"/","sourcesContent":["import List from \"../../Script/module/RankList/List\";\r\n\r\nconst { ccclass, property } = cc._decorator;\r\n\r\n@ccclass\r\nexport default class NewClass extends cc.Component {\r\n //商店界面\r\n @property(cc.Node)\r\n shop: cc.Node = null;\r\n //商品列表\r\n @property(cc.Node)\r\n itemList: cc.Node = null;\r\n // onLoad () {}\r\n\r\n start() {\r\n this.openShop();\r\n }\r\n //打开商店界面\r\n openShop() {\r\n // 商品数据数组\r\n const products = [\r\n { product_id: \"gold_pack_1\", name: \"金币包1\", price: 600, title: \"3x2六档金币\" },\r\n { product_id: \"gold_pack_2\", name: \"金币包2\", price: 3600, title: \"\" },\r\n { product_id: \"gold_pack_3\", name: \"金币包3\", price: 6800, title: \"\" },\r\n { product_id: \"gold_pack_4\", name: \"金币包4\", price: 12800, title: \"\" },\r\n { product_id: \"gold_pack_5\", name: \"金币包5\", price: 32800, title: \"\" },\r\n { product_id: \"gold_pack_6\", name: \"金币包6\", price: 64800, title: \"\" },\r\n { product_id: \"unlimited_health_bundle_1\", name: \"无限体力组合包1\", price: 1800, title: \"3个横版礼包\" },\r\n { product_id: \"unlimited_health_bundle_2\", name: \"无限体力组合包2\", price: 6600, title: \"\" }\r\n ];\r\n for (let i = 1; i <= 8 && i < this.itemList.children.length; i++) {\r\n const spriteComp = this.itemList.children[i].children[0].getComponent(cc.Sprite);\r\n const price = this.itemList.children[i].children[1].getComponent(cc.Label);\r\n const title = this.itemList.children[i].children[2].getComponent(cc.Label);\r\n const product = products[i - 1];\r\n if (spriteComp && product) {\r\n // TODO: 根据 product_id 或 name 设置 spriteComp.spriteFrame\r\n }\r\n if (price && product) {\r\n price.string = (product.price / 100).toString() + \"元\";\r\n }\r\n if (title && product) {\r\n title.string = product.name;\r\n }\r\n }\r\n }\r\n\r\n\r\n //关闭商店界面\r\n closeShop() {\r\n //销毁预制体\r\n this.shop.destroy();\r\n }\r\n\r\n // update (dt) {}\r\n}\r\n"]}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "5down1",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
612,
366,
1,
283,
122,
45
],
@ -18,7 +18,6 @@
122,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "5color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
521,
884,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "10down2",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
125,
565,
243,
45
],
"offset": [
0,
0
],
"originalSize": [
243,
45
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "5down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
612,
1,
370,
283,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "wall2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1092,
879,
61,
146
],
"offset": [
0,
0
],
"originalSize": [
61,
146
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "6color2",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
333,
742,
258,
69
],
"offset": [
0,
0
],
"originalSize": [
258,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "8down2",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1223,
1,
125,
424,
243,
45
],
@ -18,7 +18,6 @@
243,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,22 +2,23 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down6",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
283,
1,
45,
365
615,
661,
46,
366
],
"offset": [
0,
0
],
"originalSize": [
45,
365
46,
366
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "8color3",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
509,
340,
378,
69
],
"offset": [
0,
0
],
"originalSize": [
378,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "3down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
518,
1,
370,
142,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "5down4",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
189,
368,
735,
283,
45,
124
],
@ -18,6 +18,7 @@
45,
124
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "1down6",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1,
1,
248,
48,
45,
365
],
@ -18,6 +18,7 @@
45,
365
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "shu_zl2_33",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
663,
411,
32,
180
],
"offset": [
0,
0
],
"originalSize": [
32,
180
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "3down4",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
95,
368,
735,
142,
45,
124
],
@ -18,6 +18,7 @@
45,
124
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "2down6",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
48,
1,
613,
95,
45,
365
],
@ -18,6 +18,7 @@
45,
365
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "shu_zl1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
1081,
883,
9,
42
],
"offset": [
0,
0
],
"originalSize": [
9,
42
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "4down2",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
1129,
1,
615,
189,
243,
45
],
@ -18,7 +18,6 @@
243,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "1color5",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
889,
404,
61,
267
],
"offset": [
0,
0
],
"originalSize": [
61,
267
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,12 +2,12 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "7down4",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
283,
368,
45,
861,
613,
46,
124
],
"offset": [
@ -15,9 +15,10 @@
0
],
"originalSize": [
45,
46,
124
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,28 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "8color1",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
825,
829,
138,
69
],
"offset": [
0,
0
],
"originalSize": [
138,
69
],
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "1color4",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
593,
758,
61,
146
],
"offset": [
0,
0
],
"originalSize": [
61,
146
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

View File

@ -2,11 +2,11 @@
"__type__": "cc.SpriteFrame",
"content": {
"name": "4down3",
"texture": "ed2c3a21-0522-445d-9904-76843208705f",
"atlas": "d7e227ab-cc06-48f5-a2ac-092b19ec7f6f",
"texture": "c660c59d-e175-4194-aaf3-33d1d03b783f",
"atlas": "3d019ed8-3019-436d-add0-ceeb02a5baaf",
"rect": [
565,
1,
236,
363,
45
],
@ -18,7 +18,6 @@
363,
45
],
"rotated": 1,
"capInsets": [
0,
0,

View File

@ -0,0 +1,29 @@
{
"__type__": "cc.SpriteFrame",
"content": {
"name": "10color6",
"texture": "418b4767-01bf-4ac2-823b-9880f2a79215",
"atlas": "cc01997d-495e-480d-871e-be405a6c38b5",
"rect": [
889,
277,
61,
386
],
"offset": [
0,
0
],
"originalSize": [
61,
386
],
"rotated": 1,
"capInsets": [
0,
0,
0,
0
]
}
}

Some files were not shown because too many files have changed in this diff Show More