Merge branch 'main' of 47.107.44.202:xionglijia/18xchat

This commit is contained in:
chen wei bo
2025-09-18 14:58:20 +08:00
133 changed files with 14948 additions and 4423 deletions
+9 -6
View File
@@ -841,14 +841,17 @@
"_string": "All characters, places, or organizations depicted in this app are fictitious. Any resemblance to real persons, living or dead, is purely coincidental.",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 46,
"_fontSize": 46,
"_actualFontSize": 48,
"_fontSize": 48,
"_fontFamily": "NotoSans-Regular",
"_lineHeight": 54.6,
"_overflow": 1,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
"_font": {
"__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84",
"__expectedType__": "cc.TTFFont"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
@@ -964,7 +967,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -470.13199999999995,
"y": -511.273,
"z": 0
},
"_lrot": {
@@ -1198,7 +1201,7 @@
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": -489.13199999999995,
"_bottom": -530.273,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
@@ -1,21 +1,18 @@
import { _decorator, Component, Label, Node } from "cc";
import li_BaseView from "../../../Main/Common/li_BaseView";
import Utils from "../../../Main/Common/Utils";
import { CommercialData } from "../../data/CommercialData";
import { ConfigManager } from "../../manager/ConfigManager";
import { GButton } from "../../../Main/Common/GButton";
import { PurchasePanelItem } from "../../uiitems/PurchasePanelItem";
import { ViewManager } from "../../../Main/Manager/ViewManager";
import LanguageUtils from "../../../Main/Common/LanguageUtils";
import { InnerEventCode, InnerMsgCode } from "../../../Main/Config/InnerMsgCode";
import { InnerMsgCode } from "../../../Main/Config/InnerMsgCode";
import { DataManager, DataId } from "../../data/DataManager";
import { WalletData } from "../../data/WalletData";
import { ShopData } from "../../data/ShopData";
import { GirlData } from "../../data/GirlData";
import { ShopService } from "db://assets/Scripts/chat18x/network/services/ShopService";
import { PaymentService } from "db://assets/Scripts/chat18x/payment/PaymentService";
import proto from 'db://assets/Scripts/proto/proto.pb.js';
import GameRootUI from "../../../Main/Common/GameRootUI";
import proto from "db://assets/Scripts/proto/proto.pb.js";
import { NavigationManager } from "../../manager/NavigationManager";
const { ccclass, property } = _decorator;
@@ -45,11 +42,15 @@ export class PurchasePanel extends li_BaseView {
//订阅商业化数据事件
Utils.addInnerEL(InnerMsgCode.BalanceChange, this, () => {
this.onBalanceChange();
});
});
Utils.addInnerEL(InnerMsgCode.VipExpireChange, this, () => {
this.onVipExpireChange();
});
});
for (let index = 0; index < this.items.length; index++) {
const element = this.items[index];
element.init(this);
}
this.Show();
}
@@ -70,10 +71,10 @@ export class PurchasePanel extends li_BaseView {
// 购买30天会员
const shopData = DataManager.I.getDataById<ShopData>(DataId.Shop);
const memberId = shopData.get30DayMemberId();
this.reqBuyGood(memberId);
this.reqBuyGood(memberId);
},
this
);
);
GButton.BandClick(
this._nodeTab.ReturnBtn,
() => {
@@ -86,9 +87,7 @@ export class PurchasePanel extends li_BaseView {
async Show() {
// 请求商城数据
const reqData = {
};
const reqData = {};
let res = await ShopService.I.reqShopList(reqData);
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
// 保存数据
@@ -96,27 +95,32 @@ export class PurchasePanel extends li_BaseView {
shopData.goods = res.data;
// 根据数据,刷新界面
this.updateView();
this.updateShops();
}
}
shopData: ShopData;
updateView() {
this.getPlayerMerData();
const shopData = DataManager.I.getDataById<ShopData>(DataId.Shop);
this.shopData = DataManager.I.getDataById<ShopData>(DataId.Shop);
// VIP会员
const memberId7 = shopData.get7DayMemberId();
const price7 = shopData.getOriginalPriceById(memberId7);
const memberId7 = this.shopData.get7DayMemberId();
const price7 = this.shopData.getOriginalPriceById(memberId7);
this.vipPrice7.string = `$ ${price7}`;
const memberId30 = shopData.get30DayMemberId();
const price30 = shopData.getOriginalPriceById(memberId30);
const memberId30 = this.shopData.get30DayMemberId();
const price30 = this.shopData.getOriginalPriceById(memberId30);
this.vipPrice30.string = `$ ${price30}`;
// 充值商品
const rechargeIds = shopData.getRechargeIds();
}
// 0:cash 1:web3
updateShops(type: number = 0) {
// 充值商品 缺:分开获取现金充值或者web3币充值
const rechargeIds = this.shopData.getRechargeIds();
for (let index = 0; index < this.items.length; index++) {
const element = this.items[index];
element.init(this, rechargeIds[index]);
element.refresh(rechargeIds[index]);
}
this.items.forEach((item) => item.show());
}
setDiamondTag(id: number) {
@@ -125,6 +129,9 @@ export class PurchasePanel extends li_BaseView {
if (isRechargeId) {
// 需要外部支付进行购买
this.startPayment(id);
} else {
//是u币充值,打开页面
NavigationManager.Instance.openSubPanel("Web3PopPanel", this.node);
}
}
@@ -143,7 +150,7 @@ export class PurchasePanel extends li_BaseView {
const walletData = DataManager.I.getDataById<WalletData>(DataId.Wallet);
const balance = walletData.getOriginalBalance();
this.coinNum.string = balance.toString();
}
}
onVipExpireChange() {
this.refreshVipExpire();
@@ -156,8 +163,8 @@ export class PurchasePanel extends li_BaseView {
const leftTime = Utils.formatVipLeftTime(vipExpire);
this.vipLeftTime.string = LanguageUtils.getText(
"purchasepanel.vip_left"
).replace("${leftTime}", leftTime);
}
).replace("${leftTime}", leftTime);
}
// 使用余额购买商品
async reqBuyGood(goodId: number) {
@@ -176,15 +183,14 @@ export class PurchasePanel extends li_BaseView {
walletData.balance = Number(resData.balance);
walletData.vipExpire = Number(resData.vipExpire);
// 刷新界面
}
}
}
// 创建订单
async startPayment(goodId: number) {
// 请求数据
const reqData = {
goodId
goodId,
};
let res = await PaymentService.I.startPayment(reqData);
console.log("支付完成的响应数据:", res);
@@ -196,18 +202,21 @@ export class PurchasePanel extends li_BaseView {
console.log("支付成功!!!");
const walletData = DataManager.I.getDataById<WalletData>(DataId.Wallet);
walletData.balance = Number(res.balance);
walletData.vipExpire = Number(res.vipExpire);
walletData.vipExpire = Number(res.vipExpire);
}
}
}
}
onClickCashBtn() {
this.updateShops(0);
}
onClickWeb3Btn() {
this.updateShops(1);
}
onDestroy() {
Utils.removeInnerEL(InnerMsgCode.BalanceChange, this, () => {
});
Utils.removeInnerEL(InnerMsgCode.VipExpireChange, this, () => {
});
Utils.removeInnerEL(InnerMsgCode.BalanceChange, this, () => {});
Utils.removeInnerEL(InnerMsgCode.VipExpireChange, this, () => {});
super.onDestroy();
}
}
+10 -16
View File
@@ -43,7 +43,6 @@ export class ThemePanel extends li_BaseView {
private _nodeTab: any = {};
coinNum: Label;
uid: Label;
itemInst: ThemeItem;
content: Node;
private vipLeftTime: Label;
@@ -65,7 +64,6 @@ export class ThemePanel extends li_BaseView {
Utils.parseNode(this.node, this._nodeTab);
this.coinNum = this._nodeTab.coinNum.getComponent(Label);
this.uid = this._nodeTab.uid.getComponent(Label);
this.recName = this._nodeTab.characterNameText.getComponent(Label);
this.recSprite = this._nodeTab.recPic.getComponent(Sprite);
this.vipLeftTime = this._nodeTab.vipText.getComponent(Label);
@@ -113,7 +111,7 @@ export class ThemePanel extends li_BaseView {
const accountData = DataManager.I.getDataById<AccountData>(
DataId.Account
);
this.uid.string = "uid: " + accountData.accId;
//this.uid.string = "uid: " + accountData.accId;
this.recId = 1;
// 检查是否已被取消
@@ -253,19 +251,15 @@ export class ThemePanel extends li_BaseView {
this.recName.string = LanguageUtils.getText(this.rectNameKey);
// 加载远程资源
const envData = DataManager.I.getDataById<EnvData>(DataId.Env);
let newPath = envData.cdn + "/" + "Girls/" + avatarPath + ".png";
ResManager.I.changeRemoteSpriteFrame(
this.recSprite,
newPath,
() => {
let sizeTran = this.recSprite.node.parent.getComponent(UITransform);
Utils.adjustBgPixelRatioToSize(
sizeTran.contentSize,
this.recSprite.node,
1
);
}
);
let newPath = envData.cdn + "/" + "Girls/" + avatarPath + ".png";
ResManager.I.changeRemoteSpriteFrame(this.recSprite, newPath, () => {
let sizeTran = this.recSprite.node.parent.getComponent(UITransform);
Utils.adjustBgPixelRatioToSize(
sizeTran.contentSize,
this.recSprite.node,
1
);
});
}
/**
@@ -0,0 +1,89 @@
import { _decorator, Component, Label, Node, Sprite, Vec3 } from "cc";
import li_BaseView from "../../../Main/Common/li_BaseView";
import Utils from "../../../Main/Common/Utils";
import { GButton } from "../../../Main/Common/GButton";
const { ccclass, property } = _decorator;
@ccclass("Web3PopPanel")
export class Web3PopPanel extends li_BaseView {
private _nodeTab: any = {};
private coinIcon: Sprite;
private coinText: Label;
private selection: Node;
private curType: number;
onLoadCT(): void {
Utils.parseNode(this.node, this._nodeTab);
this.selection = this._nodeTab.Selection;
this.coinIcon = this._nodeTab.SelectedCoinIcon;
this.coinText = this._nodeTab._SelectedCoinText;
this.registerListener();
this.selection.setScale(new Vec3(1, 0, 1));
}
registerListener() {
GButton.BandClick(this._nodeTab.closeBtn, this.onClickClose, this);
GButton.BandClick(
this._nodeTab.CoinTypeSelectBtn,
this.onClickCoinTypeSelectBtn,
this
);
GButton.BandClick(this._nodeTab.CopyBtn, this.onClickCopy, this);
GButton.BandClick(
this._nodeTab.CoinType1,
() => {
this.onClickCoinType(1);
},
this
);
GButton.BandClick(
this._nodeTab.CoinType2,
() => {
this.onClickCoinType(2);
},
this
);
GButton.BandClick(
this._nodeTab.CoinType3,
() => {
this.onClickCoinType(3);
},
this
);
}
init() {
this.curType = 1;
}
refresh() {
//this.coinIcon
}
updateSelectNetwork() {}
onClickCoinTypeSelectBtn() {
this.selection.scale = new Vec3(1, 1, 1);
}
onClickCoinType(type: number) {
this.curType = type;
if (type == 1) {
} else if (type == 2) {
} else if (type == 3) {
} else {
}
this.selection.scale = new Vec3(1, 0, 1);
}
onClickCopy() {
//todo:copy 功能
}
onClickClose() {
this.close();
}
}
@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "5a5ef9db-cc78-49c6-9dc9-4a6af5005ee6",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -1,9 +1,10 @@
import { _decorator, Component, Label, Node } from "cc";
import { _decorator, Component, Label, Node, Sprite } from "cc";
import { PurchasePanel } from "../ui/panels/PurchasePanel";
import { PurchaseConfig } from "../../schema/schema";
import { DataManager, DataId } from "../data/DataManager";
import { ShopData } from "../data/ShopData";
import { GButton } from "db://assets/Scripts/Main/Common/GButton";
import ResManager from "../../Main/Manager/ResManager";
const { ccclass, property } = _decorator;
@@ -14,21 +15,40 @@ export class PurchasePanelItem extends Component {
@property(Label)
price: Label;
@property(Sprite)
icon: Sprite;
baseView: PurchasePanel;
goodId: number;
public init(base: PurchasePanel, goodId: number) {
public init(base: PurchasePanel) {
this.baseView = base;
this.goodId = goodId;
GButton.BandClick(this.node, this.onClickThis, this);
}
public refresh(goodId: number) {
this.goodId = goodId;
this.show();
}
public show() {
const shopData = DataManager.I.getDataById<ShopData>(DataId.Shop);
const count = shopData.getCountById(this.goodId);
this.count.string = count.toString();
const price = shopData.getOriginalPriceById(this.goodId);
this.price.string = price.toString();
let path = "";
if (this.goodId > 2000) {
// web3币
path += "ui/shop/coin/";
} //cash
else {
path += "ui/shop/cash/";
}
path += this.goodId;
ResManager.I.changeResourceSpriteFrame(this.icon, path);
}
async onClickThis() {
+26 -9
View File
@@ -2,7 +2,10 @@ import { _decorator, Component, Label, Node, Sprite, UITransform } from "cc";
import { GButton } from "db://assets/Scripts/Main/Common/GButton";
import ResManager from "db://assets/Scripts/Main/Manager/ResManager";
import Utils from "db://assets/Scripts/Main/Common/Utils";
import { NavigationManager, PageTransitionType } from "../manager/NavigationManager";
import {
NavigationManager,
PageTransitionType,
} from "../manager/NavigationManager";
import LanguageUtils from "../../Main/Common/LanguageUtils";
import { InnerMsgCode } from "../../Main/Config/InnerMsgCode";
import { DataManager, DataId } from "../data/DataManager";
@@ -18,6 +21,8 @@ export class ThemeItem extends Component {
lockCover: Sprite;
@property(Label)
titleName: Label;
@property(UITransform)
titleNameBg: UITransform;
@property(Node)
loading: Node;
@@ -34,17 +39,28 @@ export class ThemeItem extends Component {
key: string;
protected onLoad(): void {
Utils.addInnerEL(InnerMsgCode.LanguageChange, this, () => {
this.titleName.string = LanguageUtils.getText(this.key);
this.updateTitle();
});
}
protected onDestroy(): void {
Utils.removeInnerEL(InnerMsgCode.LanguageChange, this, () => {
this.titleName.string = LanguageUtils.getText(this.key);
this.updateTitle();
});
}
updateTitle() {
this.titleName.string = LanguageUtils.getText(this.key);
this.scheduleOnce(() => {
const size = this.titleName.getComponent(UITransform).contentSize;
this.titleNameBg.setContentSize(
size.x + 65,
this.titleNameBg.contentSize.y
);
}, 0);
}
refresh(themeId: number, parentPanel?: any) {
this.loading.active = true;
if (this.loading) this.loading.active = true;
this.parentPanel = parentPanel;
// 主题数据
const themeData = DataManager.I.getDataById<ThemeData>(DataId.Theme);
@@ -52,9 +68,7 @@ export class ThemeItem extends Component {
!themeData.getIsReleaseById(themeId);
this.isLocked = !themeData.getIsReleaseById(themeId);
this.key = themeData.getLanKeyById(themeId);
this.titleName.string = LanguageUtils.getText(
themeData.getLanKeyById(themeId)
);
this.updateTitle();
this.category = themeData.getCategoryById(themeId);
ResManager.I.changeBundleSpriteFrame(
this.img,
@@ -63,7 +77,7 @@ export class ThemeItem extends Component {
() => {
let sizeTran = this.img.node.parent.getComponent(UITransform);
Utils.adjustBgPixelRatioToSize(sizeTran.contentSize, this.img.node, 3);
this.loading.active = false;
if (this.loading) this.loading.active = false;
}
);
GButton.RemoveAndBandClick(this.node, this.OnClickThis, this);
@@ -74,7 +88,10 @@ export class ThemeItem extends Component {
return;
}
console.log("[ThemeItem] Opening GirlListPanel for category:", this.category);
console.log(
"[ThemeItem] Opening GirlListPanel for category:",
this.category
);
// 不使用过渡动画,直接打开
NavigationManager.Instance.navigateToGirlList(this.category);
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 KiB

After

Width:  |  Height:  |  Size: 203 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 460,
"rawWidth": 460,
"rawHeight": 460,
"width": 444,
"height": 330,
"rawWidth": 444,
"rawHeight": 330,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-230,
-230,
-222,
-165,
0,
230,
-230,
222,
-165,
0,
-230,
230,
-222,
165,
0,
230,
230,
222,
165,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
460,
460,
460,
330,
444,
330,
0,
0,
460,
444,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-230,
-230,
-222,
-165,
0
],
"maxPos": [
230,
230,
222,
165,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 406 KiB

After

Width:  |  Height:  |  Size: 278 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 460,
"rawWidth": 460,
"rawHeight": 460,
"width": 444,
"height": 330,
"rawWidth": 444,
"rawHeight": 330,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-230,
-230,
-222,
-165,
0,
230,
-230,
222,
-165,
0,
-230,
230,
-222,
165,
0,
230,
230,
222,
165,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
460,
460,
460,
330,
444,
330,
0,
0,
460,
444,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-230,
-230,
-222,
-165,
0
],
"maxPos": [
230,
230,
222,
165,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 341 KiB

After

Width:  |  Height:  |  Size: 236 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 460,
"rawWidth": 460,
"rawHeight": 460,
"width": 444,
"height": 330,
"rawWidth": 444,
"rawHeight": 330,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-230,
-230,
-222,
-165,
0,
230,
-230,
222,
-165,
0,
-230,
230,
-222,
165,
0,
230,
230,
222,
165,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
460,
460,
460,
330,
444,
330,
0,
0,
460,
444,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-230,
-230,
-222,
-165,
0
],
"maxPos": [
230,
230,
222,
165,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 307 KiB

After

Width:  |  Height:  |  Size: 208 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 460,
"rawWidth": 460,
"rawHeight": 460,
"width": 444,
"height": 329,
"rawWidth": 444,
"rawHeight": 329,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-230,
-230,
-222,
-164.5,
0,
230,
-230,
222,
-164.5,
0,
-230,
230,
-222,
164.5,
0,
230,
230,
222,
164.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
460,
460,
460,
329,
444,
329,
0,
0,
460,
444,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-230,
-230,
-222,
-164.5,
0
],
"maxPos": [
230,
230,
222,
164.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 KiB

After

Width:  |  Height:  |  Size: 213 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 460,
"rawWidth": 460,
"rawHeight": 460,
"width": 444,
"height": 327,
"rawWidth": 444,
"rawHeight": 327,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-230,
-230,
-222,
-163.5,
0,
230,
-230,
222,
-163.5,
0,
-230,
230,
-222,
163.5,
0,
230,
230,
222,
163.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
460,
460,
460,
327,
444,
327,
0,
0,
460,
444,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-230,
-230,
-222,
-163.5,
0
],
"maxPos": [
230,
230,
222,
163.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 335 KiB

After

Width:  |  Height:  |  Size: 230 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 460,
"rawWidth": 460,
"rawHeight": 460,
"width": 444,
"height": 329,
"rawWidth": 444,
"rawHeight": 329,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-230,
-230,
-222,
-164.5,
0,
230,
-230,
222,
-164.5,
0,
-230,
230,
-222,
164.5,
0,
230,
230,
222,
164.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
460,
460,
460,
329,
444,
329,
0,
0,
460,
444,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-230,
-230,
-222,
-164.5,
0
],
"maxPos": [
230,
230,
222,
164.5,
0
]
},
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "f60e950f-4392-48b6-9cc0-9b1e7f2eeaad",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "Web3PopPanel"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e42051cb-525e-48e1-9303-6c85a1b70661",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e42051cb-525e-48e1-9303-6c85a1b70661@6c48a",
"displayName": "图层 600",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e42051cb-525e-48e1-9303-6c85a1b70661",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "e42051cb-525e-48e1-9303-6c85a1b70661@f9941",
"displayName": "图层 600",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 117,
"height": 59,
"rawWidth": 117,
"rawHeight": 59,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-58.5,
-29.5,
0,
58.5,
-29.5,
0,
-58.5,
29.5,
0,
58.5,
29.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
59,
117,
59,
0,
0,
117,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-58.5,
-29.5,
0
],
"maxPos": [
58.5,
29.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e42051cb-525e-48e1-9303-6c85a1b70661@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e42051cb-525e-48e1-9303-6c85a1b70661@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 89,
"height": 109,
"rawWidth": 89,
"rawHeight": 109,
"width": 100,
"height": 103,
"rawWidth": 100,
"rawHeight": 103,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-44.5,
-54.5,
-50,
-51.5,
0,
44.5,
-54.5,
50,
-51.5,
0,
-44.5,
54.5,
-50,
51.5,
0,
44.5,
54.5,
50,
51.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
109,
89,
109,
103,
100,
103,
0,
0,
89,
100,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-44.5,
-54.5,
-50,
-51.5,
0
],
"maxPos": [
44.5,
54.5,
50,
51.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 10 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 158,
"height": 157,
"rawWidth": 158,
"rawHeight": 157,
"width": 124,
"height": 123,
"rawWidth": 124,
"rawHeight": 123,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-79,
-78.5,
-62,
-61.5,
0,
79,
-78.5,
62,
-61.5,
0,
-79,
78.5,
-62,
61.5,
0,
79,
78.5,
62,
61.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
157,
158,
157,
123,
124,
123,
0,
0,
158,
124,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-79,
-78.5,
-62,
-61.5,
0
],
"maxPos": [
79,
78.5,
62,
61.5,
0
]
},
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0",
"uuid": "67f07ec9-e327-4a6c-8911-bf4edae510c3",
"files": [
".json",
".png"
@@ -10,14 +10,14 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@6c48a",
"displayName": "矩118",
"uuid": "67f07ec9-e327-4a6c-8911-bf4edae510c3@6c48a",
"displayName": "钻石",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0",
"imageUuidOrDatabaseUri": "67f07ec9-e327-4a6c-8911-bf4edae510c3",
"isUuid": true,
"visible": false,
"minfilter": "linear",
@@ -34,8 +34,8 @@
},
"f9941": {
"importer": "sprite-frame",
"uuid": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@f9941",
"displayName": "矩118",
"uuid": "67f07ec9-e327-4a6c-8911-bf4edae510c3@f9941",
"displayName": "钻石",
"id": "f9941",
"name": "spriteFrame",
"userData": {
@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 361,
"height": 108,
"rawWidth": 361,
"rawHeight": 108,
"width": 75,
"height": 66,
"rawWidth": 75,
"rawHeight": 66,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-180.5,
-54,
-37.5,
-33,
0,
180.5,
-54,
37.5,
-33,
0,
-180.5,
54,
-37.5,
33,
0,
180.5,
54,
37.5,
33,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
108,
361,
108,
66,
75,
66,
0,
0,
361,
75,
0
],
"nuv": [
@@ -103,18 +103,18 @@
1
],
"minPos": [
-180.5,
-54,
-37.5,
-33,
0
],
"maxPos": [
180.5,
54,
37.5,
33,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@6c48a",
"imageUuidOrDatabaseUri": "67f07ec9-e327-4a6c-8911-bf4edae510c3@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
@@ -129,6 +129,6 @@
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@6c48a"
"redirect": "67f07ec9-e327-4a6c-8911-bf4edae510c3@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

+20 -20
View File
@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 80,
"height": 70,
"rawWidth": 80,
"rawHeight": 70,
"width": 73,
"height": 63,
"rawWidth": 73,
"rawHeight": 63,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-40,
-35,
-36.5,
-31.5,
0,
40,
-35,
36.5,
-31.5,
0,
-40,
35,
-36.5,
31.5,
0,
40,
35,
36.5,
31.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
70,
80,
70,
63,
73,
63,
0,
0,
80,
73,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-40,
-35,
-36.5,
-31.5,
0
],
"maxPos": [
40,
35,
36.5,
31.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 80,
"height": 70,
"rawWidth": 80,
"rawHeight": 70,
"width": 73,
"height": 63,
"rawWidth": 73,
"rawHeight": 63,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-40,
-35,
-36.5,
-31.5,
0,
40,
-35,
36.5,
-31.5,
0,
-40,
35,
-36.5,
31.5,
0,
40,
35,
36.5,
31.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
70,
80,
70,
63,
73,
63,
0,
0,
80,
73,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-40,
-35,
-36.5,
-31.5,
0
],
"maxPos": [
40,
35,
36.5,
31.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+20 -20
View File
@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 90,
"rawWidth": 90,
"rawHeight": 90,
"width": 81,
"height": 81,
"rawWidth": 81,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-45,
-45,
-40.5,
-40.5,
0,
45,
-45,
40.5,
-40.5,
0,
-45,
45,
-40.5,
40.5,
0,
45,
45,
40.5,
40.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
90,
90,
90,
81,
81,
81,
0,
0,
90,
81,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-45,
-45,
-40.5,
-40.5,
0
],
"maxPos": [
45,
45,
40.5,
40.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 90,
"rawWidth": 90,
"rawHeight": 90,
"width": 81,
"height": 81,
"rawWidth": 81,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-45,
-45,
-40.5,
-40.5,
0,
45,
-45,
40.5,
-40.5,
0,
-45,
45,
-40.5,
40.5,
0,
45,
45,
40.5,
40.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
90,
90,
90,
81,
81,
81,
0,
0,
90,
81,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-45,
-45,
-40.5,
-40.5,
0
],
"maxPos": [
45,
45,
40.5,
40.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

+20 -20
View File
@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 34,
"height": 90,
"rawWidth": 34,
"rawHeight": 90,
"width": 31,
"height": 81,
"rawWidth": 31,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-17,
-45,
-15.5,
-40.5,
0,
17,
-45,
15.5,
-40.5,
0,
-17,
45,
-15.5,
40.5,
0,
17,
45,
15.5,
40.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
90,
34,
90,
81,
31,
81,
0,
0,
34,
31,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-17,
-45,
-15.5,
-40.5,
0
],
"maxPos": [
17,
45,
15.5,
40.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 34,
"height": 90,
"rawWidth": 34,
"rawHeight": 90,
"width": 31,
"height": 81,
"rawWidth": 31,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-17,
-45,
-15.5,
-40.5,
0,
17,
-45,
15.5,
-40.5,
0,
-17,
45,
-15.5,
40.5,
0,
17,
45,
15.5,
40.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
90,
34,
90,
81,
31,
81,
0,
0,
34,
31,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-17,
-45,
-15.5,
-40.5,
0
],
"maxPos": [
17,
45,
15.5,
40.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 65,
"height": 79,
"rawWidth": 65,
"rawHeight": 79,
"width": 58,
"height": 70,
"rawWidth": 58,
"rawHeight": 70,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-32.5,
-39.5,
-29,
-35,
0,
32.5,
-39.5,
29,
-35,
0,
-32.5,
39.5,
-29,
35,
0,
32.5,
39.5,
29,
35,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
79,
65,
79,
70,
58,
70,
0,
0,
65,
58,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-32.5,
-39.5,
-29,
-35,
0
],
"maxPos": [
32.5,
39.5,
29,
35,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 65,
"height": 79,
"rawWidth": 65,
"rawHeight": 79,
"width": 58,
"height": 70,
"rawWidth": 58,
"rawHeight": 70,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-32.5,
-39.5,
-29,
-35,
0,
32.5,
-39.5,
29,
-35,
0,
-32.5,
39.5,
-29,
35,
0,
32.5,
39.5,
29,
35,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
79,
65,
79,
70,
58,
70,
0,
0,
65,
58,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-32.5,
-39.5,
-29,
-35,
0
],
"maxPos": [
32.5,
39.5,
29,
35,
0
]
},
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "06d82c9b-5158-4296-97bb-2be0cdf5c924",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "06d82c9b-5158-4296-97bb-2be0cdf5c924@6c48a",
"displayName": "矩形 3",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "06d82c9b-5158-4296-97bb-2be0cdf5c924",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "06d82c9b-5158-4296-97bb-2be0cdf5c924@f9941",
"displayName": "矩形 3",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1080,
"height": 237,
"rawWidth": 1080,
"rawHeight": 237,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-118.5,
0,
540,
-118.5,
0,
-540,
118.5,
0,
540,
118.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
237,
1080,
237,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-118.5,
0
],
"maxPos": [
540,
118.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "06d82c9b-5158-4296-97bb-2be0cdf5c924@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "06d82c9b-5158-4296-97bb-2be0cdf5c924@6c48a"
}
}

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "ebf57308-2144-42ce-ba57-52fb092986b4@6c48a",
"displayName": "图层-52",
"displayName": "1001",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "ebf57308-2144-42ce-ba57-52fb092986b4@f9941",
"displayName": "图层-52",
"displayName": "1001",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@6c48a",
"displayName": "图层-50",
"displayName": "1002",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@f9941",
"displayName": "图层-50",
"displayName": "1002",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@6c48a",
"displayName": "图层-53",
"displayName": "1003",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@f9941",
"displayName": "图层-53",
"displayName": "1003",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "102a42a1-679d-4153-89e4-816162930797@6c48a",
"displayName": "图层-54",
"displayName": "1004",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "102a42a1-679d-4153-89e4-816162930797@f9941",
"displayName": "图层-54",
"displayName": "1004",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "6a555064-ee27-4a70-a836-0f997bf93f1e@6c48a",
"displayName": "图层-49",
"displayName": "1005",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "6a555064-ee27-4a70-a836-0f997bf93f1e@f9941",
"displayName": "图层-49",
"displayName": "1005",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@6c48a",
"displayName": "组-22",
"displayName": "1006",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@f9941",
"displayName": "组-22",
"displayName": "1006",
"id": "f9941",
"name": "spriteFrame",
"userData": {
+9
View File
@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "8073608a-16a6-410e-883b-9afcdca3c6b1",
"files": [],
"subMetas": {},
"userData": {}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@6c48a",
"displayName": "2001",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@f9941",
"displayName": "2001",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 113,
"height": 131,
"rawWidth": 113,
"rawHeight": 131,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-56.5,
-65.5,
0,
56.5,
-65.5,
0,
-56.5,
65.5,
0,
56.5,
65.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
131,
113,
131,
0,
0,
113,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-56.5,
-65.5,
0
],
"maxPos": [
56.5,
65.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d75397cc-79ea-4678-9387-fec0502ae091",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d75397cc-79ea-4678-9387-fec0502ae091@6c48a",
"displayName": "2002",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d75397cc-79ea-4678-9387-fec0502ae091",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "d75397cc-79ea-4678-9387-fec0502ae091@f9941",
"displayName": "2002",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 172,
"height": 151,
"rawWidth": 172,
"rawHeight": 151,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-86,
-75.5,
0,
86,
-75.5,
0,
-86,
75.5,
0,
86,
75.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
151,
172,
151,
0,
0,
172,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-86,
-75.5,
0
],
"maxPos": [
86,
75.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d75397cc-79ea-4678-9387-fec0502ae091@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d75397cc-79ea-4678-9387-fec0502ae091@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f944a7b5-bc82-484f-a5e9-904fcb317707",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f944a7b5-bc82-484f-a5e9-904fcb317707@6c48a",
"displayName": "2003",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f944a7b5-bc82-484f-a5e9-904fcb317707",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f944a7b5-bc82-484f-a5e9-904fcb317707@f9941",
"displayName": "2003",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 203,
"height": 158,
"rawWidth": 203,
"rawHeight": 158,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-101.5,
-79,
0,
101.5,
-79,
0,
-101.5,
79,
0,
101.5,
79,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
158,
203,
158,
0,
0,
203,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-101.5,
-79,
0
],
"maxPos": [
101.5,
79,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f944a7b5-bc82-484f-a5e9-904fcb317707@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f944a7b5-bc82-484f-a5e9-904fcb317707@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1d7c6978-98a0-47a4-a62b-9f31a7d07617",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@6c48a",
"displayName": "2004",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1d7c6978-98a0-47a4-a62b-9f31a7d07617",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@f9941",
"displayName": "2004",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 244,
"height": 244,
"rawWidth": 244,
"rawHeight": 244,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-122,
-122,
0,
122,
-122,
0,
-122,
122,
0,
122,
122,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
244,
244,
244,
0,
0,
244,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-122,
-122,
0
],
"maxPos": [
122,
122,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c41d8e92-69ca-4705-a43c-b134a367875e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c41d8e92-69ca-4705-a43c-b134a367875e@6c48a",
"displayName": "2005",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c41d8e92-69ca-4705-a43c-b134a367875e",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "c41d8e92-69ca-4705-a43c-b134a367875e@f9941",
"displayName": "2005",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 257,
"height": 198,
"rawWidth": 257,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-128.5,
-99,
0,
128.5,
-99,
0,
-128.5,
99,
0,
128.5,
99,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
198,
257,
198,
0,
0,
257,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-128.5,
-99,
0
],
"maxPos": [
128.5,
99,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c41d8e92-69ca-4705-a43c-b134a367875e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c41d8e92-69ca-4705-a43c-b134a367875e@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c1263d7c-a965-4ec8-a65a-bf514532b5d0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@6c48a",
"displayName": "2006",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c1263d7c-a965-4ec8-a65a-bf514532b5d0",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@f9941",
"displayName": "2006",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 239,
"height": 208,
"rawWidth": 239,
"rawHeight": 208,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-119.5,
-104,
0,
119.5,
-104,
0,
-119.5,
104,
0,
119.5,
104,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
208,
239,
208,
0,
0,
239,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-119.5,
-104,
0
],
"maxPos": [
119.5,
104,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@6c48a"
}
}

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@6c48a",
"displayName": "图层-592",
"displayName": "1001",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@f9941",
"displayName": "图层-592",
"displayName": "1001",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@6c48a",
"displayName": "图层-58-拷贝-5",
"displayName": "1002",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@f9941",
"displayName": "图层-58-拷贝-5",
"displayName": "1002",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "50eabd8e-01a9-487a-8a37-bc323d466a0b@6c48a",
"displayName": "组-23",
"displayName": "1003",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "50eabd8e-01a9-487a-8a37-bc323d466a0b@f9941",
"displayName": "组-23",
"displayName": "1003",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@6c48a",
"displayName": "图层-57",
"displayName": "1004",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@f9941",
"displayName": "图层-57",
"displayName": "1004",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 67 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "f5bd194a-5764-4365-a873-f1b266f73164@6c48a",
"displayName": "组-24",
"displayName": "1005",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "f5bd194a-5764-4365-a873-f1b266f73164@f9941",
"displayName": "组-24",
"displayName": "1005",
"id": "f9941",
"name": "spriteFrame",
"userData": {

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "fa89314f-f305-4cbd-90b4-eba6226279eb@6c48a",
"displayName": "图层-56",
"displayName": "1006",
"id": "6c48a",
"name": "texture",
"userData": {
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "fa89314f-f305-4cbd-90b4-eba6226279eb@f9941",
"displayName": "图层-56",
"displayName": "1006",
"id": "f9941",
"name": "spriteFrame",
"userData": {
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "362515cf-8079-4f8c-a3e7-29e89360a329",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "362515cf-8079-4f8c-a3e7-29e89360a329@6c48a",
"displayName": "矩形 12-1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "362515cf-8079-4f8c-a3e7-29e89360a329",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "362515cf-8079-4f8c-a3e7-29e89360a329@f9941",
"displayName": "矩形 12-1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 217,
"height": 71,
"rawWidth": 217,
"rawHeight": 71,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-108.5,
-35.5,
0,
108.5,
-35.5,
0,
-108.5,
35.5,
0,
108.5,
35.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
71,
217,
71,
0,
0,
217,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-108.5,
-35.5,
0
],
"maxPos": [
108.5,
35.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "362515cf-8079-4f8c-a3e7-29e89360a329@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "362515cf-8079-4f8c-a3e7-29e89360a329@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "66fb67c4-7251-4a4b-ae66-2195b32565de",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "66fb67c4-7251-4a4b-ae66-2195b32565de@6c48a",
"displayName": "矩形 12",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "66fb67c4-7251-4a4b-ae66-2195b32565de",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "66fb67c4-7251-4a4b-ae66-2195b32565de@f9941",
"displayName": "矩形 12",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 217,
"height": 71,
"rawWidth": 217,
"rawHeight": 71,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-108.5,
-35.5,
0,
108.5,
-35.5,
0,
-108.5,
35.5,
0,
108.5,
35.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
71,
217,
71,
0,
0,
217,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-108.5,
-35.5,
0
],
"maxPos": [
108.5,
35.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "66fb67c4-7251-4a4b-ae66-2195b32565de@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "66fb67c4-7251-4a4b-ae66-2195b32565de@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

+134
View File
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1eec33bd-a22a-4731-8426-943f49050b20",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1eec33bd-a22a-4731-8426-943f49050b20@6c48a",
"displayName": "矩形 18",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1eec33bd-a22a-4731-8426-943f49050b20",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "1eec33bd-a22a-4731-8426-943f49050b20@f9941",
"displayName": "矩形 18",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 332,
"height": 91,
"rawWidth": 332,
"rawHeight": 91,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-166,
-45.5,
0,
166,
-45.5,
0,
-166,
45.5,
0,
166,
45.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
91,
332,
91,
0,
0,
332,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-166,
-45.5,
0
],
"maxPos": [
166,
45.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1eec33bd-a22a-4731-8426-943f49050b20@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1eec33bd-a22a-4731-8426-943f49050b20@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

+20 -20
View File
@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 361,
"height": 108,
"rawWidth": 361,
"rawHeight": 108,
"width": 333,
"height": 91,
"rawWidth": 333,
"rawHeight": 91,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-180.5,
-54,
-166.5,
-45.5,
0,
180.5,
-54,
166.5,
-45.5,
0,
-180.5,
54,
-166.5,
45.5,
0,
180.5,
54,
166.5,
45.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
108,
361,
108,
91,
333,
91,
0,
0,
361,
333,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-180.5,
-54,
-166.5,
-45.5,
0
],
"maxPos": [
180.5,
54,
166.5,
45.5,
0
]
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

+20 -20
View File
@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 411,
"rawWidth": 325,
"rawHeight": 411,
"width": 310,
"height": 369,
"rawWidth": 310,
"rawHeight": 369,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-162.5,
-205.5,
-155,
-184.5,
0,
162.5,
-205.5,
155,
-184.5,
0,
-162.5,
205.5,
-155,
184.5,
0,
162.5,
205.5,
155,
184.5,
0
],
"indexes": [
@@ -84,12 +84,12 @@
],
"uv": [
0,
411,
325,
411,
369,
310,
369,
0,
0,
325,
310,
0
],
"nuv": [
@@ -103,13 +103,13 @@
1
],
"minPos": [
-162.5,
-205.5,
-155,
-184.5,
0
],
"maxPos": [
162.5,
205.5,
155,
184.5,
0
]
},
Binary file not shown.

After

Width:  |  Height:  |  Size: 427 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "73d2e328-4c47-42e2-83e1-07967b503a51",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "73d2e328-4c47-42e2-83e1-07967b503a51@6c48a",
"displayName": "图层 61",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "73d2e328-4c47-42e2-83e1-07967b503a51",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "73d2e328-4c47-42e2-83e1-07967b503a51@f9941",
"displayName": "图层 61",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"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,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-1170,
0,
540,
-1170,
0,
-540,
1170,
0,
540,
1170,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
2340,
1080,
2340,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-1170,
0
],
"maxPos": [
540,
1170,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "73d2e328-4c47-42e2-83e1-07967b503a51@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "73d2e328-4c47-42e2-83e1-07967b503a51@6c48a"
}
}

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