月卡
|
@ -242,7 +242,7 @@ export default class GameManager extends cc.Component {
|
||||||
console.log("______________________________有未发放奖励", cc.fx.GameConfig.GM_INFO.allOutTradeNo);
|
console.log("______________________________有未发放奖励", cc.fx.GameConfig.GM_INFO.allOutTradeNo);
|
||||||
}
|
}
|
||||||
this.setUserPower(data);
|
this.setUserPower(data);
|
||||||
|
this.setmonth(data);
|
||||||
let levelInfo = cc.fx.StorageMessage.getStorage("level");
|
let levelInfo = cc.fx.StorageMessage.getStorage("level");
|
||||||
//旧的读取数据设置数据方法,以强联网为主
|
//旧的读取数据设置数据方法,以强联网为主
|
||||||
if (levelInfo == undefined || levelInfo == "" || levelInfo == null) {
|
if (levelInfo == undefined || levelInfo == "" || levelInfo == null) {
|
||||||
|
@ -790,6 +790,18 @@ export default class GameManager extends cc.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
setmonth(data) {
|
||||||
|
//如果给的时间戳大于当前时间hpmax=7,否则等于5
|
||||||
|
let nowTime = Math.floor(Date.now() / 1000);
|
||||||
|
if (data.data.monthCardTime > nowTime) {
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 7;
|
||||||
|
cc.fx.GameConfig.GM_INFO.doubleCoin = 2;
|
||||||
|
} else {
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 5;
|
||||||
|
cc.fx.GameConfig.GM_INFO.doubleCoin = 1;
|
||||||
|
}
|
||||||
|
console.log(cc.fx.GameConfig.GM_INFO.hp_Max, "00000000000");
|
||||||
|
}
|
||||||
|
|
||||||
update(dt) {
|
update(dt) {
|
||||||
//console.log("加载1:", this.load1, "加载2:", this.load2, "加载3:", this.load3, "加载4:", this.load4, "加载5:", this.load5, "加载6:", this.load6, "时间:", this.timeNumber);
|
//console.log("加载1:", this.load1, "加载2:", this.load2, "加载3:", this.load3, "加载4:", this.load4, "加载5:", this.load5, "加载6:", this.load6, "时间:", this.timeNumber);
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
|
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
|
||||||
|
|
||||||
import GameManager from "./GameManager";
|
import GameManager from "./GameManager";
|
||||||
|
import MapConroler from "./Map";
|
||||||
import NumberToImage from "./NumberToImage";
|
import NumberToImage from "./NumberToImage";
|
||||||
import { MiniGameSdk } from "./Sdk/MiniGameSdk";
|
import { MiniGameSdk } from "./Sdk/MiniGameSdk";
|
||||||
import { LQCollideSystem } from "./lq_collide_system/lq_collide_system";
|
import { LQCollideSystem } from "./lq_collide_system/lq_collide_system";
|
||||||
|
@ -25,6 +26,10 @@ export default class JiaZai extends cc.Component {
|
||||||
private static cachedRewardPrefab: cc.Prefab | null = null;
|
private static cachedRewardPrefab: cc.Prefab | null = null;
|
||||||
// 缓存 reward 奖励窗口 节点
|
// 缓存 reward 奖励窗口 节点
|
||||||
private RewardNode: cc.Node | null = null;
|
private RewardNode: cc.Node | null = null;
|
||||||
|
//缓存月卡
|
||||||
|
private static cachedMonthlyCardPrefab: cc.Prefab | null = null;
|
||||||
|
// 缓存月卡节点
|
||||||
|
private monthlyCardNode: cc.Node | null = null;
|
||||||
|
|
||||||
@property(cc.EditBox)
|
@property(cc.EditBox)
|
||||||
custom: cc.EditBox = null;
|
custom: cc.EditBox = null;
|
||||||
|
@ -44,6 +49,7 @@ export default class JiaZai extends cc.Component {
|
||||||
|
|
||||||
@property(cc.Node)
|
@property(cc.Node)
|
||||||
coin: cc.Node = null;
|
coin: cc.Node = null;
|
||||||
|
|
||||||
// 健康值
|
// 健康值
|
||||||
@property(cc.Prefab)
|
@property(cc.Prefab)
|
||||||
health: cc.Prefab = null;
|
health: cc.Prefab = null;
|
||||||
|
@ -57,7 +63,15 @@ export default class JiaZai extends cc.Component {
|
||||||
@property(cc.Node)
|
@property(cc.Node)
|
||||||
setUi: cc.Node = null;
|
setUi: cc.Node = null;
|
||||||
scheduleCallback2: any;
|
scheduleCallback2: any;
|
||||||
|
//月卡
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardBtn: cc.Node = null;
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardBtn2: cc.Node = null;
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardTime: cc.Node = null;
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCard: cc.Node = null;
|
||||||
// LIFE-CYCLE CALLBACKS:
|
// LIFE-CYCLE CALLBACKS:
|
||||||
|
|
||||||
onLoad() {
|
onLoad() {
|
||||||
|
@ -98,6 +112,13 @@ export default class JiaZai extends cc.Component {
|
||||||
JiaZai.cachedRewardPrefab = prefab;
|
JiaZai.cachedRewardPrefab = prefab;
|
||||||
this.getOrder();
|
this.getOrder();
|
||||||
});
|
});
|
||||||
|
bundle.load('prefab/monthlyCard', cc.Prefab, (err: Error, prefab: cc.Prefab) => {
|
||||||
|
if (err) {
|
||||||
|
cc.error(err.message || err);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
JiaZai.cachedMonthlyCardPrefab = prefab;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,6 +158,7 @@ export default class JiaZai extends cc.Component {
|
||||||
}
|
}
|
||||||
//console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen);
|
//console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen);
|
||||||
AudioManager._instance.playMusicGame();
|
AudioManager._instance.playMusicGame();
|
||||||
|
// this.openMonthCard();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,6 +167,11 @@ export default class JiaZai extends cc.Component {
|
||||||
// //console.log("金币",cc.fx.GameConfig.GM_INFO.coin);
|
// //console.log("金币",cc.fx.GameConfig.GM_INFO.coin);
|
||||||
// //console.log("关卡",cc.fx.GameConfig.GM_INFO.level+1);
|
// //console.log("关卡",cc.fx.GameConfig.GM_INFO.level+1);
|
||||||
this.updatePower();
|
this.updatePower();
|
||||||
|
//等级大于16开启
|
||||||
|
if (cc.fx.GameConfig.GM_INFO.level >= 16) {
|
||||||
|
this.monthH();
|
||||||
|
};
|
||||||
|
|
||||||
cc.fx.GameTool.getHealth(null);
|
cc.fx.GameTool.getHealth(null);
|
||||||
// cc.fx.GameConfig.LEVEL_INFO_init(false,0);
|
// cc.fx.GameConfig.LEVEL_INFO_init(false,0);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -169,14 +196,21 @@ export default class JiaZai extends cc.Component {
|
||||||
if (!cc.fx.GameConfig.GM_INFO.first)
|
if (!cc.fx.GameConfig.GM_INFO.first)
|
||||||
this.node.getChildByName("zhuanchang").active = false;
|
this.node.getChildByName("zhuanchang").active = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// //打开heath弹窗
|
// //打开heath弹窗
|
||||||
// this.openHeath();
|
// this.openHeath();
|
||||||
this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1);
|
this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1);
|
||||||
|
this.rewarded();
|
||||||
|
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.code == 1) {
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 7;
|
||||||
|
cc.fx.GameConfig.GM_INFO.doubleCoin = 2;
|
||||||
|
} else {
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 5;
|
||||||
|
cc.fx.GameConfig.GM_INFO.doubleCoin = 1;
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
//打开heath弹窗,创建预制体
|
//打开heath弹窗,创建预制体
|
||||||
// 打开heath弹窗,创建预制体并启动自己的倒计时
|
// 打开heath弹窗,创建预制体并启动自己的倒计时
|
||||||
openHeath() {
|
openHeath() {
|
||||||
|
@ -285,6 +319,7 @@ export default class JiaZai extends cc.Component {
|
||||||
this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
|
this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
console.log(cc.fx.GameConfig.GM_INFO.hp, cc.fx.GameConfig.GM_INFO.hp_Max, "月卡体力");
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
this.schedule(this.scheduleCallback, 1);
|
this.schedule(this.scheduleCallback, 1);
|
||||||
}
|
}
|
||||||
|
@ -455,7 +490,7 @@ export default class JiaZai extends cc.Component {
|
||||||
// //console.log("shopNode parent:", this.shopNode.parent);
|
// //console.log("shopNode parent:", this.shopNode.parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
openRewardWindow(data) {
|
openRewardWindow(data, month?: number) {
|
||||||
if (!JiaZai.cachedRewardPrefab) {
|
if (!JiaZai.cachedRewardPrefab) {
|
||||||
cc.error('Reward prefab is not loaded yet.');
|
cc.error('Reward prefab is not loaded yet.');
|
||||||
return;
|
return;
|
||||||
|
@ -475,6 +510,25 @@ export default class JiaZai extends cc.Component {
|
||||||
}
|
}
|
||||||
this.updatePower();
|
this.updatePower();
|
||||||
}
|
}
|
||||||
|
//打开月卡
|
||||||
|
openMonthlyCard() {
|
||||||
|
if (!JiaZai.cachedMonthlyCardPrefab) {
|
||||||
|
cc.error('MonthlyCard prefab is not loaded yet.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!this.monthlyCardNode) {
|
||||||
|
// 第一次使用,创建节点
|
||||||
|
this.monthlyCardNode = cc.instantiate(JiaZai.cachedMonthlyCardPrefab);
|
||||||
|
this.node.addChild(this.monthlyCardNode);
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").init();
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").juwai = true;
|
||||||
|
} else {
|
||||||
|
// 非第一次使用,直接激活节点
|
||||||
|
this.monthlyCardNode.active = true;
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").init();
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").juwai = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 关闭商店
|
// 关闭商店
|
||||||
closeShop() {
|
closeShop() {
|
||||||
|
@ -493,6 +547,7 @@ export default class JiaZai extends cc.Component {
|
||||||
|
|
||||||
openReward() {
|
openReward() {
|
||||||
this.node.getChildByName("Reward").active = true;
|
this.node.getChildByName("Reward").active = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
clickShop() {
|
clickShop() {
|
||||||
|
@ -542,6 +597,7 @@ export default class JiaZai extends cc.Component {
|
||||||
|
|
||||||
closeReward() {
|
closeReward() {
|
||||||
this.node.getChildByName("Reward").active = false;
|
this.node.getChildByName("Reward").active = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
openStamina() {
|
openStamina() {
|
||||||
|
@ -674,5 +730,121 @@ export default class JiaZai extends cc.Component {
|
||||||
this.setHealthInfo(true);
|
this.setHealthInfo(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//月卡
|
||||||
|
//打开界面
|
||||||
|
openMonthCard() {
|
||||||
|
this.monthCard.active = true;
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
this.monthCardBtn.active = true;
|
||||||
|
this.monthCardBtn2.active = false;
|
||||||
|
} else {
|
||||||
|
this.monthCardBtn.active = false;
|
||||||
|
this.monthCardBtn2.active = true;
|
||||||
|
NumberToImage.numberToImageNodes(25, 35, 20, "month_", this.monthCardTime, true);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
//关闭界面
|
||||||
|
closeMonthCard() {
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
this.monthCardBtn.active = true;
|
||||||
|
this.monthCardBtn2.active = false;
|
||||||
|
} else {
|
||||||
|
this.monthCardBtn.active = false;
|
||||||
|
this.monthCardBtn2.active = true;
|
||||||
|
NumberToImage.numberToImageNodes(25, 35, 20, "month_", this.monthCardTime, true);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.monthCard.active = false;
|
||||||
|
this.rewarded();
|
||||||
|
|
||||||
|
}
|
||||||
|
//购买月卡
|
||||||
|
buyMonthCard() {
|
||||||
|
Utils.setMonthlyCard(0, (data) => {
|
||||||
|
console.log("购买月卡'✅ ", data.code);
|
||||||
|
if (data.code == 1) {
|
||||||
|
let rewardData = [
|
||||||
|
{ type: "coin", count: 6000 },
|
||||||
|
]
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 7;
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp = 7;
|
||||||
|
cc.fx.GameTool.changeCoin(6000);
|
||||||
|
setTimeout(() => {
|
||||||
|
this.updateCoin();
|
||||||
|
this.setHealthInfo(false);
|
||||||
|
this.startTimeCutDown();
|
||||||
|
this.openRewardWindow(rewardData, 1);
|
||||||
|
}, 300);
|
||||||
|
cc.fx.GameTool.setUserHealth(0, (data) => {
|
||||||
|
cc.fx.GameTool.getHealth(null);
|
||||||
|
})
|
||||||
|
this.monthCardBtn.active = false;
|
||||||
|
this.monthCardBtn2.active = true;
|
||||||
|
NumberToImage.numberToImageNodes(25, 35, 20, "month_", this.monthCardTime, true);
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
rewarded() {
|
||||||
|
Utils.monthGetReward((data) => {
|
||||||
|
if (data.data == null) {
|
||||||
|
console.log("到期");
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 5;
|
||||||
|
//如果体力大于5,设置为5,小于5,设置为体力值
|
||||||
|
if (cc.fx.GameConfig.GM_INFO.hp >= 5) {
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp = 5;
|
||||||
|
}
|
||||||
|
this.updateCoin();
|
||||||
|
this.setHealthInfo(false);
|
||||||
|
this.startTimeCutDown();
|
||||||
|
cc.fx.GameTool.setUserHealth(0, (data) => {
|
||||||
|
cc.fx.GameTool.getHealth(null);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
if (data.data != null && data.code == 0) {
|
||||||
|
console.log("未到期已领取");
|
||||||
|
}
|
||||||
|
if (data.code == 1) {
|
||||||
|
cc.fx.GameTool.changeCoin(500);
|
||||||
|
this.updateCoin();
|
||||||
|
|
||||||
|
let rewardData = [
|
||||||
|
{ type: "coin", count: 500 },
|
||||||
|
]
|
||||||
|
setTimeout(() => {
|
||||||
|
this.openRewardWindow(rewardData);
|
||||||
|
}, 500);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
//缓存弹窗
|
||||||
|
monthH() {
|
||||||
|
//如果没有充值月卡,每天弹一次月卡弹窗用缓存实现
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
let date = new Date();
|
||||||
|
let day = date.getDate(); // 当前日期(1-31)
|
||||||
|
let month = date.getMonth() + 1; // 当前月份(1-12)
|
||||||
|
let year = date.getFullYear(); // 当前年份
|
||||||
|
let dateStr = `${year}-${String(month).padStart(2, '0')}-${String(day).padStart(2, '0')}`; // 格式化为 YYYY-MM-DD
|
||||||
|
// 从缓存中获取上次弹窗的日期
|
||||||
|
let cachedDateStr = cc.fx.StorageMessage.getStorage("monthlyCardDate");
|
||||||
|
// 如果缓存中的日期和当前日期不一致
|
||||||
|
if (cachedDateStr !== dateStr) {
|
||||||
|
// 更新缓存
|
||||||
|
cc.fx.StorageMessage.setStorage("monthlyCardDate", dateStr);
|
||||||
|
this.openMonthCard();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// update (dt) {}
|
// update (dt) {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,10 @@ export default class SceneManager extends cc.Component {
|
||||||
private static cachedRewardPrefab: cc.Prefab | null = null;
|
private static cachedRewardPrefab: cc.Prefab | null = null;
|
||||||
// 缓存 reward 奖励窗口 节点
|
// 缓存 reward 奖励窗口 节点
|
||||||
private RewardNode: cc.Node | null = null;
|
private RewardNode: cc.Node | null = null;
|
||||||
|
//缓存月卡
|
||||||
|
private static cachedMonthlyCardPrefab: cc.Prefab | null = null;
|
||||||
|
// 缓存月卡节点
|
||||||
|
private monthlyCardNode: cc.Node | null = null;
|
||||||
|
|
||||||
@property(cc.Label)
|
@property(cc.Label)
|
||||||
label: cc.Label = null;
|
label: cc.Label = null;
|
||||||
|
@ -96,6 +100,13 @@ export default class SceneManager extends cc.Component {
|
||||||
}
|
}
|
||||||
SceneManager.cachedRewardPrefab = prefab;
|
SceneManager.cachedRewardPrefab = prefab;
|
||||||
});
|
});
|
||||||
|
bundle.load('prefab/monthlyCard', cc.Prefab, (err: Error, prefab: cc.Prefab) => {
|
||||||
|
if (err) {
|
||||||
|
cc.error(err.message || err);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
SceneManager.cachedMonthlyCardPrefab = prefab;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -356,6 +367,25 @@ export default class SceneManager extends cc.Component {
|
||||||
}
|
}
|
||||||
// console.log("shopNode parent:", this.shopNode.parent);
|
// console.log("shopNode parent:", this.shopNode.parent);
|
||||||
}
|
}
|
||||||
|
//打开月卡
|
||||||
|
openMonthlyCard() {
|
||||||
|
if (!SceneManager.cachedMonthlyCardPrefab) {
|
||||||
|
cc.error('MonthlyCard prefab is not loaded yet.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!this.monthlyCardNode) {
|
||||||
|
// 第一次使用,创建节点
|
||||||
|
this.monthlyCardNode = cc.instantiate(SceneManager.cachedMonthlyCardPrefab);
|
||||||
|
this.node.addChild(this.monthlyCardNode);
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").init();
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").juwai = false;
|
||||||
|
} else {
|
||||||
|
// 非第一次使用,直接激活节点
|
||||||
|
this.monthlyCardNode.active = true;
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").init();
|
||||||
|
this.monthlyCardNode.getComponent("monthlyCard").juwai = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
updateCoin() {
|
updateCoin() {
|
||||||
MapConroler._instance.updateCoin();
|
MapConroler._instance.updateCoin();
|
||||||
|
|
|
@ -76,7 +76,7 @@ export default class NewClass extends cc.Component {
|
||||||
num: -1000
|
num: -1000
|
||||||
}
|
}
|
||||||
cc.fx.GameTool.shushu_Track("resource_cost", data);
|
cc.fx.GameTool.shushu_Track("resource_cost", data);
|
||||||
cc.fx.GameConfig.GM_INFO.hp = 5;
|
cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max;
|
||||||
const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
|
const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
|
||||||
if (parentNode) {
|
if (parentNode) {
|
||||||
const jiazaiComp = parentNode.getComponent(JiaZai);
|
const jiazaiComp = parentNode.getComponent(JiaZai);
|
||||||
|
|
|
@ -816,7 +816,84 @@ export default class Utils {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//获得monthlyCard信息 少用
|
||||||
|
static monthGetReward(callBack) {
|
||||||
|
if (typeof wx !== 'undefined' && wx !== null) {
|
||||||
|
let uid = cc.fx.StorageMessage.getStorage("uid");
|
||||||
|
//旧的读取数据设置数据方法,以强联网为主
|
||||||
|
if (uid != undefined && uid != "" && uid != null) {
|
||||||
|
cc.fx.GameConfig.GM_INFO.uid = uid;
|
||||||
|
}
|
||||||
|
let setData = {
|
||||||
|
uid: cc.fx.GameConfig.GM_INFO.uid,
|
||||||
|
}
|
||||||
|
Utils.POST("monthGetReward", setData, res => {
|
||||||
|
// console.log("获得monthGetReward数据:", res);
|
||||||
|
if (res.code === 1) {
|
||||||
|
console.log("服务器:领取获得monthGetReward成功'✅ ", res);
|
||||||
|
if (callBack) callBack(res);
|
||||||
|
} else {
|
||||||
|
console.log("服务器:获得monthGetReward失败'❌ ", res);
|
||||||
|
if (callBack) callBack(res);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static getMonthlyCard(callBack) {
|
||||||
|
if (typeof wx !== 'undefined' && wx !== null) {
|
||||||
|
let uid = cc.fx.StorageMessage.getStorage("uid");
|
||||||
|
// console.log("获取monthlyCard信息:", uid, monthCardTime);
|
||||||
|
//旧的读取数据设置数据方法,以强联网为主
|
||||||
|
if (uid != undefined && uid != "" && uid != null) {
|
||||||
|
cc.fx.GameConfig.GM_INFO.uid = uid;
|
||||||
|
}
|
||||||
|
let setData = {
|
||||||
|
uid: cc.fx.GameConfig.GM_INFO.uid,
|
||||||
|
action: 'read',
|
||||||
|
}
|
||||||
|
|
||||||
|
Utils.POST("monthlyCard", setData, res => {
|
||||||
|
// console.log("获得monthlyCard数据:", res);
|
||||||
|
if (res.code === 1) {
|
||||||
|
console.log("服务器:获取monthlyCard成功'✅ ", res);
|
||||||
|
if (callBack) callBack(res);
|
||||||
|
} else {
|
||||||
|
console.log("服务器:获取monthlyCard失败'❌ ", res);
|
||||||
|
if (callBack) callBack(res);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//上传monthlyCard信息
|
||||||
|
static setMonthlyCard(monthCardTime, callBack) {
|
||||||
|
if (typeof wx !== 'undefined' && wx !== null) {
|
||||||
|
let uid = cc.fx.StorageMessage.getStorage("uid");
|
||||||
|
// console.log("上传monthlyCard信息:", uid, monthCardTime);
|
||||||
|
//旧的读取数据设置数据方法,以强联网为主
|
||||||
|
if (uid != undefined && uid != "" && uid != null) {
|
||||||
|
cc.fx.GameConfig.GM_INFO.uid = uid;
|
||||||
|
}
|
||||||
|
let setData = {
|
||||||
|
uid: cc.fx.GameConfig.GM_INFO.uid,
|
||||||
|
action: 'save',
|
||||||
|
monthCardTime: monthCardTime,
|
||||||
|
}
|
||||||
|
|
||||||
|
Utils.POST("monthlyCard", setData, res => {
|
||||||
|
// console.log("获得monthlyCard数据:", res);
|
||||||
|
if (res.code === 1) {
|
||||||
|
console.log("服务器:上传monthlyCard成功'✅ ", res);
|
||||||
|
if (callBack) callBack(res);
|
||||||
|
} else {
|
||||||
|
console.log("服务器:上传monthlyCard失败'❌ ", res);
|
||||||
|
if (callBack) callBack(res);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
// const propName={
|
// const propName={
|
||||||
// gold_1: "金币包1",
|
// gold_1: "金币包1",
|
||||||
// gold_2: "金币包2",
|
// gold_2: "金币包2",
|
||||||
|
|
|
@ -523,11 +523,11 @@ var GameTool = {
|
||||||
getHealth(callback: Function) {
|
getHealth(callback: Function) {
|
||||||
let health = cc.fx.StorageMessage.getStorage("health");
|
let health = cc.fx.StorageMessage.getStorage("health");
|
||||||
const timestamp = Date.now();
|
const timestamp = Date.now();
|
||||||
cc.fx.GameConfig.GM_INFO.hp = 5;
|
cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max;
|
||||||
//没有存储过体力值
|
//没有存储过体力值
|
||||||
if (health == null || health == undefined || health == "") {
|
if (health == null || health == undefined || health == "") {
|
||||||
console.log("没存储过体力值,初进");
|
console.log("没存储过体力值,初进");
|
||||||
cc.fx.GameConfig.GM_INFO.hp = 5;
|
cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max;
|
||||||
cc.fx.GameTool.getUserHealth((data) => {
|
cc.fx.GameTool.getUserHealth((data) => {
|
||||||
console.log("体力接口返回结果", data);
|
console.log("体力接口返回结果", data);
|
||||||
if (data.result.code == 200) {
|
if (data.result.code == 200) {
|
||||||
|
@ -564,12 +564,12 @@ var GameTool = {
|
||||||
if (callback) callback();
|
if (callback) callback();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else if (health.health < 5) {
|
else if (health.health < cc.fx.GameConfig.GM_INFO.hp_Max) {
|
||||||
// 30分钟的毫秒数
|
// 30分钟的毫秒数
|
||||||
const thirtyMinutes = 30 * 60 * 1000;
|
const thirtyMinutes = 30 * 60 * 1000;
|
||||||
const elapsedTime = timestamp - health.timestamp;
|
const elapsedTime = timestamp - health.timestamp;
|
||||||
// 计算恢复的体力值
|
// 计算恢复的体力值
|
||||||
const recoveredHealth = Math.min(5 - health.health, Math.floor(elapsedTime / thirtyMinutes));
|
const recoveredHealth = Math.min(cc.fx.GameConfig.GM_INFO.hp_Max - health.health, Math.floor(elapsedTime / thirtyMinutes));
|
||||||
if (recoveredHealth > 0) {
|
if (recoveredHealth > 0) {
|
||||||
health.health += recoveredHealth;
|
health.health += recoveredHealth;
|
||||||
cc.fx.GameTool.setUserHealth(recoveredHealth, () => {
|
cc.fx.GameTool.setUserHealth(recoveredHealth, () => {
|
||||||
|
@ -633,7 +633,7 @@ var GameTool = {
|
||||||
}
|
}
|
||||||
|
|
||||||
//如果消耗之前不是满体力,说明已经在恢复期,并不用修改时间
|
//如果消耗之前不是满体力,说明已经在恢复期,并不用修改时间
|
||||||
if (health < 0 && cc.fx.GameConfig.GM_INFO.hp != 4) {
|
if (health < 0 && cc.fx.GameConfig.GM_INFO.hp != cc.fx.GameConfig.GM_INFO.hp_Max - 1) {
|
||||||
let oldTime = cc.fx.StorageMessage.getStorage("health").timestamp;
|
let oldTime = cc.fx.StorageMessage.getStorage("health").timestamp;
|
||||||
healthInfo = {
|
healthInfo = {
|
||||||
"health": cc.fx.GameConfig.GM_INFO.hp,
|
"health": cc.fx.GameConfig.GM_INFO.hp,
|
||||||
|
|
143
assets/Script/monthlyCard.ts
Normal file
|
@ -0,0 +1,143 @@
|
||||||
|
// Learn TypeScript:
|
||||||
|
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html
|
||||||
|
// Learn Attribute:
|
||||||
|
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html
|
||||||
|
// Learn life-cycle callbacks:
|
||||||
|
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html
|
||||||
|
|
||||||
|
import JiaZai from "./JiaZai";
|
||||||
|
import Utils from "./module/Pay/Utils";
|
||||||
|
import NumberToImage from "./NumberToImage";
|
||||||
|
import SceneManager from "./SceneManager";
|
||||||
|
|
||||||
|
const { ccclass, property } = cc._decorator;
|
||||||
|
|
||||||
|
@ccclass
|
||||||
|
export default class NewClass extends cc.Component {
|
||||||
|
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardTime: cc.Node = null;
|
||||||
|
//月卡按钮切换
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardBtn: cc.Node = null;
|
||||||
|
//月卡按钮
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardBtn2: cc.Node = null;
|
||||||
|
public juwai = false;
|
||||||
|
|
||||||
|
// LIFE-CYCLE CALLBACKS:
|
||||||
|
|
||||||
|
// onLoad () {}
|
||||||
|
|
||||||
|
start() {
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
this.monthCardBtn.active = true;
|
||||||
|
this.monthCardBtn2.active = false;
|
||||||
|
} else {
|
||||||
|
this.monthCardBtn.active = false;
|
||||||
|
this.monthCardBtn2.active = true;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
init() {
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
this.monthCardBtn.active = true;
|
||||||
|
this.monthCardBtn2.active = false;
|
||||||
|
} else {
|
||||||
|
this.monthCardBtn.active = false;
|
||||||
|
this.monthCardBtn2.active = true;
|
||||||
|
NumberToImage.numberToImageNodes(25, 35, 20, "month_", this.monthCardTime, true);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
//购买月卡
|
||||||
|
buyMonthCard() {
|
||||||
|
Utils.setMonthlyCard(0, (data) => {
|
||||||
|
console.log("购买月卡'✅ ", data.code);
|
||||||
|
if (data.code == 1) {
|
||||||
|
let rewardData = [
|
||||||
|
{ type: "coin", count: 6000 },
|
||||||
|
]
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp_Max = 7;
|
||||||
|
cc.fx.GameConfig.GM_INFO.hp = 7;
|
||||||
|
cc.fx.GameTool.changeCoin(6000);
|
||||||
|
const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
|
||||||
|
const jiazaiComp = jiazaiNode.getComponent(JiaZai);
|
||||||
|
if (jiazaiComp) {
|
||||||
|
setTimeout(() => {
|
||||||
|
jiazaiComp.setHealthInfo(false);
|
||||||
|
jiazaiComp.startTimeCutDown();
|
||||||
|
jiazaiComp.updateCoin();
|
||||||
|
}, 300);
|
||||||
|
} else {
|
||||||
|
console.log("无法获取JiaZai组件");
|
||||||
|
}
|
||||||
|
|
||||||
|
this.monthCardBtn.active = false;
|
||||||
|
this.monthCardBtn2.active = true;
|
||||||
|
this.monthCardTime.active = true;
|
||||||
|
|
||||||
|
if (this.juwai == true) {
|
||||||
|
if (jiazaiComp) {
|
||||||
|
setTimeout(() => {
|
||||||
|
jiazaiComp.openRewardWindow(rewardData, 1);
|
||||||
|
}, 300);
|
||||||
|
}
|
||||||
|
console.log("月卡奖励juwai");
|
||||||
|
} else {
|
||||||
|
// 尝试获取SceneManager组件
|
||||||
|
const jiazaiComp1 = jiazaiNode.getComponent(SceneManager);
|
||||||
|
if (jiazaiComp1) {
|
||||||
|
setTimeout(() => {
|
||||||
|
jiazaiComp1.updateCoin();
|
||||||
|
// 确保openRewardWindow方法存在
|
||||||
|
if (typeof jiazaiComp1.openRewardWindow === 'function') {
|
||||||
|
jiazaiComp1.openRewardWindow(rewardData);
|
||||||
|
} else {
|
||||||
|
console.error("SceneManager组件中没有openRewardWindow方法");
|
||||||
|
// 尝试使用JiaZai组件的openRewardWindow方法作为备选
|
||||||
|
const jiazaiComp2 = jiazaiNode.getComponent(JiaZai);
|
||||||
|
if (jiazaiComp2 && typeof jiazaiComp2.openRewardWindow === 'function') {
|
||||||
|
jiazaiComp2.openRewardWindow(rewardData);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 300);
|
||||||
|
console.log("月卡奖励junei");
|
||||||
|
} else {
|
||||||
|
console.log("无法获取SceneManager组件,尝试获取JiaZai组件");
|
||||||
|
// 尝试获取JiaZai组件作为备选
|
||||||
|
const jiazaiComp2 = jiazaiNode.getComponent(JiaZai);
|
||||||
|
if (jiazaiComp2) {
|
||||||
|
setTimeout(() => {
|
||||||
|
jiazaiComp2.updateCoin();
|
||||||
|
jiazaiComp2.openRewardWindow(rewardData);
|
||||||
|
}, 300);
|
||||||
|
} else {
|
||||||
|
console.error("无法获取JiaZai组件和SceneManager组件");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cc.fx.GameTool.setUserHealth(0, (data) => {
|
||||||
|
cc.fx.GameTool.getHealth(null);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// update (dt) {}
|
||||||
|
}
|
||||||
|
closeMonthCard() {
|
||||||
|
this.init();
|
||||||
|
//获取商城界面更新图标方法
|
||||||
|
let shop = cc.find("Canvas/shop");
|
||||||
|
if (shop) {
|
||||||
|
let shopComp = shop.getComponent("shop");
|
||||||
|
if (shopComp) {
|
||||||
|
shopComp.updateIcon();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.node.active = false;
|
||||||
|
}
|
||||||
|
}
|
10
assets/Script/monthlyCard.ts.meta
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"uuid": "191eda8d-68a7-4fb4-9880-e3f712b01d4d",
|
||||||
|
"importer": "typescript",
|
||||||
|
"isPlugin": false,
|
||||||
|
"loadPluginInWeb": true,
|
||||||
|
"loadPluginInNative": true,
|
||||||
|
"loadPluginInEditor": false,
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
|
@ -4,8 +4,8 @@
|
||||||
"importer": "asset",
|
"importer": "asset",
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"size": {
|
"size": {
|
||||||
"width": 1002,
|
"width": 971,
|
||||||
"height": 1203
|
"height": 1222
|
||||||
},
|
},
|
||||||
"type": "Texture Packer",
|
"type": "Texture Packer",
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
|
@ -16,11 +16,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 920,
|
"trimX": 830,
|
||||||
"trimY": 1065,
|
"trimY": 1158,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -42,8 +42,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 435,
|
"trimX": 413,
|
||||||
"trimY": 777,
|
"trimY": 801,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -65,8 +65,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 432,
|
"trimX": 48,
|
||||||
"trimY": 95,
|
"trimY": 826,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -85,11 +85,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 935,
|
"trimX": 547,
|
||||||
"trimY": 678,
|
"trimY": 1167,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -108,11 +108,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 675,
|
"trimX": 432,
|
||||||
"trimY": 388,
|
"trimY": 378,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -131,11 +131,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 64,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 403,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -157,8 +157,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 49,
|
"trimX": 679,
|
||||||
"trimY": 1022,
|
"trimY": 142,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -177,11 +177,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 49,
|
"trimX": 417,
|
||||||
"trimY": 777,
|
"trimY": 425,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -200,11 +200,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 111,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 450,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -223,11 +223,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 488,
|
"trimX": 662,
|
||||||
"trimY": 1024,
|
"trimY": 425,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -246,11 +246,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 440,
|
"trimX": 445,
|
||||||
"trimY": 388,
|
"trimY": 48,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -272,8 +272,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 445,
|
||||||
"trimY": 72,
|
"trimY": 1,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -295,8 +295,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 813,
|
"trimX": 726,
|
||||||
"trimY": 847,
|
"trimY": 251,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -315,11 +315,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 96,
|
"trimX": 415,
|
||||||
"trimY": 769,
|
"trimY": 472,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -338,11 +338,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 158,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 497,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -361,11 +361,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 535,
|
"trimX": 307,
|
||||||
"trimY": 1024,
|
"trimY": 995,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -387,12 +387,12 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 432,
|
"trimX": 48,
|
||||||
"trimY": 206,
|
"trimY": 1008,
|
||||||
"width": 61,
|
"width": 47,
|
||||||
"height": 266,
|
"height": 247,
|
||||||
"rawWidth": 61,
|
"rawWidth": 47,
|
||||||
"rawHeight": 266,
|
"rawHeight": 247,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
|
@ -412,10 +412,10 @@
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1,
|
"trimX": 1,
|
||||||
"trimY": 389,
|
"trimY": 389,
|
||||||
"width": 61,
|
"width": 47,
|
||||||
"height": 386,
|
"height": 367,
|
||||||
"rawWidth": 61,
|
"rawWidth": 47,
|
||||||
"rawHeight": 386,
|
"rawHeight": 367,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
|
@ -430,11 +430,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 815,
|
"trimX": 910,
|
||||||
"trimY": 894,
|
"trimY": 495,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -456,8 +456,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 143,
|
"trimX": 415,
|
||||||
"trimY": 767,
|
"trimY": 519,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -476,11 +476,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 205,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 544,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -499,11 +499,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 956,
|
"trimX": 297,
|
||||||
"trimY": 127,
|
"trimY": 1042,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -522,11 +522,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 487,
|
"trimX": 48,
|
||||||
"trimY": 388,
|
"trimY": 1105,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -545,11 +545,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 445,
|
"trimX": 1,
|
||||||
"trimY": 1,
|
"trimY": 758,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -571,8 +571,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 826,
|
"trimX": 910,
|
||||||
"trimY": 941,
|
"trimY": 619,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -594,8 +594,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 143,
|
"trimX": 415,
|
||||||
"trimY": 814,
|
"trimY": 566,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -614,11 +614,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 252,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 591,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -640,8 +640,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 831,
|
"trimX": 296,
|
||||||
"trimY": 265,
|
"trimY": 1089,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -660,11 +660,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 534,
|
"trimX": 433,
|
||||||
"trimY": 388,
|
"trimY": 95,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -687,7 +687,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 65,
|
||||||
"trimY": 119,
|
"trimY": 120,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -709,8 +709,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 826,
|
"trimX": 822,
|
||||||
"trimY": 1065,
|
"trimY": 739,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -732,8 +732,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 143,
|
"trimX": 415,
|
||||||
"trimY": 861,
|
"trimY": 613,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -752,11 +752,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 299,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 638,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -778,8 +778,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 722,
|
"trimX": 295,
|
||||||
"trimY": 621,
|
"trimY": 1136,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -798,11 +798,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 581,
|
"trimX": 432,
|
||||||
"trimY": 388,
|
"trimY": 142,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -825,7 +825,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 65,
|
||||||
"trimY": 166,
|
"trimY": 167,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -847,8 +847,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 873,
|
"trimX": 869,
|
||||||
"trimY": 941,
|
"trimY": 743,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -870,8 +870,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 143,
|
"trimX": 415,
|
||||||
"trimY": 908,
|
"trimY": 660,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -890,11 +890,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 346,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 685,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -916,8 +916,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 224,
|
"trimX": 422,
|
||||||
"trimY": 1138,
|
"trimY": 1112,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -936,11 +936,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 628,
|
"trimX": 432,
|
||||||
"trimY": 388,
|
"trimY": 189,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -963,7 +963,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 65,
|
||||||
"trimY": 213,
|
"trimY": 214,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -982,11 +982,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 691,
|
"trimX": 801,
|
||||||
"trimY": 912,
|
"trimY": 298,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -1008,8 +1008,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 440,
|
"trimX": 432,
|
||||||
"trimY": 635,
|
"trimY": 283,
|
||||||
"width": 244,
|
"width": 244,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 244,
|
"rawWidth": 244,
|
||||||
|
@ -1032,7 +1032,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 65,
|
||||||
"trimY": 260,
|
"trimY": 261,
|
||||||
"width": 364,
|
"width": 364,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 364,
|
"rawWidth": 364,
|
||||||
|
@ -1051,11 +1051,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 948,
|
"trimX": 660,
|
||||||
"trimY": 1,
|
"trimY": 744,
|
||||||
"width": 46,
|
"width": 46,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 46,
|
"rawWidth": 46,
|
||||||
|
@ -1077,8 +1077,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 432,
|
"trimX": 48,
|
||||||
"trimY": 340,
|
"trimY": 1057,
|
||||||
"width": 46,
|
"width": 46,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 46,
|
"rawWidth": 46,
|
||||||
|
@ -1097,11 +1097,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1,
|
"trimX": 65,
|
||||||
"trimY": 777,
|
"trimY": 72,
|
||||||
"width": 46,
|
"width": 46,
|
||||||
"height": 366,
|
"height": 366,
|
||||||
"rawWidth": 46,
|
"rawWidth": 46,
|
||||||
|
@ -1123,8 +1123,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 873,
|
"trimX": 916,
|
||||||
"trimY": 1065,
|
"trimY": 743,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -1146,8 +1146,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 143,
|
"trimX": 415,
|
||||||
"trimY": 955,
|
"trimY": 707,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -1166,11 +1166,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 393,
|
"trimX": 50,
|
||||||
"trimY": 402,
|
"trimY": 732,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -1192,8 +1192,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 350,
|
"trimX": 421,
|
||||||
"trimY": 1152,
|
"trimY": 1159,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -1215,8 +1215,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 440,
|
"trimX": 432,
|
||||||
"trimY": 683,
|
"trimY": 236,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -1239,7 +1239,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 65,
|
||||||
"trimY": 308,
|
"trimY": 309,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -1258,11 +1258,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 920,
|
"trimX": 830,
|
||||||
"trimY": 941,
|
"trimY": 1111,
|
||||||
"width": 122,
|
"width": 122,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 122,
|
"rawWidth": 122,
|
||||||
|
@ -1281,11 +1281,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 388,
|
"trimX": 415,
|
||||||
"trimY": 767,
|
"trimY": 754,
|
||||||
"width": 243,
|
"width": 243,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 243,
|
"rawWidth": 243,
|
||||||
|
@ -1307,8 +1307,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 445,
|
"trimX": 48,
|
||||||
"trimY": 48,
|
"trimY": 779,
|
||||||
"width": 363,
|
"width": 363,
|
||||||
"height": 45,
|
"height": 45,
|
||||||
"rawWidth": 363,
|
"rawWidth": 363,
|
||||||
|
@ -1330,8 +1330,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 809,
|
"trimX": 548,
|
||||||
"trimY": 678,
|
"trimY": 1120,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 124,
|
"height": 124,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -1353,8 +1353,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 440,
|
"trimX": 432,
|
||||||
"trimY": 730,
|
"trimY": 331,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 245,
|
"height": 245,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -1377,7 +1377,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 65,
|
"trimX": 65,
|
||||||
"trimY": 355,
|
"trimY": 356,
|
||||||
"width": 45,
|
"width": 45,
|
||||||
"height": 365,
|
"height": 365,
|
||||||
"rawWidth": 45,
|
"rawWidth": 45,
|
||||||
|
@ -1399,8 +1399,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 691,
|
"trimX": 1,
|
||||||
"trimY": 278,
|
"trimY": 1152,
|
||||||
"width": 138,
|
"width": 138,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 138,
|
"rawWidth": 138,
|
||||||
|
@ -1422,8 +1422,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 432,
|
"trimX": 48,
|
||||||
"trimY": 269,
|
"trimY": 937,
|
||||||
"width": 257,
|
"width": 257,
|
||||||
"height": 69,
|
"height": 69,
|
||||||
"rawWidth": 257,
|
"rawWidth": 257,
|
||||||
|
@ -1468,8 +1468,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 582,
|
"trimX": 316,
|
||||||
"trimY": 960,
|
"trimY": 873,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1491,8 +1491,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 813,
|
"trimX": 830,
|
||||||
"trimY": 725,
|
"trimY": 989,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1514,8 +1514,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 582,
|
"trimX": 726,
|
||||||
"trimY": 1082,
|
"trimY": 129,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1537,8 +1537,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 850,
|
"trimX": 848,
|
||||||
"trimY": 312,
|
"trimY": 129,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1561,7 +1561,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 850,
|
"trimX": 850,
|
||||||
"trimY": 434,
|
"trimY": 251,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1583,8 +1583,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 850,
|
"trimX": 679,
|
||||||
"trimY": 556,
|
"trimY": 298,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1606,8 +1606,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 687,
|
"trimX": 849,
|
||||||
"trimY": 668,
|
"trimY": 373,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1629,8 +1629,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 691,
|
"trimX": 788,
|
||||||
"trimY": 790,
|
"trimY": 495,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1652,8 +1652,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 704,
|
"trimX": 788,
|
||||||
"trimY": 960,
|
"trimY": 617,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1675,8 +1675,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 704,
|
"trimX": 830,
|
||||||
"trimY": 1082,
|
"trimY": 867,
|
||||||
"width": 120,
|
"width": 120,
|
||||||
"height": 120,
|
"height": 120,
|
||||||
"rawWidth": 120,
|
"rawWidth": 120,
|
||||||
|
@ -1695,11 +1695,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 435,
|
"trimX": 812,
|
||||||
"trimY": 824,
|
"trimY": 1,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1718,11 +1718,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 352,
|
"trimX": 702,
|
||||||
"trimY": 1024,
|
"trimY": 1064,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1744,8 +1744,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 563,
|
"trimX": 438,
|
||||||
"trimY": 824,
|
"trimY": 848,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1767,8 +1767,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 700,
|
"trimX": 566,
|
||||||
"trimY": 142,
|
"trimY": 848,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1787,11 +1787,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": false,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 722,
|
"trimX": 438,
|
||||||
"trimY": 349,
|
"trimY": 984,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1813,8 +1813,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 722,
|
"trimX": 574,
|
||||||
"trimY": 485,
|
"trimY": 984,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1833,11 +1833,11 @@
|
||||||
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
"rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f",
|
||||||
"trimType": "auto",
|
"trimType": "auto",
|
||||||
"trimThreshold": 1,
|
"trimThreshold": 1,
|
||||||
"rotated": true,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 812,
|
"trimX": 660,
|
||||||
"trimY": 1,
|
"trimY": 472,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1859,8 +1859,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 828,
|
"trimX": 660,
|
||||||
"trimY": 129,
|
"trimY": 608,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1882,8 +1882,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 96,
|
"trimX": 694,
|
||||||
"trimY": 1014,
|
"trimY": 792,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1905,8 +1905,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 224,
|
"trimX": 702,
|
||||||
"trimY": 1002,
|
"trimY": 928,
|
||||||
"width": 126,
|
"width": 126,
|
||||||
"height": 134,
|
"height": 134,
|
||||||
"rawWidth": 126,
|
"rawWidth": 126,
|
||||||
|
@ -1928,8 +1928,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 435,
|
"trimX": 141,
|
||||||
"trimY": 960,
|
"trimY": 1152,
|
||||||
"width": 62,
|
"width": 62,
|
||||||
"height": 145,
|
"height": 145,
|
||||||
"rawWidth": 62,
|
"rawWidth": 62,
|
||||||
|
@ -1951,8 +1951,8 @@
|
||||||
"rotated": true,
|
"rotated": true,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 432,
|
"trimX": 48,
|
||||||
"trimY": 142,
|
"trimY": 873,
|
||||||
"width": 62,
|
"width": 62,
|
||||||
"height": 266,
|
"height": 266,
|
||||||
"rawWidth": 62,
|
"rawWidth": 62,
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 1002,
|
"width": 971,
|
||||||
"height": 1203,
|
"height": 1222,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
}
|
}
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 225 KiB |
BIN
assets/shop/img/ditu.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
38
assets/shop/img/ditu.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"ver": "2.3.7",
|
||||||
|
"uuid": "e949bfab-45c2-4e15-a2bf-afc4b26d9cb2",
|
||||||
|
"importer": "texture",
|
||||||
|
"type": "sprite",
|
||||||
|
"wrapMode": "clamp",
|
||||||
|
"filterMode": "bilinear",
|
||||||
|
"premultiplyAlpha": false,
|
||||||
|
"genMipmaps": false,
|
||||||
|
"packable": true,
|
||||||
|
"width": 1080,
|
||||||
|
"height": 2340,
|
||||||
|
"platformSettings": {},
|
||||||
|
"subMetas": {
|
||||||
|
"ditu": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "50e5fcf9-a6c3-43d1-8930-6f8c6b85ff92",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "e949bfab-45c2-4e15-a2bf-afc4b26d9cb2",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 1080,
|
||||||
|
"height": 2340,
|
||||||
|
"rawWidth": 1080,
|
||||||
|
"rawHeight": 2340,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -15,7 +15,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{0,0},{47,63}}</string>
|
<string>{{0,984},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{47,0},{47,63}}</string>
|
<string>{{0,1047},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{470,0},{47,63}}</string>
|
<string>{{0,1614},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{94,0},{47,63}}</string>
|
<string>{{0,1110},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -75,7 +75,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{141,0},{47,63}}</string>
|
<string>{{0,1173},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -90,7 +90,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{188,0},{47,63}}</string>
|
<string>{{0,1236},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -105,7 +105,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{235,0},{47,63}}</string>
|
<string>{{0,1299},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{282,0},{47,63}}</string>
|
<string>{{0,1362},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -135,7 +135,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{329,0},{47,63}}</string>
|
<string>{{0,1425},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -150,7 +150,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{376,0},{47,63}}</string>
|
<string>{{0,1488},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -165,7 +165,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,63}</string>
|
<string>{47,63}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{423,0},{47,63}}</string>
|
<string>{{0,1551},{47,63}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{517,0},{43,46}}</string>
|
<string>{{0,64},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -195,7 +195,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{560,0},{43,46}}</string>
|
<string>{{0,110},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -210,7 +210,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{47,42}</string>
|
<string>{47,42}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{947,0},{47,42}}</string>
|
<string>{{0,22},{47,42}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -225,7 +225,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{603,0},{43,46}}</string>
|
<string>{{0,156},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -240,7 +240,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{646,0},{43,46}}</string>
|
<string>{{0,202},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -255,7 +255,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{689,0},{43,46}}</string>
|
<string>{{0,248},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -270,7 +270,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{732,0},{43,46}}</string>
|
<string>{{0,294},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -285,7 +285,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{775,0},{43,46}}</string>
|
<string>{{0,340},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -300,7 +300,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{818,0},{43,46}}</string>
|
<string>{{0,386},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -315,7 +315,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{861,0},{43,46}}</string>
|
<string>{{0,432},{43,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -330,7 +330,157 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{43,46}</string>
|
<string>{43,46}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{904,0},{43,46}}</string>
|
<string>{{0,478},{43,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_0.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,524},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_1.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,570},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_2.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,616},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_3.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,662},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_4.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,708},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_5.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,754},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_6.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,800},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_7.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,846},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_8.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,892},{40,46}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>month_9.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{40,46}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,938},{40,46}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -345,7 +495,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{22,22}</string>
|
<string>{22,22}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{994,0},{22,22}}</string>
|
<string>{{0,0},{22,22}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -361,9 +511,9 @@
|
||||||
<key>realTextureFileName</key>
|
<key>realTextureFileName</key>
|
||||||
<string>shuzi.png</string>
|
<string>shuzi.png</string>
|
||||||
<key>size</key>
|
<key>size</key>
|
||||||
<string>{1016,63}</string>
|
<string>{47,1677}</string>
|
||||||
<key>smartupdate</key>
|
<key>smartupdate</key>
|
||||||
<string>$TexturePacker:SmartUpdate:7fc5f8409a6a30db5c2e5e1119a6a868:6d129b5295e79b77ea6b6441ca74f3c5:8dfcd9ca55e684c31f5e6d4475a4bd24$</string>
|
<string>$TexturePacker:SmartUpdate:c8aa294fd6aad81bc43849d7d33776d1:a899c2c8b38a048a17e24b5bb5be28f7:8dfcd9ca55e684c31f5e6d4475a4bd24$</string>
|
||||||
<key>textureFileName</key>
|
<key>textureFileName</key>
|
||||||
<string>shuzi.png</string>
|
<string>shuzi.png</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
"importer": "asset",
|
"importer": "asset",
|
||||||
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
"size": {
|
"size": {
|
||||||
"width": 1016,
|
"width": 47,
|
||||||
"height": 63
|
"height": 1677
|
||||||
},
|
},
|
||||||
"type": "Texture Packer",
|
"type": "Texture Packer",
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 984,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -42,8 +42,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 47,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1047,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -65,8 +65,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 470,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1614,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -88,8 +88,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 94,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1110,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -111,8 +111,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 141,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1173,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -134,8 +134,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 188,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1236,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -157,8 +157,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 235,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1299,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -180,8 +180,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 282,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1362,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -203,8 +203,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 329,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1425,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -226,8 +226,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 376,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1488,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -249,8 +249,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 423,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 1551,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -272,8 +272,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 517,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 64,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -295,8 +295,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 560,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 110,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -318,8 +318,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 947,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 22,
|
||||||
"width": 47,
|
"width": 47,
|
||||||
"height": 42,
|
"height": 42,
|
||||||
"rawWidth": 47,
|
"rawWidth": 47,
|
||||||
|
@ -341,8 +341,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 603,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 156,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -364,8 +364,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 646,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 202,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -387,8 +387,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 689,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 248,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -410,8 +410,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 732,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 294,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -433,8 +433,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 775,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 340,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -456,8 +456,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 818,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 386,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -479,8 +479,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 861,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 432,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -502,8 +502,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 904,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 478,
|
||||||
"width": 43,
|
"width": 43,
|
||||||
"height": 46,
|
"height": 46,
|
||||||
"rawWidth": 43,
|
"rawWidth": 43,
|
||||||
|
@ -515,6 +515,236 @@
|
||||||
"spriteType": "normal",
|
"spriteType": "normal",
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
},
|
},
|
||||||
|
"month_0.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "0fa187d5-7aff-4d4b-b9ac-13825fc04ebf",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 524,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_1.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "05929188-16ec-4075-8f3c-4c7817000a85",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 570,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_2.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "c48ff0dd-ea09-4c08-9755-cb10e18b12d2",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 616,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_3.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "9b662363-2e1e-4ff9-a128-7ab16695a564",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 662,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_4.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "49e6a010-61fb-4f3d-bed6-0a6a724893c8",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 708,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_5.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "1dfb7f97-065f-4e71-b737-c4b84831b927",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 754,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_6.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "b76e2346-1c35-45d2-b70d-627b422cc4c3",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 800,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_7.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "9f0a1e49-b91d-4e84-904f-915db09e59cd",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 846,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_8.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "b5ae5b82-cf8f-4f81-8a8b-9394eec7ea38",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 892,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"month_9.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "2d5c846f-8e45-4845-88a9-8a5765d031ec",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 938,
|
||||||
|
"width": 40,
|
||||||
|
"height": 46,
|
||||||
|
"rawWidth": 40,
|
||||||
|
"rawHeight": 46,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
"x.png": {
|
"x.png": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "39d7fe7c-990b-45b0-8693-88548695278b",
|
"uuid": "39d7fe7c-990b-45b0-8693-88548695278b",
|
||||||
|
@ -525,7 +755,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 994,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 22,
|
"width": 22,
|
||||||
"height": 22,
|
"height": 22,
|
||||||
|
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 36 KiB |
|
@ -8,8 +8,8 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 1016,
|
"width": 47,
|
||||||
"height": 63,
|
"height": 1677,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
}
|
}
|
|
@ -15,7 +15,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{135,38}</string>
|
<string>{135,38}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{285,0},{135,38}}</string>
|
<string>{{22,0},{135,38}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{135,38}</string>
|
<string>{135,38}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{420,0},{135,38}}</string>
|
<string>{{157,0},{135,38}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{130,38}</string>
|
<string>{130,38}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{155,0},{130,38}}</string>
|
<string>{{292,0},{130,38}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{135,38}</string>
|
<string>{135,38}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{555,0},{135,38}}</string>
|
<string>{{422,0},{135,38}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -75,7 +75,22 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{162,38}</string>
|
<string>{162,38}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{989,0},{162,38}}</string>
|
<string>{{557,0},{162,38}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>banre.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{1000,406}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{1000,406}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{492,516},{1000,406}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -90,7 +105,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{96,102}</string>
|
<string>{96,102}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{59,0},{96,102}}</string>
|
<string>{{1080,96},{96,102}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -105,7 +120,37 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{464,132}</string>
|
<string>{464,132}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{0,694},{464,132}}</string>
|
<string>{{1176,96},{464,132}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>cardm.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{123,90}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{123,90}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1385,0},{123,90}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>chakan.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{322,96}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{322,96}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1508,0},{322,96}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -120,7 +165,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{1339,0},{246,246}}</string>
|
<string>{{188,270},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -135,7 +180,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{1585,0},{246,246}}</string>
|
<string>{{434,270},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -150,7 +195,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{0,246},{246,246}}</string>
|
<string>{{680,270},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -165,7 +210,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{246,246},{246,246}}</string>
|
<string>{{926,270},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -180,7 +225,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{492,246},{246,246}}</string>
|
<string>{{1172,270},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -195,7 +240,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{738,246},{246,246}}</string>
|
<string>{{1418,270},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -210,7 +255,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{984,246},{246,246}}</string>
|
<string>{{0,516},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -225,7 +270,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{246,246}</string>
|
<string>{246,246}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{1230,246},{246,246}}</string>
|
<string>{{246,516},{246,246}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -240,7 +285,37 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{304,448}</string>
|
<string>{304,448}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{1476,246},{304,448}}</string>
|
<string>{{1492,516},{304,448}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>shengxiaozhong.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{286,42}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{286,42}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{800,0},{286,42}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>tian.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{44,40}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{44,40}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{719,0},{44,40}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -255,7 +330,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{188,207}</string>
|
<string>{188,207}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{1151,0},{188,207}}</string>
|
<string>{{0,270},{188,207}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -270,7 +345,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{1080,97}</string>
|
<string>{1080,97}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{464,694},{1080,97}}</string>
|
<string>{{0,96},{1080,97}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -285,7 +360,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{148,65}</string>
|
<string>{148,65}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{690,0},{148,65}}</string>
|
<string>{{1086,0},{148,65}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -300,7 +375,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{151,65}</string>
|
<string>{151,65}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{838,0},{151,65}}</string>
|
<string>{{1234,0},{151,65}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -319,6 +394,21 @@
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
<key>yicon.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{154,174}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{154,174}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1640,96},{154,174}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
<key>yuan.png</key>
|
<key>yuan.png</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>aliases</key>
|
<key>aliases</key>
|
||||||
|
@ -330,7 +420,7 @@
|
||||||
<key>spriteSourceSize</key>
|
<key>spriteSourceSize</key>
|
||||||
<string>{37,40}</string>
|
<string>{37,40}</string>
|
||||||
<key>textureRect</key>
|
<key>textureRect</key>
|
||||||
<string>{{22,0},{37,40}}</string>
|
<string>{{763,0},{37,40}}</string>
|
||||||
<key>textureRotated</key>
|
<key>textureRotated</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -346,9 +436,9 @@
|
||||||
<key>realTextureFileName</key>
|
<key>realTextureFileName</key>
|
||||||
<string>texture_atlas-1.png</string>
|
<string>texture_atlas-1.png</string>
|
||||||
<key>size</key>
|
<key>size</key>
|
||||||
<string>{1831,826}</string>
|
<string>{1830,964}</string>
|
||||||
<key>smartupdate</key>
|
<key>smartupdate</key>
|
||||||
<string>$TexturePacker:SmartUpdate:e0bad28c4bea660ba5d4e0058ef1eda6:15980586016e2ee5f049534baa0cb64a:7574d8513b69ec3112d43152279b5c18$</string>
|
<string>$TexturePacker:SmartUpdate:922b75cadd6e1a6365b192ddd2ada1b0:20640123229c1eef91916ad6809a7ed2:7574d8513b69ec3112d43152279b5c18$</string>
|
||||||
<key>textureFileName</key>
|
<key>textureFileName</key>
|
||||||
<string>texture_atlas-1.png</string>
|
<string>texture_atlas-1.png</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
"importer": "asset",
|
"importer": "asset",
|
||||||
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
"size": {
|
"size": {
|
||||||
"width": 1831,
|
"width": 1830,
|
||||||
"height": 826
|
"height": 964
|
||||||
},
|
},
|
||||||
"type": "Texture Packer",
|
"type": "Texture Packer",
|
||||||
"subMetas": {
|
"subMetas": {
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 285,
|
"trimX": 22,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 135,
|
"width": 135,
|
||||||
"height": 38,
|
"height": 38,
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 420,
|
"trimX": 157,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 135,
|
"width": 135,
|
||||||
"height": 38,
|
"height": 38,
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 155,
|
"trimX": 292,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 130,
|
"width": 130,
|
||||||
"height": 38,
|
"height": 38,
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 555,
|
"trimX": 422,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 135,
|
"width": 135,
|
||||||
"height": 38,
|
"height": 38,
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 989,
|
"trimX": 557,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 162,
|
"width": 162,
|
||||||
"height": 38,
|
"height": 38,
|
||||||
|
@ -124,6 +124,29 @@
|
||||||
"spriteType": "normal",
|
"spriteType": "normal",
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
},
|
},
|
||||||
|
"banre.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "295fa69f-086d-4229-8dcd-446292dc31b0",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 492,
|
||||||
|
"trimY": 516,
|
||||||
|
"width": 1000,
|
||||||
|
"height": 406,
|
||||||
|
"rawWidth": 1000,
|
||||||
|
"rawHeight": 406,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
"btn1.png": {
|
"btn1.png": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "225f5c55-2992-4244-88ee-d6186f8099ec",
|
"uuid": "225f5c55-2992-4244-88ee-d6186f8099ec",
|
||||||
|
@ -134,8 +157,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 59,
|
"trimX": 1080,
|
||||||
"trimY": 0,
|
"trimY": 96,
|
||||||
"width": 96,
|
"width": 96,
|
||||||
"height": 102,
|
"height": 102,
|
||||||
"rawWidth": 96,
|
"rawWidth": 96,
|
||||||
|
@ -157,8 +180,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 1176,
|
||||||
"trimY": 694,
|
"trimY": 96,
|
||||||
"width": 464,
|
"width": 464,
|
||||||
"height": 132,
|
"height": 132,
|
||||||
"rawWidth": 464,
|
"rawWidth": 464,
|
||||||
|
@ -170,6 +193,52 @@
|
||||||
"spriteType": "normal",
|
"spriteType": "normal",
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
},
|
},
|
||||||
|
"cardm.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "9ae532c7-b26d-4396-9bad-2e1916b645f0",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1385,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 123,
|
||||||
|
"height": 90,
|
||||||
|
"rawWidth": 123,
|
||||||
|
"rawHeight": 90,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"chakan.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "4ead5bf9-b54d-4ce9-b0c2-75533c58f4dc",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1508,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 322,
|
||||||
|
"height": 96,
|
||||||
|
"rawWidth": 322,
|
||||||
|
"rawHeight": 96,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
"coins1.png": {
|
"coins1.png": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "8df4862f-bc72-4038-bc80-6bec5833a561",
|
"uuid": "8df4862f-bc72-4038-bc80-6bec5833a561",
|
||||||
|
@ -180,8 +249,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1339,
|
"trimX": 188,
|
||||||
"trimY": 0,
|
"trimY": 270,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -203,8 +272,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1585,
|
"trimX": 434,
|
||||||
"trimY": 0,
|
"trimY": 270,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -226,8 +295,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 680,
|
||||||
"trimY": 246,
|
"trimY": 270,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -249,8 +318,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 246,
|
"trimX": 926,
|
||||||
"trimY": 246,
|
"trimY": 270,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -272,8 +341,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 492,
|
"trimX": 1172,
|
||||||
"trimY": 246,
|
"trimY": 270,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -295,8 +364,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 738,
|
"trimX": 1418,
|
||||||
"trimY": 246,
|
"trimY": 270,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -318,8 +387,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 984,
|
"trimX": 0,
|
||||||
"trimY": 246,
|
"trimY": 516,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -341,8 +410,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1230,
|
"trimX": 246,
|
||||||
"trimY": 246,
|
"trimY": 516,
|
||||||
"width": 246,
|
"width": 246,
|
||||||
"height": 246,
|
"height": 246,
|
||||||
"rawWidth": 246,
|
"rawWidth": 246,
|
||||||
|
@ -364,8 +433,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1476,
|
"trimX": 1492,
|
||||||
"trimY": 246,
|
"trimY": 516,
|
||||||
"width": 304,
|
"width": 304,
|
||||||
"height": 448,
|
"height": 448,
|
||||||
"rawWidth": 304,
|
"rawWidth": 304,
|
||||||
|
@ -377,6 +446,52 @@
|
||||||
"spriteType": "normal",
|
"spriteType": "normal",
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
},
|
},
|
||||||
|
"shengxiaozhong.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "af474d63-41a4-4bdd-a7f1-5666c397332a",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 800,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 286,
|
||||||
|
"height": 42,
|
||||||
|
"rawWidth": 286,
|
||||||
|
"rawHeight": 42,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"tian.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "af34206f-080e-4134-8194-452120419154",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 719,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 40,
|
||||||
|
"rawWidth": 44,
|
||||||
|
"rawHeight": 40,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
"tx.png": {
|
"tx.png": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "23f17079-7397-447a-bb56-20d95acfc987",
|
"uuid": "23f17079-7397-447a-bb56-20d95acfc987",
|
||||||
|
@ -387,8 +502,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 1151,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 270,
|
||||||
"width": 188,
|
"width": 188,
|
||||||
"height": 207,
|
"height": 207,
|
||||||
"rawWidth": 188,
|
"rawWidth": 188,
|
||||||
|
@ -410,8 +525,8 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 464,
|
"trimX": 0,
|
||||||
"trimY": 694,
|
"trimY": 96,
|
||||||
"width": 1080,
|
"width": 1080,
|
||||||
"height": 97,
|
"height": 97,
|
||||||
"rawWidth": 1080,
|
"rawWidth": 1080,
|
||||||
|
@ -433,7 +548,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 690,
|
"trimX": 1086,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 148,
|
"width": 148,
|
||||||
"height": 65,
|
"height": 65,
|
||||||
|
@ -456,7 +571,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 838,
|
"trimX": 1234,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 151,
|
"width": 151,
|
||||||
"height": 65,
|
"height": 65,
|
||||||
|
@ -492,6 +607,29 @@
|
||||||
"spriteType": "normal",
|
"spriteType": "normal",
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
},
|
},
|
||||||
|
"yicon.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "78bb2534-0f4a-425a-ba88-ee449cbb85bb",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1640,
|
||||||
|
"trimY": 96,
|
||||||
|
"width": 154,
|
||||||
|
"height": 174,
|
||||||
|
"rawWidth": 154,
|
||||||
|
"rawHeight": 174,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
"yuan.png": {
|
"yuan.png": {
|
||||||
"ver": "1.0.6",
|
"ver": "1.0.6",
|
||||||
"uuid": "0e4a6725-4caa-4023-9954-f8f059f2c5a1",
|
"uuid": "0e4a6725-4caa-4023-9954-f8f059f2c5a1",
|
||||||
|
@ -502,7 +640,7 @@
|
||||||
"rotated": false,
|
"rotated": false,
|
||||||
"offsetX": 0,
|
"offsetX": 0,
|
||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 22,
|
"trimX": 763,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 37,
|
"width": 37,
|
||||||
"height": 40,
|
"height": 40,
|
||||||
|
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 1.1 MiB |
251
assets/shop/img/yueka.plist
Normal file
|
@ -0,0 +1,251 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>frames</key>
|
||||||
|
<dict>
|
||||||
|
<key>30yuan.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{516,164}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{516,164}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1195,0},{516,164}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>cardm.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{123,90}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{123,90}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1072,0},{123,90}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>faguang.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{506,506}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{506,506}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1248,490},{506,506}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>fangkuai.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{794,210}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{794,210}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,164},{794,210}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>guanbi.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{58,58}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{58,58}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1014,0},{58,58}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>jiantou.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{248,326}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{248,326}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1114,164},{248,326}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>jinbi.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{320,320}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{320,320}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{794,164},{320,320}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>shengxiaozhong.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{286,42}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{286,42}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{728,0},{286,42}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>shengxiaozit.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{215,32}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{215,32}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{34,0},{215,32}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>shopbaner.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{1000,406}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{1000,406}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{248,490},{1000,406}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>star1.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{248,326}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{248,326}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{1362,164},{248,326}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>star2.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{248,326}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{248,326}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,490},{248,326}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>tian.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{44,40}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{44,40}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{684,0},{44,40}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>tt.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{34,30}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{34,30}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{0,0},{34,30}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>yuekazi.png</key>
|
||||||
|
<dict>
|
||||||
|
<key>aliases</key>
|
||||||
|
<array/>
|
||||||
|
<key>spriteOffset</key>
|
||||||
|
<string>{0,0}</string>
|
||||||
|
<key>spriteSize</key>
|
||||||
|
<string>{435,38}</string>
|
||||||
|
<key>spriteSourceSize</key>
|
||||||
|
<string>{435,38}</string>
|
||||||
|
<key>textureRect</key>
|
||||||
|
<string>{{249,0},{435,38}}</string>
|
||||||
|
<key>textureRotated</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>metadata</key>
|
||||||
|
<dict>
|
||||||
|
<key>format</key>
|
||||||
|
<integer>3</integer>
|
||||||
|
<key>pixelFormat</key>
|
||||||
|
<string>RGBA8888</string>
|
||||||
|
<key>premultiplyAlpha</key>
|
||||||
|
<false/>
|
||||||
|
<key>realTextureFileName</key>
|
||||||
|
<string>yueka.png</string>
|
||||||
|
<key>size</key>
|
||||||
|
<string>{1754,996}</string>
|
||||||
|
<key>smartupdate</key>
|
||||||
|
<string>$TexturePacker:SmartUpdate:be988a3fbb232978060220687567e4fb:2676f661d720583c5d093865b3e0b41d:f9d521de5bc0db19166bcf92821562f3$</string>
|
||||||
|
<key>textureFileName</key>
|
||||||
|
<string>yueka.png</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
358
assets/shop/img/yueka.plist.meta
Normal file
|
@ -0,0 +1,358 @@
|
||||||
|
{
|
||||||
|
"ver": "1.2.6",
|
||||||
|
"uuid": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc",
|
||||||
|
"importer": "asset",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"size": {
|
||||||
|
"width": 1754,
|
||||||
|
"height": 996
|
||||||
|
},
|
||||||
|
"type": "Texture Packer",
|
||||||
|
"subMetas": {
|
||||||
|
"30yuan.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "8add4fef-94e5-431a-be6c-2694ddf8a827",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1195,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 516,
|
||||||
|
"height": 164,
|
||||||
|
"rawWidth": 516,
|
||||||
|
"rawHeight": 164,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"cardm.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "a4d75412-5080-4584-ace0-87a1ed8b89af",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1072,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 123,
|
||||||
|
"height": 90,
|
||||||
|
"rawWidth": 123,
|
||||||
|
"rawHeight": 90,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"faguang.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "7e8f0c9b-9775-4dee-80c5-e42816ec45aa",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1248,
|
||||||
|
"trimY": 490,
|
||||||
|
"width": 506,
|
||||||
|
"height": 506,
|
||||||
|
"rawWidth": 506,
|
||||||
|
"rawHeight": 506,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"fangkuai.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "d79a5bee-5022-4643-a9d4-e3e8a0ed1957",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 164,
|
||||||
|
"width": 794,
|
||||||
|
"height": 210,
|
||||||
|
"rawWidth": 794,
|
||||||
|
"rawHeight": 210,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"guanbi.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "b7ae1806-b45f-4aa8-b7cc-c97fa29a85af",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1014,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 58,
|
||||||
|
"height": 58,
|
||||||
|
"rawWidth": 58,
|
||||||
|
"rawHeight": 58,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"jiantou.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "506a1673-0424-419b-804a-634729897214",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1114,
|
||||||
|
"trimY": 164,
|
||||||
|
"width": 248,
|
||||||
|
"height": 326,
|
||||||
|
"rawWidth": 248,
|
||||||
|
"rawHeight": 326,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"jinbi.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "f0ad30c5-b441-4e29-bd57-b74a4ca072a3",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 794,
|
||||||
|
"trimY": 164,
|
||||||
|
"width": 320,
|
||||||
|
"height": 320,
|
||||||
|
"rawWidth": 320,
|
||||||
|
"rawHeight": 320,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"shengxiaozhong.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "3fa8a798-dfb7-403a-93a7-a57a80e07245",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 728,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 286,
|
||||||
|
"height": 42,
|
||||||
|
"rawWidth": 286,
|
||||||
|
"rawHeight": 42,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"shengxiaozit.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "4f782e47-7a24-4483-86f5-3c5aca38389e",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 34,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 215,
|
||||||
|
"height": 32,
|
||||||
|
"rawWidth": 215,
|
||||||
|
"rawHeight": 32,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"shopbaner.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "39dbd1cd-c67e-4ff4-b868-dd95054e3fa6",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 248,
|
||||||
|
"trimY": 490,
|
||||||
|
"width": 1000,
|
||||||
|
"height": 406,
|
||||||
|
"rawWidth": 1000,
|
||||||
|
"rawHeight": 406,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"star1.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "caa38b03-cb18-4bad-b47b-0b329f7d3e7a",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1362,
|
||||||
|
"trimY": 164,
|
||||||
|
"width": 248,
|
||||||
|
"height": 326,
|
||||||
|
"rawWidth": 248,
|
||||||
|
"rawHeight": 326,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"star2.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "a914aa35-d735-4678-b506-ff3ab3c7a8e0",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 490,
|
||||||
|
"width": 248,
|
||||||
|
"height": 326,
|
||||||
|
"rawWidth": 248,
|
||||||
|
"rawHeight": 326,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"tian.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "134c5e0f-a9ee-4671-a2dd-3c0cf8cf805e",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 684,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 40,
|
||||||
|
"rawWidth": 44,
|
||||||
|
"rawHeight": 40,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"tt.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "f1560937-7835-4688-9c6b-d7fe8e660b5f",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 34,
|
||||||
|
"height": 30,
|
||||||
|
"rawWidth": 34,
|
||||||
|
"rawHeight": 30,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
},
|
||||||
|
"yuekazi.png": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "580975aa-0cf8-479f-854f-bd526d0e55bd",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 249,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 435,
|
||||||
|
"height": 38,
|
||||||
|
"rawWidth": 435,
|
||||||
|
"rawHeight": 38,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"spriteType": "normal",
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/shop/img/yueka.png
Normal file
After Width: | Height: | Size: 920 KiB |
15
assets/shop/img/yueka.png.meta
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"ver": "2.3.7",
|
||||||
|
"uuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac",
|
||||||
|
"importer": "texture",
|
||||||
|
"type": "raw",
|
||||||
|
"wrapMode": "clamp",
|
||||||
|
"filterMode": "bilinear",
|
||||||
|
"premultiplyAlpha": false,
|
||||||
|
"genMipmaps": false,
|
||||||
|
"packable": true,
|
||||||
|
"width": 1754,
|
||||||
|
"height": 996,
|
||||||
|
"platformSettings": {},
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
BIN
assets/shop/img/yueka1.png
Normal file
After Width: | Height: | Size: 198 KiB |
38
assets/shop/img/yueka1.png.meta
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"ver": "2.3.7",
|
||||||
|
"uuid": "91c4090b-98ee-493a-a65f-a0aa980f4e3f",
|
||||||
|
"importer": "texture",
|
||||||
|
"type": "sprite",
|
||||||
|
"wrapMode": "clamp",
|
||||||
|
"filterMode": "bilinear",
|
||||||
|
"premultiplyAlpha": false,
|
||||||
|
"genMipmaps": false,
|
||||||
|
"packable": true,
|
||||||
|
"width": 914,
|
||||||
|
"height": 1134,
|
||||||
|
"platformSettings": {},
|
||||||
|
"subMetas": {
|
||||||
|
"yueka1": {
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"uuid": "e30e1de6-ef28-4077-8f31-a11e73c8c789",
|
||||||
|
"importer": "sprite-frame",
|
||||||
|
"rawTextureUuid": "91c4090b-98ee-493a-a65f-a0aa980f4e3f",
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 914,
|
||||||
|
"height": 1134,
|
||||||
|
"rawWidth": 914,
|
||||||
|
"rawHeight": 1134,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
1900
assets/shop/prefab/monthlyCard.prefab
Normal file
9
assets/shop/prefab/monthlyCard.prefab.meta
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"ver": "1.3.2",
|
||||||
|
"uuid": "b3b1d033-8197-436e-86f4-87844d1a99e6",
|
||||||
|
"importer": "prefab",
|
||||||
|
"optimizationPolicy": "AUTO",
|
||||||
|
"asyncLoadAssets": false,
|
||||||
|
"readonly": false,
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
|
@ -1,6 +1,8 @@
|
||||||
|
import JiaZai from "../../Script/JiaZai";
|
||||||
import Utils from "../../Script/module/Pay/Utils";
|
import Utils from "../../Script/module/Pay/Utils";
|
||||||
import List from "../../Script/module/RankList/List";
|
import List from "../../Script/module/RankList/List";
|
||||||
import NumberToImage from "../../Script/NumberToImage";
|
import NumberToImage from "../../Script/NumberToImage";
|
||||||
|
import SceneManager from "../../Script/SceneManager";
|
||||||
import { MiniGameSdk } from "../../Script/Sdk/MiniGameSdk";
|
import { MiniGameSdk } from "../../Script/Sdk/MiniGameSdk";
|
||||||
|
|
||||||
const { ccclass, property } = cc._decorator;
|
const { ccclass, property } = cc._decorator;
|
||||||
|
@ -20,6 +22,9 @@ export default class NewClass extends cc.Component {
|
||||||
//体力信息
|
//体力信息
|
||||||
@property(cc.Node)
|
@property(cc.Node)
|
||||||
Stamina: cc.Node = null;
|
Stamina: cc.Node = null;
|
||||||
|
//月卡信息
|
||||||
|
@property(cc.Node)
|
||||||
|
monthCardTime: cc.Node = null;
|
||||||
btn_Touch: boolean = true;
|
btn_Touch: boolean = true;
|
||||||
private onShowListener: () => void;
|
private onShowListener: () => void;
|
||||||
private scheduleCallback: Function = null;
|
private scheduleCallback: Function = null;
|
||||||
|
@ -39,6 +44,7 @@ export default class NewClass extends cc.Component {
|
||||||
private iosCount: number = 1;
|
private iosCount: number = 1;
|
||||||
scheduleCallback3: any;
|
scheduleCallback3: any;
|
||||||
scheduleCallback2: Function;
|
scheduleCallback2: Function;
|
||||||
|
reward: boolean = false;
|
||||||
|
|
||||||
|
|
||||||
onLoad() {
|
onLoad() {
|
||||||
|
@ -103,7 +109,7 @@ export default class NewClass extends cc.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
||||||
|
this.updateIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -157,6 +163,18 @@ export default class NewClass extends cc.Component {
|
||||||
this.node.parent.getComponent("SceneManager").closeShop();
|
this.node.parent.getComponent("SceneManager").closeShop();
|
||||||
}
|
}
|
||||||
// this.shop.destroy();
|
// this.shop.destroy();
|
||||||
|
if (this.reward) {
|
||||||
|
this.reward = false;
|
||||||
|
const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
|
||||||
|
if (winCOIN) {
|
||||||
|
const wincoin1 = winCOIN.getComponent(JiaZai);
|
||||||
|
if (wincoin1) {
|
||||||
|
if (wincoin1) {
|
||||||
|
wincoin1.rewarded();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onShow() {
|
onShow() {
|
||||||
|
@ -624,6 +642,46 @@ export default class NewClass extends cc.Component {
|
||||||
this.scheduleCallback2 = null;
|
this.scheduleCallback2 = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
openmonthCard() {
|
||||||
|
|
||||||
|
const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
|
||||||
|
if (winCOIN) {
|
||||||
|
const wincoin = winCOIN.getComponent(SceneManager);
|
||||||
|
if (wincoin) {
|
||||||
|
wincoin.openMonthlyCard();
|
||||||
|
console.log("局内")
|
||||||
|
};
|
||||||
|
const wincoin1 = winCOIN.getComponent(JiaZai);
|
||||||
|
if (wincoin1) {
|
||||||
|
if (wincoin1) {
|
||||||
|
wincoin1.openMonthlyCard();
|
||||||
|
this.reward = true;
|
||||||
|
console.log("局外")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
this.monthCardTime.active = false;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
this.monthCardTime.active = true;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
NumberToImage.numberToImageNodes(25, 35, 15, "button_", this.monthCardTime.children[1], true);
|
||||||
|
}
|
||||||
|
//更新图标
|
||||||
|
updateIcon() {
|
||||||
|
Utils.getMonthlyCard((data) => {
|
||||||
|
if (data.msg == "不在有效期") {
|
||||||
|
this.monthCardTime.active = false;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
this.monthCardTime.active = true;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
NumberToImage.numberToImageNodes(25, 35, 15, "button_", this.monthCardTime.children[1], true);
|
||||||
|
}
|
||||||
|
|
||||||
// update (dt) {}
|
// update (dt) {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,5 +54,6 @@
|
||||||
"start-scene": "9c08062d-4cf1-4b6e-a8ba-4a3881cc7e7d",
|
"start-scene": "9c08062d-4cf1-4b6e-a8ba-4a3881cc7e7d",
|
||||||
"migrate-history": [
|
"migrate-history": [
|
||||||
"cloud-function"
|
"cloud-function"
|
||||||
]
|
],
|
||||||
|
"assets-sort-type": "name"
|
||||||
}
|
}
|
||||||
|
|