fix
设置页面资源
@@ -806,7 +806,7 @@
|
||||
"__prefab": null,
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 124.5999755859375,
|
||||
"width": 209.931640625,
|
||||
"height": 91.35
|
||||
},
|
||||
"_anchorPoint": {
|
||||
@@ -836,11 +836,11 @@
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_string": "登录",
|
||||
"_string": "Log in",
|
||||
"_horizontalAlign": 1,
|
||||
"_verticalAlign": 1,
|
||||
"_actualFontSize": 62.3,
|
||||
"_fontSize": 62.3,
|
||||
"_actualFontSize": 70,
|
||||
"_fontSize": 70,
|
||||
"_fontFamily": "Arial",
|
||||
"_lineHeight": 72.5,
|
||||
"_overflow": 0,
|
||||
@@ -849,7 +849,7 @@
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_isItalic": false,
|
||||
"_isBold": false,
|
||||
"_isBold": true,
|
||||
"_isUnderline": false,
|
||||
"_underlineHeight": 2,
|
||||
"_cacheMode": 0,
|
||||
@@ -890,8 +890,8 @@
|
||||
"__prefab": null,
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 500,
|
||||
"height": 110.1
|
||||
"width": 458,
|
||||
"height": 138
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -916,15 +916,15 @@
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 218,
|
||||
"b": 70,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@f9941",
|
||||
"__uuid__": "6a575808-ac52-447e-871c-3c65972185c6@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 1,
|
||||
"_type": 0,
|
||||
"_fillType": 0,
|
||||
"_sizeMode": 0,
|
||||
"_fillCenter": {
|
||||
@@ -954,7 +954,7 @@
|
||||
"_left": 0,
|
||||
"_right": 0,
|
||||
"_top": 0,
|
||||
"_bottom": 744.672,
|
||||
"_bottom": 730.722,
|
||||
"_horizontalCenter": 0,
|
||||
"_verticalCenter": 0,
|
||||
"_isAbsLeft": true,
|
||||
|
||||
@@ -102,15 +102,19 @@ export class ChatContentsLayout extends Component {
|
||||
newBubble.node.position = new Vec3(pos.x, initPosY, pos.z);
|
||||
|
||||
pendingUpdates++;
|
||||
newBubble.updateBubbleContent(dialog.content, (actualHeight: number) => {
|
||||
initPosY += actualHeight + 20;
|
||||
pendingUpdates--;
|
||||
newBubble.updateBubbleContent(
|
||||
dialog.content,
|
||||
(actualHeight: number) => {
|
||||
initPosY += actualHeight + 40;
|
||||
pendingUpdates--;
|
||||
|
||||
// 当当前气泡更新完成后,处理下一个
|
||||
if (pendingUpdates === 0) {
|
||||
updateNextBubble(index - 1);
|
||||
}
|
||||
}, dialog.isLoading || false);
|
||||
// 当当前气泡更新完成后,处理下一个
|
||||
if (pendingUpdates === 0) {
|
||||
updateNextBubble(index - 1);
|
||||
}
|
||||
},
|
||||
dialog.isLoading || false
|
||||
);
|
||||
|
||||
this.bubbles.push(newBubble);
|
||||
};
|
||||
|
||||
@@ -31,12 +31,16 @@ export class DialogBubble extends Component {
|
||||
}
|
||||
}
|
||||
|
||||
updateBubbleContent(str: string, callback?: (actualHeight: number) => void, isLoading: boolean = false) {
|
||||
updateBubbleContent(
|
||||
str: string,
|
||||
callback?: (actualHeight: number) => void,
|
||||
isLoading: boolean = false
|
||||
) {
|
||||
// 停止之前的加载动画
|
||||
this.stopLoadingAnimation();
|
||||
|
||||
|
||||
this.content.overflow = Overflow.NONE;
|
||||
|
||||
|
||||
// 如果是加载状态,使用固定的"..."
|
||||
if (isLoading && str === "...") {
|
||||
this.content.string = "...";
|
||||
@@ -44,13 +48,13 @@ export class DialogBubble extends Component {
|
||||
const contentWidth = 60;
|
||||
this.contentT.setContentSize(new Size(contentWidth, 40));
|
||||
this.bg.setContentSize(new Size(contentWidth + 30, 50));
|
||||
|
||||
|
||||
if (callback) {
|
||||
callback(40); // 返回固定高度
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// 设置文本内容
|
||||
this.content.string = str;
|
||||
|
||||
@@ -75,7 +79,7 @@ export class DialogBubble extends Component {
|
||||
|
||||
// 设置内容区域宽度,让Label自动计算高度
|
||||
this.contentT.setContentSize(new Size(contentWidth, 0));
|
||||
this.bg.setContentSize(new Size(contentWidth + 17, 0));
|
||||
this.bg.setContentSize(new Size(contentWidth + 37, 0));
|
||||
|
||||
// 强制更新Label的渲染数据以获取正确的高度
|
||||
this.content.updateRenderData(true);
|
||||
@@ -90,7 +94,7 @@ export class DialogBubble extends Component {
|
||||
|
||||
// 根据内容大小调整背景大小,添加适当的内边距
|
||||
//const bgHeight = actualHeight + 17;
|
||||
this.bg.setContentSize(new Size(actualSize.x + 30, actualSize.y + 10));
|
||||
this.bg.setContentSize(new Size(actualSize.x + 40, actualSize.y + 30));
|
||||
|
||||
// 回调通知实际高度
|
||||
if (callback) {
|
||||
|
||||
@@ -9,6 +9,7 @@ import { DataManager, DataId } from "../../data/DataManager";
|
||||
import { GirlData } from "../../data/GirlData";
|
||||
import { WalletData } from "../../data/WalletData";
|
||||
import proto from "db://assets/Scripts/proto/proto.pb.js";
|
||||
import LanguageUtils from "../../../Main/Common/LanguageUtils";
|
||||
const { ccclass, property } = _decorator;
|
||||
|
||||
@ccclass("GirlListPopupPanel")
|
||||
@@ -18,6 +19,9 @@ export class GirlListPopupPanel extends li_BaseView {
|
||||
private category: number;
|
||||
private girlId: number;
|
||||
|
||||
private girlName: Label;
|
||||
private girlTag: Label;
|
||||
|
||||
base: GirlListItem;
|
||||
openUIDataCT(data) {
|
||||
this.category = data.category;
|
||||
@@ -26,11 +30,22 @@ export class GirlListPopupPanel extends li_BaseView {
|
||||
}
|
||||
onLoadCT() {
|
||||
Utils.parseNode(this.node, this._nodeTab);
|
||||
this.girlName = this._nodeTab.Name.getComponent(Label);
|
||||
this.girlTag = this._nodeTab.Tag.getComponent(Label);
|
||||
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
|
||||
// 价格
|
||||
this.priceLabel = this._nodeTab.Price.getComponent(Label);
|
||||
this.priceLabel.string = girlData.getGrilOriginalPrice(this.category.toString(), this.girlId).toString();
|
||||
this.priceLabel.string = girlData
|
||||
.getGrilOriginalPrice(this.category.toString(), this.girlId)
|
||||
.toString();
|
||||
this.registerListener();
|
||||
|
||||
this.girlName.string = LanguageUtils.getText(
|
||||
girlData.getGrilName(this.category.toString(), this.girlId)
|
||||
);
|
||||
this.girlTag.string = LanguageUtils.getText(
|
||||
girlData.getGrilTagKey(this.category.toString(), this.girlId)
|
||||
);
|
||||
}
|
||||
registerListener() {
|
||||
GButton.BandClick(this._nodeTab.BuyBtn, this.buyCharacter, this);
|
||||
@@ -58,7 +73,7 @@ export class GirlListPopupPanel extends li_BaseView {
|
||||
walletData.vipExpire = Number(resData.vipExpire);
|
||||
// 刷新界面
|
||||
this.base.refreshBuy(true);
|
||||
this.close();
|
||||
this.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@ import { DataManager, DataId } from "../../data/DataManager";
|
||||
import { GirlData } from "../../data/GirlData";
|
||||
import { WalletData } from "../../data/WalletData";
|
||||
import proto from "db://assets/Scripts/proto/proto.pb.js";
|
||||
import LanguageUtils from "../../../Main/Common/LanguageUtils";
|
||||
const { ccclass, property } = _decorator;
|
||||
|
||||
@ccclass("PopupGirlDetailPanel")
|
||||
@@ -19,6 +20,8 @@ export class PopupGirlDetailPanel extends li_BaseView {
|
||||
private resId: number;
|
||||
private type: proto.cs.EnmResType;
|
||||
private base: DetailImageItem;
|
||||
|
||||
private desc: Label;
|
||||
openUIDataCT(data) {
|
||||
this.category = data.category;
|
||||
this.resId = data.resId;
|
||||
@@ -28,16 +31,35 @@ export class PopupGirlDetailPanel extends li_BaseView {
|
||||
}
|
||||
onLoadCT() {
|
||||
Utils.parseNode(this.node, this._nodeTab);
|
||||
this.desc = this._nodeTab.content.getComponent(Label);
|
||||
|
||||
let descText = LanguageUtils.getText("popupgirldetailpanel.content");
|
||||
|
||||
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
|
||||
// 价格
|
||||
this.priceLabel = this._nodeTab.Price.getComponent(Label);
|
||||
if (this.type === proto.cs.EnmResType.ERT_Image) {
|
||||
// 图片
|
||||
this.priceLabel.string = girlData.getGrilPhotoOriginalPrice(this.category.toString(), this.girlId, this.resId).toString();
|
||||
this.priceLabel.string = girlData
|
||||
.getGrilPhotoOriginalPrice(
|
||||
this.category.toString(),
|
||||
this.girlId,
|
||||
this.resId
|
||||
)
|
||||
.toString();
|
||||
} else if (this.type === proto.cs.EnmResType.ERT_Video) {
|
||||
// 视频
|
||||
this.priceLabel.string = girlData.getGrilVideoOriginalPrice(this.category.toString(), this.girlId, this.resId).toString();
|
||||
this.priceLabel.string = girlData
|
||||
.getGrilVideoOriginalPrice(
|
||||
this.category.toString(),
|
||||
this.girlId,
|
||||
this.resId
|
||||
)
|
||||
.toString();
|
||||
}
|
||||
|
||||
this.desc.string = descText.replace("{price}", this.priceLabel.string);
|
||||
|
||||
this.registerListener();
|
||||
}
|
||||
registerListener() {
|
||||
@@ -75,7 +97,7 @@ export class PopupGirlDetailPanel extends li_BaseView {
|
||||
walletData.vipExpire = Number(resData.vipExpire);
|
||||
// 刷新界面
|
||||
this.base.refreshVideoBuy(true);
|
||||
this.close();
|
||||
this.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ import { ThemeData } from "../../data/ThemeData";
|
||||
import { GirlData } from "../../data/GirlData";
|
||||
import { WalletData } from "../../data/WalletData";
|
||||
import { AccountData } from "../../data/AccountData";
|
||||
import proto from 'db://assets/Scripts/proto/proto.pb.js';
|
||||
import proto from "db://assets/Scripts/proto/proto.pb.js";
|
||||
|
||||
const { ccclass, property } = _decorator;
|
||||
|
||||
@@ -74,9 +74,7 @@ export class ThemePanel extends li_BaseView {
|
||||
}
|
||||
}
|
||||
// 请求主题数据
|
||||
const reqData = {
|
||||
|
||||
};
|
||||
const reqData = {};
|
||||
let res = await ThemeService.I.reqHallTheme(reqData);
|
||||
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
|
||||
// 保存数据
|
||||
@@ -90,14 +88,12 @@ export class ThemePanel extends li_BaseView {
|
||||
item.refresh(id);
|
||||
newNode.active = true;
|
||||
this.cache.push(item);
|
||||
this.content.addChild(newNode);
|
||||
this.content.addChild(newNode);
|
||||
}
|
||||
}
|
||||
|
||||
// 请求每日推荐
|
||||
const reqData2 = {
|
||||
|
||||
};
|
||||
const reqData2 = {};
|
||||
let res2 = await GirlService.I.reqDailyRecommend(reqData2);
|
||||
if (res2 && res2.code === proto.cs.EnmRetCode.SUCCESS) {
|
||||
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
|
||||
@@ -136,10 +132,10 @@ export class ThemePanel extends li_BaseView {
|
||||
});
|
||||
Utils.addInnerEL(InnerMsgCode.BalanceChange, this, () => {
|
||||
this.refreshCoinNum();
|
||||
});
|
||||
});
|
||||
Utils.addInnerEL(InnerMsgCode.VipExpireChange, this, () => {
|
||||
this.refreshVipExpire();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
enterShop() {
|
||||
@@ -147,7 +143,29 @@ export class ThemePanel extends li_BaseView {
|
||||
}
|
||||
|
||||
chatWithRec() {
|
||||
NavigationManager.Instance.navigateToChat(this.recId);
|
||||
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
|
||||
|
||||
// 是否已经解锁
|
||||
const isRelease = girlData.getIsRelease(
|
||||
girlData.getGrilCategoryById(this.recId).toString(),
|
||||
this.recId
|
||||
);
|
||||
const isFree =
|
||||
girlData.getGrilPrice(
|
||||
girlData.getGrilCategoryById(this.recId).toString(),
|
||||
this.recId
|
||||
) == 0;
|
||||
if (isRelease || isFree) {
|
||||
NavigationManager.Instance.navigateToGirlDetail(this.recId);
|
||||
ViewManager.I.closeView(this.node);
|
||||
} else {
|
||||
//未解锁
|
||||
ViewManager.I.openBundlesPopupView("GirlListPopupPanel", {
|
||||
base: this,
|
||||
category: girlData.getGrilCategoryById(this.recId),
|
||||
id: this.recId,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
openSetting() {
|
||||
@@ -172,18 +190,14 @@ export class ThemePanel extends li_BaseView {
|
||||
const leftTime = Utils.formatVipLeftTime(vipExpire);
|
||||
this.vipLeftTime.string = LanguageUtils.getText(
|
||||
"purchasepanel.vip_left"
|
||||
).replace("${leftTime}", leftTime);
|
||||
}
|
||||
).replace("${leftTime}", leftTime);
|
||||
}
|
||||
|
||||
onDestroy(): void {
|
||||
Utils.removeInnerEL(InnerMsgCode.LanguageChange, this, () => {
|
||||
this.recName.string = LanguageUtils.getText(this.rectNameKey);
|
||||
});
|
||||
Utils.removeInnerEL(InnerMsgCode.BalanceChange, this, () => {
|
||||
|
||||
});
|
||||
Utils.removeInnerEL(InnerMsgCode.VipExpireChange, this, () => {
|
||||
|
||||
});
|
||||
Utils.removeInnerEL(InnerMsgCode.BalanceChange, this, () => {});
|
||||
Utils.removeInnerEL(InnerMsgCode.VipExpireChange, this, () => {});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,19 +53,18 @@ export class DetailImageItem extends Component {
|
||||
}
|
||||
isVisible: boolean;
|
||||
onClickThis() {
|
||||
let data = {
|
||||
url: this.url,
|
||||
isImg: this.isImage,
|
||||
|
||||
closeFunc: () => {
|
||||
this.base.setVideEnable(true);
|
||||
},
|
||||
};
|
||||
// 数据
|
||||
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
|
||||
// 是否可见,不可见代表需要解锁
|
||||
|
||||
if (this.isVisible) {
|
||||
let data = {
|
||||
url: this.url,
|
||||
isImg: this.isImage,
|
||||
|
||||
closeFunc: () => {
|
||||
this.base.setVideEnable(true);
|
||||
},
|
||||
};
|
||||
if (this.url) {
|
||||
ViewManager.I.openBundlesView("ShowPanel", data);
|
||||
this.base.setVideEnable(false);
|
||||
@@ -199,12 +198,13 @@ export class DetailImageItem extends Component {
|
||||
|
||||
if (this.isVisible) {
|
||||
imgPath = this.url + "_thumbnail";
|
||||
|
||||
this.priceFrame.active = false;
|
||||
} else {
|
||||
this.priceFrame.active = true;
|
||||
this.videoPrice.string = price.toString();
|
||||
imgPath = this.url + "_thumbnail_blur";
|
||||
}
|
||||
this.priceFrame.active = price > 0;
|
||||
|
||||
this.videoPrice.string = price.toString();
|
||||
|
||||
ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Girls", () => {
|
||||
this.question.active = false; // 图片加载成功后隐藏问号
|
||||
@@ -214,6 +214,8 @@ export class DetailImageItem extends Component {
|
||||
|
||||
refreshVideoBuy(success: boolean) {
|
||||
if (success) {
|
||||
this.priceFrame.active = false;
|
||||
this.isVisible = true;
|
||||
const imgPath = this.url + "_thumbnail";
|
||||
ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Girls", () => {
|
||||
this.question.active = false; // 图片加载成功后隐藏问号
|
||||
|
||||
@@ -106,6 +106,9 @@ export class GirlListItem extends Component {
|
||||
this.category.toString(),
|
||||
this.id
|
||||
);
|
||||
this.price.string = girlData
|
||||
.getGrilOriginalPrice(this.category.toString(), this.id)
|
||||
.toString();
|
||||
|
||||
if (isRelease) {
|
||||
this.price.node.active = false;
|
||||
@@ -150,11 +153,8 @@ export class GirlListItem extends Component {
|
||||
}
|
||||
);
|
||||
|
||||
//虚假好感度
|
||||
const star = girlData.getStar(this.category.toString(), this.id);
|
||||
// this.starParent.active = ratio != 0;
|
||||
// this.chatIcon.active = ratio != 0;
|
||||
// this.price.node.active = ratio == 0;
|
||||
|
||||
for (let i = 0; i < this.stars.length; i++) {
|
||||
const element = this.stars[i];
|
||||
if (star > i) {
|
||||
|
||||
@@ -2859,9 +2859,9 @@
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"r": 214,
|
||||
"g": 214,
|
||||
"b": 214,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
@@ -2901,7 +2901,7 @@
|
||||
},
|
||||
"clickEvents": [],
|
||||
"_interactable": true,
|
||||
"_transition": 2,
|
||||
"_transition": 1,
|
||||
"_normalColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 214,
|
||||
|
||||
@@ -730,7 +730,7 @@
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_string": "You need to spend $99 to unlock the video.",
|
||||
"_string": "You need to spend {price} to unlock the video.",
|
||||
"_horizontalAlign": 1,
|
||||
"_verticalAlign": 1,
|
||||
"_actualFontSize": 55,
|
||||
@@ -1532,9 +1532,9 @@
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"r": 214,
|
||||
"g": 214,
|
||||
"b": 214,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
@@ -1574,7 +1574,7 @@
|
||||
},
|
||||
"clickEvents": [],
|
||||
"_interactable": true,
|
||||
"_transition": 2,
|
||||
"_transition": 1,
|
||||
"_normalColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 214,
|
||||
|
||||
@@ -3657,8 +3657,8 @@
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 102,
|
||||
"height": 89
|
||||
"width": 180,
|
||||
"height": 145
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -3694,7 +3694,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941",
|
||||
"__uuid__": "ebf57308-2144-42ce-ba57-52fb092986b4@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
@@ -4345,7 +4345,7 @@
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 102,
|
||||
"width": 198,
|
||||
"height": 89
|
||||
},
|
||||
"_anchorPoint": {
|
||||
@@ -4382,7 +4382,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941",
|
||||
"__uuid__": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
@@ -5033,8 +5033,8 @@
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 102,
|
||||
"height": 89
|
||||
"width": 211,
|
||||
"height": 141
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -5070,7 +5070,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941",
|
||||
"__uuid__": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
@@ -5721,8 +5721,8 @@
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 102,
|
||||
"height": 89
|
||||
"width": 215,
|
||||
"height": 152
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -5758,7 +5758,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941",
|
||||
"__uuid__": "102a42a1-679d-4153-89e4-816162930797@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
@@ -6409,8 +6409,8 @@
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 102,
|
||||
"height": 89
|
||||
"width": 201,
|
||||
"height": 188
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -6446,7 +6446,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941",
|
||||
"__uuid__": "6a555064-ee27-4a70-a836-0f997bf93f1e@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
@@ -7097,8 +7097,8 @@
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 102,
|
||||
"height": 89
|
||||
"width": 247,
|
||||
"height": 178
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -7134,7 +7134,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941",
|
||||
"__uuid__": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "6a575808-ac52-447e-871c-3c65972185c6",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "6a575808-ac52-447e-871c-3c65972185c6@6c48a",
|
||||
"displayName": "矩形 3",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "6a575808-ac52-447e-871c-3c65972185c6",
|
||||
"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": "6a575808-ac52-447e-871c-3c65972185c6@f9941",
|
||||
"displayName": "矩形 3",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 458,
|
||||
"height": 138,
|
||||
"rawWidth": 458,
|
||||
"rawHeight": 138,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-229,
|
||||
-69,
|
||||
0,
|
||||
229,
|
||||
-69,
|
||||
0,
|
||||
-229,
|
||||
69,
|
||||
0,
|
||||
229,
|
||||
69,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
138,
|
||||
458,
|
||||
138,
|
||||
0,
|
||||
0,
|
||||
458,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-229,
|
||||
-69,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
229,
|
||||
69,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "6a575808-ac52-447e-871c-3c65972185c6@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "6a575808-ac52-447e-871c-3c65972185c6@6c48a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"ver": "1.2.0",
|
||||
"importer": "directory",
|
||||
"imported": true,
|
||||
"uuid": "fb28101b-4f1e-4556-86f2-a1330e1ac077",
|
||||
"files": [],
|
||||
"subMetas": {},
|
||||
"userData": {}
|
||||
}
|
||||
|
After Width: | Height: | Size: 371 B |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "c84a48a4-acbd-415d-a694-58c79f5cb141",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "c84a48a4-acbd-415d-a694-58c79f5cb141@6c48a",
|
||||
"displayName": "多边形 1 拷贝",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "c84a48a4-acbd-415d-a694-58c79f5cb141",
|
||||
"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": "c84a48a4-acbd-415d-a694-58c79f5cb141@f9941",
|
||||
"displayName": "多边形 1 拷贝",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 31,
|
||||
"height": 21,
|
||||
"rawWidth": 31,
|
||||
"rawHeight": 21,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-15.5,
|
||||
-10.5,
|
||||
0,
|
||||
15.5,
|
||||
-10.5,
|
||||
0,
|
||||
-15.5,
|
||||
10.5,
|
||||
0,
|
||||
15.5,
|
||||
10.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
21,
|
||||
31,
|
||||
21,
|
||||
0,
|
||||
0,
|
||||
31,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-15.5,
|
||||
-10.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
15.5,
|
||||
10.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "c84a48a4-acbd-415d-a694-58c79f5cb141@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "c84a48a4-acbd-415d-a694-58c79f5cb141@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "59ec8fdd-8a92-42e7-a8c8-108506149f08",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "59ec8fdd-8a92-42e7-a8c8-108506149f08@6c48a",
|
||||
"displayName": "矩形 10 拷111贝",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "59ec8fdd-8a92-42e7-a8c8-108506149f08",
|
||||
"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": "59ec8fdd-8a92-42e7-a8c8-108506149f08@f9941",
|
||||
"displayName": "矩形 10 拷111贝",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 193,
|
||||
"height": 94,
|
||||
"rawWidth": 193,
|
||||
"rawHeight": 94,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-96.5,
|
||||
-47,
|
||||
0,
|
||||
96.5,
|
||||
-47,
|
||||
0,
|
||||
-96.5,
|
||||
47,
|
||||
0,
|
||||
96.5,
|
||||
47,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
94,
|
||||
193,
|
||||
94,
|
||||
0,
|
||||
0,
|
||||
193,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-96.5,
|
||||
-47,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
96.5,
|
||||
47,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "59ec8fdd-8a92-42e7-a8c8-108506149f08@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "59ec8fdd-8a92-42e7-a8c8-108506149f08@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "698fab8b-2941-4989-8ebb-12029155498c",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "698fab8b-2941-4989-8ebb-12029155498c@6c48a",
|
||||
"displayName": "矩形 10 拷贝",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "698fab8b-2941-4989-8ebb-12029155498c",
|
||||
"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": "698fab8b-2941-4989-8ebb-12029155498c@f9941",
|
||||
"displayName": "矩形 10 拷贝",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 193,
|
||||
"height": 94,
|
||||
"rawWidth": 193,
|
||||
"rawHeight": 94,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-96.5,
|
||||
-47,
|
||||
0,
|
||||
96.5,
|
||||
-47,
|
||||
0,
|
||||
-96.5,
|
||||
47,
|
||||
0,
|
||||
96.5,
|
||||
47,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
94,
|
||||
193,
|
||||
94,
|
||||
0,
|
||||
0,
|
||||
193,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-96.5,
|
||||
-47,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
96.5,
|
||||
47,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "698fab8b-2941-4989-8ebb-12029155498c@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "698fab8b-2941-4989-8ebb-12029155498c@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "db2b25f4-2d5c-49a7-82f4-6400a6656c08",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "db2b25f4-2d5c-49a7-82f4-6400a6656c08@6c48a",
|
||||
"displayName": "矩形 10",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "db2b25f4-2d5c-49a7-82f4-6400a6656c08",
|
||||
"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": "db2b25f4-2d5c-49a7-82f4-6400a6656c08@f9941",
|
||||
"displayName": "矩形 10",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 344,
|
||||
"height": 94,
|
||||
"rawWidth": 344,
|
||||
"rawHeight": 94,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-172,
|
||||
-47,
|
||||
0,
|
||||
172,
|
||||
-47,
|
||||
0,
|
||||
-172,
|
||||
47,
|
||||
0,
|
||||
172,
|
||||
47,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
94,
|
||||
344,
|
||||
94,
|
||||
0,
|
||||
0,
|
||||
344,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-172,
|
||||
-47,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
172,
|
||||
47,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "db2b25f4-2d5c-49a7-82f4-6400a6656c08@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "db2b25f4-2d5c-49a7-82f4-6400a6656c08@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "b460dd67-58fd-4c43-9514-3d92844c458c",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "b460dd67-58fd-4c43-9514-3d92844c458c@6c48a",
|
||||
"displayName": "矩形 11 拷贝 5",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "b460dd67-58fd-4c43-9514-3d92844c458c",
|
||||
"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": "b460dd67-58fd-4c43-9514-3d92844c458c@f9941",
|
||||
"displayName": "矩形 11 拷贝 5",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 865,
|
||||
"height": 135,
|
||||
"rawWidth": 865,
|
||||
"rawHeight": 135,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-432.5,
|
||||
-67.5,
|
||||
0,
|
||||
432.5,
|
||||
-67.5,
|
||||
0,
|
||||
-432.5,
|
||||
67.5,
|
||||
0,
|
||||
432.5,
|
||||
67.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
135,
|
||||
865,
|
||||
135,
|
||||
0,
|
||||
0,
|
||||
865,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-432.5,
|
||||
-67.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
432.5,
|
||||
67.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "b460dd67-58fd-4c43-9514-3d92844c458c@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "b460dd67-58fd-4c43-9514-3d92844c458c@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 498 B |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "6d0a8cc2-834f-4734-966c-9a62178b2510",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "6d0a8cc2-834f-4734-966c-9a62178b2510@6c48a",
|
||||
"displayName": "矩形 8 拷贝 3",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "6d0a8cc2-834f-4734-966c-9a62178b2510",
|
||||
"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": "6d0a8cc2-834f-4734-966c-9a62178b2510@f9941",
|
||||
"displayName": "矩形 8 拷贝 3",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 60,
|
||||
"height": 60,
|
||||
"rawWidth": 60,
|
||||
"rawHeight": 60,
|
||||
"borderTop": 16,
|
||||
"borderBottom": 16,
|
||||
"borderLeft": 16,
|
||||
"borderRight": 16,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-30,
|
||||
-30,
|
||||
0,
|
||||
30,
|
||||
-30,
|
||||
0,
|
||||
-30,
|
||||
30,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
60,
|
||||
60,
|
||||
60,
|
||||
0,
|
||||
0,
|
||||
60,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-30,
|
||||
-30,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
30,
|
||||
30,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "6d0a8cc2-834f-4734-966c-9a62178b2510@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "6d0a8cc2-834f-4734-966c-9a62178b2510@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 417 B |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "5b879cbf-9bd1-4f40-af9c-30399e1997fa",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "5b879cbf-9bd1-4f40-af9c-30399e1997fa@6c48a",
|
||||
"displayName": "矩形 8 拷贝 4",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "5b879cbf-9bd1-4f40-af9c-30399e1997fa",
|
||||
"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": "5b879cbf-9bd1-4f40-af9c-30399e1997fa@f9941",
|
||||
"displayName": "矩形 8 拷贝 4",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 79,
|
||||
"height": 73,
|
||||
"rawWidth": 79,
|
||||
"rawHeight": 73,
|
||||
"borderTop": 14,
|
||||
"borderBottom": 14,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-39.5,
|
||||
-36.5,
|
||||
0,
|
||||
39.5,
|
||||
-36.5,
|
||||
0,
|
||||
-39.5,
|
||||
36.5,
|
||||
0,
|
||||
39.5,
|
||||
36.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
73,
|
||||
79,
|
||||
73,
|
||||
0,
|
||||
0,
|
||||
79,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-39.5,
|
||||
-36.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
39.5,
|
||||
36.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "5b879cbf-9bd1-4f40-af9c-30399e1997fa@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "5b879cbf-9bd1-4f40-af9c-30399e1997fa@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "135b84c5-52d8-4565-812e-c212a5f1a366",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "135b84c5-52d8-4565-812e-c212a5f1a366@6c48a",
|
||||
"displayName": "矩形 8 拷贝 993",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "135b84c5-52d8-4565-812e-c212a5f1a366",
|
||||
"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": "135b84c5-52d8-4565-812e-c212a5f1a366@f9941",
|
||||
"displayName": "矩形 8 拷贝 993",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 150,
|
||||
"height": 150,
|
||||
"rawWidth": 150,
|
||||
"rawHeight": 150,
|
||||
"borderTop": 46,
|
||||
"borderBottom": 46,
|
||||
"borderLeft": 46,
|
||||
"borderRight": 46,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-75,
|
||||
-75,
|
||||
0,
|
||||
75,
|
||||
-75,
|
||||
0,
|
||||
-75,
|
||||
75,
|
||||
0,
|
||||
75,
|
||||
75,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
150,
|
||||
150,
|
||||
150,
|
||||
0,
|
||||
0,
|
||||
150,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-75,
|
||||
-75,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
75,
|
||||
75,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "135b84c5-52d8-4565-812e-c212a5f1a366@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "135b84c5-52d8-4565-812e-c212a5f1a366@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 131 B |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "abcf6b7d-4710-47a3-a316-bdabaffb2a17",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "abcf6b7d-4710-47a3-a316-bdabaffb2a17@6c48a",
|
||||
"displayName": "矩形 9",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "abcf6b7d-4710-47a3-a316-bdabaffb2a17",
|
||||
"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": "abcf6b7d-4710-47a3-a316-bdabaffb2a17@f9941",
|
||||
"displayName": "矩形 9",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 285,
|
||||
"height": 5,
|
||||
"rawWidth": 285,
|
||||
"rawHeight": 5,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-142.5,
|
||||
-2.5,
|
||||
0,
|
||||
142.5,
|
||||
-2.5,
|
||||
0,
|
||||
-142.5,
|
||||
2.5,
|
||||
0,
|
||||
142.5,
|
||||
2.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
5,
|
||||
285,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
285,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-142.5,
|
||||
-2.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
142.5,
|
||||
2.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "abcf6b7d-4710-47a3-a316-bdabaffb2a17@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "abcf6b7d-4710-47a3-a316-bdabaffb2a17@6c48a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"ver": "1.2.0",
|
||||
"importer": "directory",
|
||||
"imported": true,
|
||||
"uuid": "972ef93f-06b0-4fdb-9fae-608e19dd96c3",
|
||||
"files": [],
|
||||
"subMetas": {},
|
||||
"userData": {}
|
||||
}
|
||||
|
After Width: | Height: | Size: 66 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "6a555064-ee27-4a70-a836-0f997bf93f1e",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "6a555064-ee27-4a70-a836-0f997bf93f1e@6c48a",
|
||||
"displayName": "图层-49",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "6a555064-ee27-4a70-a836-0f997bf93f1e",
|
||||
"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": "6a555064-ee27-4a70-a836-0f997bf93f1e@f9941",
|
||||
"displayName": "图层-49",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 6.5,
|
||||
"offsetY": 27,
|
||||
"trimX": 61,
|
||||
"trimY": 34,
|
||||
"width": 201,
|
||||
"height": 188,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-100.5,
|
||||
-94,
|
||||
0,
|
||||
100.5,
|
||||
-94,
|
||||
0,
|
||||
-100.5,
|
||||
94,
|
||||
0,
|
||||
100.5,
|
||||
94,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
61,
|
||||
276,
|
||||
262,
|
||||
276,
|
||||
61,
|
||||
88,
|
||||
262,
|
||||
88
|
||||
],
|
||||
"nuv": [
|
||||
0.1967741935483871,
|
||||
0.2838709677419355,
|
||||
0.8451612903225807,
|
||||
0.2838709677419355,
|
||||
0.1967741935483871,
|
||||
0.8903225806451613,
|
||||
0.8451612903225807,
|
||||
0.8903225806451613
|
||||
],
|
||||
"minPos": [
|
||||
-100.5,
|
||||
-94,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
100.5,
|
||||
94,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "6a555064-ee27-4a70-a836-0f997bf93f1e@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "6a555064-ee27-4a70-a836-0f997bf93f1e@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 31 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@6c48a",
|
||||
"displayName": "图层-50",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db",
|
||||
"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": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@f9941",
|
||||
"displayName": "图层-50",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 5,
|
||||
"offsetY": 9.5,
|
||||
"trimX": 61,
|
||||
"trimY": 101,
|
||||
"width": 198,
|
||||
"height": 89,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-99,
|
||||
-44.5,
|
||||
0,
|
||||
99,
|
||||
-44.5,
|
||||
0,
|
||||
-99,
|
||||
44.5,
|
||||
0,
|
||||
99,
|
||||
44.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
61,
|
||||
209,
|
||||
259,
|
||||
209,
|
||||
61,
|
||||
120,
|
||||
259,
|
||||
120
|
||||
],
|
||||
"nuv": [
|
||||
0.1967741935483871,
|
||||
0.3870967741935484,
|
||||
0.8354838709677419,
|
||||
0.3870967741935484,
|
||||
0.1967741935483871,
|
||||
0.6741935483870968,
|
||||
0.8354838709677419,
|
||||
0.6741935483870968
|
||||
],
|
||||
"minPos": [
|
||||
-99,
|
||||
-44.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
99,
|
||||
44.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 53 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "ebf57308-2144-42ce-ba57-52fb092986b4",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "ebf57308-2144-42ce-ba57-52fb092986b4@6c48a",
|
||||
"displayName": "图层-52",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "ebf57308-2144-42ce-ba57-52fb092986b4",
|
||||
"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": "ebf57308-2144-42ce-ba57-52fb092986b4@f9941",
|
||||
"displayName": "图层-52",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": -2,
|
||||
"offsetY": 21.5,
|
||||
"trimX": 63,
|
||||
"trimY": 61,
|
||||
"width": 180,
|
||||
"height": 145,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-90,
|
||||
-72.5,
|
||||
0,
|
||||
90,
|
||||
-72.5,
|
||||
0,
|
||||
-90,
|
||||
72.5,
|
||||
0,
|
||||
90,
|
||||
72.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
63,
|
||||
249,
|
||||
243,
|
||||
249,
|
||||
63,
|
||||
104,
|
||||
243,
|
||||
104
|
||||
],
|
||||
"nuv": [
|
||||
0.2032258064516129,
|
||||
0.33548387096774196,
|
||||
0.7838709677419354,
|
||||
0.33548387096774196,
|
||||
0.2032258064516129,
|
||||
0.8032258064516129,
|
||||
0.7838709677419354,
|
||||
0.8032258064516129
|
||||
],
|
||||
"minPos": [
|
||||
-90,
|
||||
-72.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
90,
|
||||
72.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "ebf57308-2144-42ce-ba57-52fb092986b4@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "ebf57308-2144-42ce-ba57-52fb092986b4@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 49 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@6c48a",
|
||||
"displayName": "图层-53",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba",
|
||||
"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": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@f9941",
|
||||
"displayName": "图层-53",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 1.5,
|
||||
"offsetY": 17.5,
|
||||
"trimX": 51,
|
||||
"trimY": 67,
|
||||
"width": 211,
|
||||
"height": 141,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-105.5,
|
||||
-70.5,
|
||||
0,
|
||||
105.5,
|
||||
-70.5,
|
||||
0,
|
||||
-105.5,
|
||||
70.5,
|
||||
0,
|
||||
105.5,
|
||||
70.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
51,
|
||||
243,
|
||||
262,
|
||||
243,
|
||||
51,
|
||||
102,
|
||||
262,
|
||||
102
|
||||
],
|
||||
"nuv": [
|
||||
0.16451612903225807,
|
||||
0.32903225806451614,
|
||||
0.8451612903225807,
|
||||
0.32903225806451614,
|
||||
0.16451612903225807,
|
||||
0.7838709677419354,
|
||||
0.8451612903225807,
|
||||
0.7838709677419354
|
||||
],
|
||||
"minPos": [
|
||||
-105.5,
|
||||
-70.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
105.5,
|
||||
70.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 54 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "102a42a1-679d-4153-89e4-816162930797",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "102a42a1-679d-4153-89e4-816162930797@6c48a",
|
||||
"displayName": "图层-54",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "102a42a1-679d-4153-89e4-816162930797",
|
||||
"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": "102a42a1-679d-4153-89e4-816162930797@f9941",
|
||||
"displayName": "图层-54",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 1.5,
|
||||
"offsetY": 23,
|
||||
"trimX": 49,
|
||||
"trimY": 56,
|
||||
"width": 215,
|
||||
"height": 152,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-107.5,
|
||||
-76,
|
||||
0,
|
||||
107.5,
|
||||
-76,
|
||||
0,
|
||||
-107.5,
|
||||
76,
|
||||
0,
|
||||
107.5,
|
||||
76,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
49,
|
||||
254,
|
||||
264,
|
||||
254,
|
||||
49,
|
||||
102,
|
||||
264,
|
||||
102
|
||||
],
|
||||
"nuv": [
|
||||
0.15806451612903225,
|
||||
0.32903225806451614,
|
||||
0.8516129032258064,
|
||||
0.32903225806451614,
|
||||
0.15806451612903225,
|
||||
0.8193548387096774,
|
||||
0.8516129032258064,
|
||||
0.8193548387096774
|
||||
],
|
||||
"minPos": [
|
||||
-107.5,
|
||||
-76,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
107.5,
|
||||
76,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "102a42a1-679d-4153-89e4-816162930797@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "102a42a1-679d-4153-89e4-816162930797@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 78 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@6c48a",
|
||||
"displayName": "组-22",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa",
|
||||
"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": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@f9941",
|
||||
"displayName": "组-22",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 11.5,
|
||||
"offsetY": 18,
|
||||
"trimX": 43,
|
||||
"trimY": 48,
|
||||
"width": 247,
|
||||
"height": 178,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-123.5,
|
||||
-89,
|
||||
0,
|
||||
123.5,
|
||||
-89,
|
||||
0,
|
||||
-123.5,
|
||||
89,
|
||||
0,
|
||||
123.5,
|
||||
89,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
43,
|
||||
262,
|
||||
290,
|
||||
262,
|
||||
43,
|
||||
84,
|
||||
290,
|
||||
84
|
||||
],
|
||||
"nuv": [
|
||||
0.13870967741935483,
|
||||
0.2709677419354839,
|
||||
0.9354838709677419,
|
||||
0.2709677419354839,
|
||||
0.13870967741935483,
|
||||
0.8451612903225807,
|
||||
0.9354838709677419,
|
||||
0.8451612903225807
|
||||
],
|
||||
"minPos": [
|
||||
-123.5,
|
||||
-89,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
123.5,
|
||||
89,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@6c48a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"ver": "1.2.0",
|
||||
"importer": "directory",
|
||||
"imported": true,
|
||||
"uuid": "59917a62-56a6-4928-bdc2-3cd2714f983c",
|
||||
"files": [],
|
||||
"subMetas": {},
|
||||
"userData": {}
|
||||
}
|
||||
|
After Width: | Height: | Size: 58 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "fa89314f-f305-4cbd-90b4-eba6226279eb",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "fa89314f-f305-4cbd-90b4-eba6226279eb@6c48a",
|
||||
"displayName": "图层-56",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "fa89314f-f305-4cbd-90b4-eba6226279eb",
|
||||
"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": "fa89314f-f305-4cbd-90b4-eba6226279eb@f9941",
|
||||
"displayName": "图层-56",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 2,
|
||||
"offsetY": 20,
|
||||
"trimX": 22,
|
||||
"trimY": 57,
|
||||
"width": 270,
|
||||
"height": 156,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-135,
|
||||
-78,
|
||||
0,
|
||||
135,
|
||||
-78,
|
||||
0,
|
||||
-135,
|
||||
78,
|
||||
0,
|
||||
135,
|
||||
78,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
22,
|
||||
253,
|
||||
292,
|
||||
253,
|
||||
22,
|
||||
97,
|
||||
292,
|
||||
97
|
||||
],
|
||||
"nuv": [
|
||||
0.07096774193548387,
|
||||
0.31290322580645163,
|
||||
0.9419354838709677,
|
||||
0.31290322580645163,
|
||||
0.07096774193548387,
|
||||
0.8161290322580645,
|
||||
0.9419354838709677,
|
||||
0.8161290322580645
|
||||
],
|
||||
"minPos": [
|
||||
-135,
|
||||
-78,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
135,
|
||||
78,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "fa89314f-f305-4cbd-90b4-eba6226279eb@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "fa89314f-f305-4cbd-90b4-eba6226279eb@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 52 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "18f505b9-c8f4-4f58-85a0-9056a181e1ec",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@6c48a",
|
||||
"displayName": "图层-57",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "18f505b9-c8f4-4f58-85a0-9056a181e1ec",
|
||||
"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": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@f9941",
|
||||
"displayName": "图层-57",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": -2,
|
||||
"offsetY": 19,
|
||||
"trimX": 34,
|
||||
"trimY": 59,
|
||||
"width": 238,
|
||||
"height": 154,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-119,
|
||||
-77,
|
||||
0,
|
||||
119,
|
||||
-77,
|
||||
0,
|
||||
-119,
|
||||
77,
|
||||
0,
|
||||
119,
|
||||
77,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
34,
|
||||
251,
|
||||
272,
|
||||
251,
|
||||
34,
|
||||
97,
|
||||
272,
|
||||
97
|
||||
],
|
||||
"nuv": [
|
||||
0.10967741935483871,
|
||||
0.31290322580645163,
|
||||
0.8774193548387097,
|
||||
0.31290322580645163,
|
||||
0.10967741935483871,
|
||||
0.8096774193548387,
|
||||
0.8774193548387097,
|
||||
0.8096774193548387
|
||||
],
|
||||
"minPos": [
|
||||
-119,
|
||||
-77,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
119,
|
||||
77,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 36 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@6c48a",
|
||||
"displayName": "图层-58-拷贝-5",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3",
|
||||
"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": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@f9941",
|
||||
"displayName": "图层-58-拷贝-5",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 4.5,
|
||||
"offsetY": 12,
|
||||
"trimX": 65,
|
||||
"trimY": 83,
|
||||
"width": 189,
|
||||
"height": 120,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-94.5,
|
||||
-60,
|
||||
0,
|
||||
94.5,
|
||||
-60,
|
||||
0,
|
||||
-94.5,
|
||||
60,
|
||||
0,
|
||||
94.5,
|
||||
60,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
65,
|
||||
227,
|
||||
254,
|
||||
227,
|
||||
65,
|
||||
107,
|
||||
254,
|
||||
107
|
||||
],
|
||||
"nuv": [
|
||||
0.20967741935483872,
|
||||
0.34516129032258064,
|
||||
0.8193548387096774,
|
||||
0.34516129032258064,
|
||||
0.20967741935483872,
|
||||
0.7322580645161291,
|
||||
0.8193548387096774,
|
||||
0.7322580645161291
|
||||
],
|
||||
"minPos": [
|
||||
-94.5,
|
||||
-60,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
94.5,
|
||||
60,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@6c48a",
|
||||
"displayName": "图层-592",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61",
|
||||
"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": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@f9941",
|
||||
"displayName": "图层-592",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": -0.5,
|
||||
"offsetY": 11.5,
|
||||
"trimX": 85,
|
||||
"trimY": 95,
|
||||
"width": 139,
|
||||
"height": 97,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-69.5,
|
||||
-48.5,
|
||||
0,
|
||||
69.5,
|
||||
-48.5,
|
||||
0,
|
||||
-69.5,
|
||||
48.5,
|
||||
0,
|
||||
69.5,
|
||||
48.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
85,
|
||||
215,
|
||||
224,
|
||||
215,
|
||||
85,
|
||||
118,
|
||||
224,
|
||||
118
|
||||
],
|
||||
"nuv": [
|
||||
0.27419354838709675,
|
||||
0.38064516129032255,
|
||||
0.7225806451612903,
|
||||
0.38064516129032255,
|
||||
0.27419354838709675,
|
||||
0.6935483870967742,
|
||||
0.7225806451612903,
|
||||
0.6935483870967742
|
||||
],
|
||||
"minPos": [
|
||||
-69.5,
|
||||
-48.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
69.5,
|
||||
48.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 54 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "50eabd8e-01a9-487a-8a37-bc323d466a0b",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "50eabd8e-01a9-487a-8a37-bc323d466a0b@6c48a",
|
||||
"displayName": "组-23",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "50eabd8e-01a9-487a-8a37-bc323d466a0b",
|
||||
"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": "50eabd8e-01a9-487a-8a37-bc323d466a0b@f9941",
|
||||
"displayName": "组-23",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 3,
|
||||
"offsetY": 5.5,
|
||||
"trimX": 33,
|
||||
"trimY": 87,
|
||||
"width": 250,
|
||||
"height": 125,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-125,
|
||||
-62.5,
|
||||
0,
|
||||
125,
|
||||
-62.5,
|
||||
0,
|
||||
-125,
|
||||
62.5,
|
||||
0,
|
||||
125,
|
||||
62.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
33,
|
||||
223,
|
||||
283,
|
||||
223,
|
||||
33,
|
||||
98,
|
||||
283,
|
||||
98
|
||||
],
|
||||
"nuv": [
|
||||
0.1064516129032258,
|
||||
0.3161290322580645,
|
||||
0.9129032258064517,
|
||||
0.3161290322580645,
|
||||
0.1064516129032258,
|
||||
0.7193548387096774,
|
||||
0.9129032258064517,
|
||||
0.7193548387096774
|
||||
],
|
||||
"minPos": [
|
||||
-125,
|
||||
-62.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
125,
|
||||
62.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "50eabd8e-01a9-487a-8a37-bc323d466a0b@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "50eabd8e-01a9-487a-8a37-bc323d466a0b@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 67 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "f5bd194a-5764-4365-a873-f1b266f73164",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "f5bd194a-5764-4365-a873-f1b266f73164@6c48a",
|
||||
"displayName": "组-24",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "f5bd194a-5764-4365-a873-f1b266f73164",
|
||||
"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": "f5bd194a-5764-4365-a873-f1b266f73164@f9941",
|
||||
"displayName": "组-24",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 1,
|
||||
"offsetY": 11,
|
||||
"trimX": 37,
|
||||
"trimY": 58,
|
||||
"width": 238,
|
||||
"height": 172,
|
||||
"rawWidth": 310,
|
||||
"rawHeight": 310,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-119,
|
||||
-86,
|
||||
0,
|
||||
119,
|
||||
-86,
|
||||
0,
|
||||
-119,
|
||||
86,
|
||||
0,
|
||||
119,
|
||||
86,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
37,
|
||||
252,
|
||||
275,
|
||||
252,
|
||||
37,
|
||||
80,
|
||||
275,
|
||||
80
|
||||
],
|
||||
"nuv": [
|
||||
0.11935483870967742,
|
||||
0.25806451612903225,
|
||||
0.8870967741935484,
|
||||
0.25806451612903225,
|
||||
0.11935483870967742,
|
||||
0.8129032258064516,
|
||||
0.8870967741935484,
|
||||
0.8129032258064516
|
||||
],
|
||||
"minPos": [
|
||||
-119,
|
||||
-86,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
119,
|
||||
86,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "f5bd194a-5764-4365-a873-f1b266f73164@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "f5bd194a-5764-4365-a873-f1b266f73164@6c48a"
|
||||
}
|
||||
}
|
||||