收藏功能&排行榜功能

This commit is contained in:
2025-10-27 17:33:09 +08:00
parent 3cff8f8f28
commit 441d823341
50 changed files with 3809 additions and 4489 deletions
+1 -1
View File
@@ -1709,7 +1709,7 @@
},
{
"__type__": "cc.Node",
"_name": "loginLabel",
"_name": "guestloginLabel",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
+10 -2
View File
@@ -76,6 +76,7 @@ export class PreloadUI extends Component {
private progressNode: Node;
private loginLabel: Label;
private guestLoginLabel: Label;
private desc: Label;
// 视频播放状态跟踪
@@ -93,12 +94,14 @@ export class PreloadUI extends Component {
this.loginBtn.active = false;
this.guestLoginBtn = this._nodeTab.guestBtnLogin;
this.loginBtn.active = false;
this.guestLoginBtn.active = false;
this.appVersion.string = `app version: ${prodConfig.appVersion}`;
this.VideoPlayer = this._nodeTab.VideoPlayer.getComponent(VideoPlayer);
this.loginLabel = this._nodeTab.loginLabel.getComponent(Label);
this.guestLoginLabel = this._nodeTab.guestloginLabel.getComponent(Label);
this.desc = this._nodeTab.Desc.getComponent(Label);
// 设置视频为静音,提高移动端自动播放成功率
@@ -140,14 +143,19 @@ export class PreloadUI extends Component {
switch (LanguageUtils.CurrentLanguage) {
case LanguageType.CN:
this.loginLabel.string = "登录";
this.guestLoginLabel.string = "游客登陆";
this.desc.string = "释放你的所有欲望";
break;
case LanguageType.EN:
this.loginLabel.string = "LOG IN";
this.guestLoginLabel.string = "GUEST LOG IN";
this.desc.string = "Unleash All Your Desires";
break;
case LanguageType.HI:
this.loginLabel.string = "लॉग इन";
this.guestLoginLabel.string = "ज़ियारती लॉगिन";
this.desc.string = "अपनी सारी इच्छाओं को मुक्त करें";
break;
default:
@@ -310,7 +318,7 @@ export class PreloadUI extends Component {
this.preloadFinish = true;
//TODO:获取当前有无账号信息
this.loginBtn.active = true;
this.loginBtn.active = false;
this.guestLoginBtn.active = true;
}
+63 -1
View File
@@ -28,6 +28,7 @@ export class MainController {
private isDailyRecommendPreloaded: boolean = false;
private isRecommendListPreloaded: boolean = false;
private isShopListPreloaded: boolean = false;
private isBookmarkListPreloaded: boolean = false;
/**
* 初始化并预加载数据
@@ -41,6 +42,7 @@ export class MainController {
//this.preloadDailyRecommend(),
this.preloadRecommendList(true, 1, 10),
this.preloadShopList(),
this.preloadBookmarkList(),
]);
logger.log("[MainController] 数据预加载完成");
@@ -180,6 +182,37 @@ export class MainController {
}
}
/**
* 预加载收藏列表
*/
async preloadBookmarkList(): Promise<boolean> {
if (this.isBookmarkListPreloaded) {
logger.log("[MainController] 收藏列表数据已预加载");
return true;
}
try {
logger.log("[MainController] 开始预加载收藏列表数据");
const reqData = {};
const res = await GirlService.I.reqBookmarkGirlList(reqData);
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
// 保存数据到DataManager
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
girlData.setBookmarkGirlList(res.data);
this.isBookmarkListPreloaded = true;
logger.log("[MainController] 收藏列表数据预加载成功");
return true;
} else {
logger.warn("[MainController] 收藏列表数据预加载失败:", res);
return false;
}
} catch (error) {
logger.error("[MainController] 收藏列表数据预加载异常:", error);
return false;
}
}
/**
* 检查数据是否已预加载
*/
@@ -188,7 +221,8 @@ export class MainController {
this.isThemeDataPreloaded &&
this.isDailyRecommendPreloaded &&
this.isRecommendListPreloaded &&
this.isShopListPreloaded
this.isShopListPreloaded &&
this.isBookmarkListPreloaded
);
}
@@ -201,6 +235,7 @@ export class MainController {
dailyRecommend: this.isDailyRecommendPreloaded,
recommendList: this.isRecommendListPreloaded,
shopList: this.isShopListPreloaded,
bookmarkList: this.isBookmarkListPreloaded,
allComplete: this.isDataPreloaded(),
};
}
@@ -213,6 +248,7 @@ export class MainController {
this.isDailyRecommendPreloaded = false;
this.isRecommendListPreloaded = false;
this.isShopListPreloaded = false;
this.isBookmarkListPreloaded = false;
logger.log("[MainController] 预加载状态已重置");
}
@@ -296,4 +332,30 @@ export class MainController {
return false;
}
}
/**
* 强制刷新收藏列表数据
*/
async refreshBookmarkList(): Promise<boolean> {
logger.log("[MainController] 开始强制刷新收藏列表数据");
try {
const reqData = {};
const res = await GirlService.I.reqBookmarkGirlList(reqData);
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
// 保存数据到DataManager
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
girlData.setBookmarkGirlList(res.data);
this.isBookmarkListPreloaded = true;
logger.log("[MainController] 收藏列表数据刷新成功");
return true;
} else {
logger.warn("[MainController] 收藏列表数据刷新失败:", res);
return false;
}
} catch (error) {
logger.error("[MainController] 收藏列表数据刷新异常:", error);
return false;
}
}
}
+29 -1
View File
@@ -1533,7 +1533,35 @@ export class GirlData extends BaseData {
}
// 返回结果
return result;
}
}
/** 获取按收藏时间排序的收藏技师ID(最新的在前) */
public getAllBookmarkGirlIdsSortedByTime(): number[] {
const result: Array<{
girlId: number;
bookmarkTime: number;
category: string;
}> = [];
const seen = new Set<number>(); // 用来去重
const cats = this.ensureCategories();
// 收集所有收藏的女孩ID及其收藏时间
for (const [categoryId, bucket] of cats.entries()) {
for (const girlId of bucket.girlIds) {
if (this.isBookmarkGirl(categoryId, girlId) && !seen.has(girlId)) {
seen.add(girlId); // 标记已加入
const bookmarkTime = this.getBookmarkTime(categoryId, girlId);
result.push({ girlId, bookmarkTime, category: categoryId });
}
}
}
// 按收藏时间降序排序(最新的在前)
result.sort((a, b) => b.bookmarkTime - a.bookmarkTime);
// 返回排序后的ID数组
return result.map((item) => item.girlId);
}
/** --------------------------------------------------------- 技师的其他数据 --------------------------------------------------------- */
@@ -10,6 +10,7 @@ import {
tween,
view,
screen,
Button,
} from "cc";
import li_BaseView from "db://assets/Scripts/Main/Common/li_BaseView";
import ResManager from "db://assets/Scripts/Main/Manager/ResManager";
@@ -30,6 +31,7 @@ import { GirlService } from "db://assets/Scripts/chat18x/network/services/GirlSe
import proto from "db://assets/Scripts/proto/proto.pb.js";
import { SceneBgVideoLayer } from "../../../Sub/UI/SceneBgVideoLayer";
import { logger } from "db://assets/Scripts/Main/Common/Logger";
import { GButton } from "../../../Main/Common/GButton";
const { ccclass, property } = _decorator;
@@ -87,10 +89,15 @@ export class GirlDetailPanel extends li_BaseView {
ImgVidSelect: Node;
ImgVidFakePos: Node;
AddFavoriteBtn: Node;
// 跟随控制相关属性
private isFollowing: boolean = true; // 当前是否处于跟随状态
private lastFakePosPosition: Vec3 = new Vec3(); // 记录上次的位置
// 收藏请求状态标记,防止重复点击
private isRequestingBookmark: boolean = false;
protected onEnable(): void {
this.refresh();
}
@@ -101,6 +108,7 @@ export class GirlDetailPanel extends li_BaseView {
this.ImgVidSelect = this._nodeTab.ImgVidSelect;
this.ImgVidFakePos = this._nodeTab.ImgVidFakePos;
this.AddFavoriteBtn = this._nodeTab.AddFavoriteBtn;
// 初始化位置跟随
if (this.ImgVidFakePos) {
@@ -111,18 +119,15 @@ export class GirlDetailPanel extends li_BaseView {
Utils.addInnerEL(InnerMsgCode.LanguageChange, this, () => {
this.girlName.string = LanguageUtils.getText(this.nameKey);
let desc = "";
const tags = LanguageUtils.getText(this.tagKey);
// for (let i = 0; i < tags.length; i++) {
// if (i != 0) desc += "\n";
// desc += tags[i];
// }
this.tags.string = tags;
this.desc.string = LanguageUtils.getText(this.descKey);
});
this.imgToggle.callback = this.bindImgToggle.bind(this);
this.videoToggle.callback = this.bindVideoToggle.bind(this);
GButton.BandClick(this.AddFavoriteBtn, this.OnClickAddFavoriteBtn, this);
}
setVideEnable(enable: boolean) {
@@ -263,9 +268,44 @@ export class GirlDetailPanel extends li_BaseView {
this.id,
resIds
);
// 刷新收藏按钮状态
this.refreshAddFavoriteBtn();
}
}
/**
*
*/
refreshAddFavoriteBtn() {
if (!this.AddFavoriteBtn) {
return;
}
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
const isBookmarked = girlData.isBookmarkGirl(
this.category.toString(),
this.id
);
// 查找收藏按钮的状态节点(通常命名为 "selected" 或 "checked"
// 如果有这样的子节点,根据收藏状态显示/隐藏
const selectedNode = this.AddFavoriteBtn.getChildByName("selected");
if (selectedNode) {
selectedNode.active = isBookmarked;
}
// 如果有未选中状态的节点
const unselectedNode = this.AddFavoriteBtn.getChildByName("unselected");
if (unselectedNode) {
unselectedNode.active = !isBookmarked;
}
logger.log(
`[GirlDetailPanel] 收藏按钮状态已刷新: girlId=${this.id}, isBookmarked=${isBookmarked}`
);
}
bindImgToggle() {
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
let resIds = girlData.getAllDisplayGrilPhotoId(
@@ -348,6 +388,78 @@ export class GirlDetailPanel extends li_BaseView {
// }
}
/**
*
*/
async OnClickAddFavoriteBtn() {
// 防止重复点击
if (this.isRequestingBookmark) {
logger.warn("[GirlDetailPanel] 收藏请求进行中,请稍候");
return;
}
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
const isBookmarked = girlData.isBookmarkGirl(
this.category.toString(),
this.id
);
logger.log(
`[GirlDetailPanel] 点击收藏按钮: girlId=${this.id}, 当前状态=${
isBookmarked ? "已收藏" : "未收藏"
}`
);
try {
this.isRequestingBookmark = true;
// 调用收藏接口
const reqData = {
girlId: this.id,
cancel: isBookmarked, // true=取消收藏, false=添加收藏
};
const res = await GirlService.I.reqBookmarkGirl(reqData);
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
// 更新本地收藏时间
if (isBookmarked) {
// 取消收藏:设置为0
girlData.setBookmarkTime(this.category.toString(), this.id, 0);
logger.log(`[GirlDetailPanel] 取消收藏成功: girlId=${this.id}`);
} else {
// 添加收藏:设置为当前时间戳(秒)
const currentTimestamp = Math.floor(Date.now() / 1000);
girlData.setBookmarkTime(
this.category.toString(),
this.id,
currentTimestamp
);
logger.log(
`[GirlDetailPanel] 添加收藏成功: girlId=${this.id}, timestamp=${currentTimestamp}`
);
}
// 刷新按钮状态
this.refreshAddFavoriteBtn();
// TODO: 可以在这里添加UI提示,比如显示Toast
// Utils.showToast(isBookmarked ? "已取消收藏" : "收藏成功");
} else {
logger.warn(
`[GirlDetailPanel] 收藏操作失败: girlId=${this.id}, code=${res?.code}`
);
// TODO: 显示错误提示
// Utils.showToast("操作失败,请稍后重试");
}
} catch (error) {
logger.error(`[GirlDetailPanel] 收藏操作异常: girlId=${this.id}`, error);
// TODO: 显示错误提示
// Utils.showToast("网络错误,请稍后重试");
} finally {
this.isRequestingBookmark = false;
}
}
returnBtn() {
// GirlDetailPanel现在是subpanel,关闭自己即可
NavigationManager.Instance.closeSubPanel(this);
@@ -162,6 +162,14 @@ export class PersonalPanel extends li_BaseView {
}
private openFavorites() {
TipsPanel.show(LanguageUtils.getText("rankpanel.comingsoon"));
NavigationManager.Instance.openSubPanel(
"GirlCollectionPanel",
this.node,
null,
{
openAnimation: PageTransitionType.SLIDE_LEFT,
closeAnimation: PageTransitionType.SLIDE_RIGHT,
}
);
}
}
+370 -2
View File
@@ -1,6 +1,374 @@
import { _decorator, Component, Node } from "cc";
import { _decorator, Component, Node, ScrollView } from "cc";
import li_BaseView from "../../../Main/Common/li_BaseView";
import { GirlService } from "../../network/services/GirlService";
import proto from "db://assets/Scripts/proto/proto.pb.js";
import { DataManager, DataId } from "../../data/DataManager";
import { GirlData } from "../../data/GirlData";
import Utils from "../../../Main/Common/Utils";
import { GButton } from "../../../Main/Common/GButton";
import HXZ_ScrollViewList from "../../../Main/Common/ScrollViewList";
import { RankItem } from "../../uiitems/RankItem";
import { logger } from "../../../Main/Common/Logger";
const { ccclass, property } = _decorator;
@ccclass("RankPanel")
export class RankPanel extends li_BaseView {}
export class RankPanel extends li_BaseView {
private _nodeTab: any = {};
// 虚拟列表组件
private scrollViewList: HXZ_ScrollViewList = null;
// 排行榜项模板
private rankItemInst: RankItem;
// 当前选中的榜单类型
private currentRankType: proto.cs.EnmRankType = proto.cs.EnmRankType.ERT_Day;
// 分页状态
private currentPage: number = 1;
private pageLimit: number = 20;
private isLoadingMore: boolean = false;
private hasMoreData: boolean = true;
// 记录上次触发加载的 ID,避免重复触发
private lastLoadTriggerId: number = -1;
// 榜单切换按钮
private dayRankBtn: Node;
private weekRankBtn: Node;
private monthRankBtn: Node;
// 滚动视图
private rankScroll: Node;
private rankScrollView: ScrollView = null;
onLoadCT() {
Utils.parseNode(this.node, this._nodeTab);
// 获取榜单切换按钮
this.dayRankBtn = this._nodeTab.dayRankBtn;
this.weekRankBtn = this._nodeTab.weekRankBtn;
this.monthRankBtn = this._nodeTab.monthRankBtn;
// 获取滚动视图
this.rankScroll = this._nodeTab.rankScroll;
// 获取推荐列表的 ScrollView 组件
if (this.rankScroll) {
this.rankScrollView = this.rankScroll.getComponent(ScrollView);
// 获取虚拟列表组件(需要在场景中手动添加 HXZ_ScrollViewList 组件)
this.scrollViewList = this.rankScroll.getComponent(HXZ_ScrollViewList);
if (!this.scrollViewList) {
logger.warn(
"[RankPanel] rankScroll 节点缺少 HXZ_ScrollViewList 组件,请在编辑器中添加"
);
}
}
// 获取排行榜项模板
this.rankItemInst = this._nodeTab.RankItem?.getComponent(RankItem);
if (this.rankItemInst) {
this.rankItemInst.node.active = false;
}
this.registerListener();
}
openUIDataCT(data: any): void {
// 默认打开日榜
this.switchRankType(proto.cs.EnmRankType.ERT_Day);
}
/**
*
*/
private registerListener() {
// 榜单切换按钮
if (this.dayRankBtn) {
GButton.BandClick(this.dayRankBtn, this.openDayRank, this);
}
if (this.weekRankBtn) {
GButton.BandClick(this.weekRankBtn, this.openWeekRank, this);
}
if (this.monthRankBtn) {
GButton.BandClick(this.monthRankBtn, this.openMonthRank, this);
}
// 注册虚拟列表滚动事件(延迟到下一帧,确保虚拟列表已初始化)
this.scheduleOnce(() => {
if (this.scrollViewList) {
// 监听 scrolling 事件,通过滚动偏移量检测是否接近底部
this.scrollViewList.node.on("scrolling", this.onRankScrolling, this);
logger.log("[RankPanel] 虚拟列表滚动事件已绑定");
} else {
logger.warn("[RankPanel] 无法绑定滚动事件,scrollViewList 未初始化");
}
}, 0.1);
}
/**
*
* Cocos Creator HXZ_ScrollViewList renderEvent
* @param itemNode
* @param index
*/
onRenderRankItem(itemNode: Node, index: number): void {
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
const girlIDs = girlData.getRankIdsByType(this.currentRankType);
if (index < girlIDs.length) {
const girlId = girlIDs[index];
const item = itemNode.getComponent(RankItem);
if (!item) {
logger.error(`[RankPanel] 节点缺少 RankItem 组件,index: ${index}`);
return;
}
// 确保节点已初始化
if (!item._initialized) {
item.init();
}
// 刷新数据(index + 1 作为排名序号)
item.refresh(girlId, index + 1);
itemNode.active = true;
}
}
/**
*
*/
openDayRank() {
this.switchRankType(proto.cs.EnmRankType.ERT_Day);
}
/**
*
*/
openWeekRank() {
this.switchRankType(proto.cs.EnmRankType.ERT_Week);
}
/**
*
*/
openMonthRank() {
this.switchRankType(proto.cs.EnmRankType.ERT_Month);
}
/**
*
* @param rankType
*/
private async switchRankType(rankType: proto.cs.EnmRankType) {
// 如果是同一个榜单,不重复请求
if (
this.currentRankType === rankType &&
this.scrollViewList?.numItems > 0
) {
logger.log(`[RankPanel] 当前已是该榜单类型: ${rankType}`);
this.updateTabState(rankType);
return;
}
this.currentRankType = rankType;
// 重置分页状态
this.currentPage = 1;
this.hasMoreData = true;
this.isLoadingMore = false;
this.lastLoadTriggerId = -1;
// 请求榜单数据
await this.reqGirlRankData(rankType);
// 更新虚拟列表
if (this.scrollViewList) {
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
const girlIDs = girlData.getRankIdsByType(rankType);
this.scrollViewList.numItems = girlIDs.length;
logger.log(
`[RankPanel] 切换到榜单类型 ${rankType},共 ${girlIDs.length}`
);
} else {
logger.warn("[RankPanel] scrollViewList 未初始化");
}
// 更新标签页状态
this.updateTabState(rankType);
}
/**
*
* @param rankType
*/
private updateTabState(rankType: proto.cs.EnmRankType) {
if (this.dayRankBtn && this.dayRankBtn.children.length >= 2) {
this.dayRankBtn.children[0].active =
rankType !== proto.cs.EnmRankType.ERT_Day;
this.dayRankBtn.children[1].active =
rankType === proto.cs.EnmRankType.ERT_Day;
}
if (this.weekRankBtn && this.weekRankBtn.children.length >= 2) {
this.weekRankBtn.children[0].active =
rankType !== proto.cs.EnmRankType.ERT_Week;
this.weekRankBtn.children[1].active =
rankType === proto.cs.EnmRankType.ERT_Week;
}
if (this.monthRankBtn && this.monthRankBtn.children.length >= 2) {
this.monthRankBtn.children[0].active =
rankType !== proto.cs.EnmRankType.ERT_Month;
this.monthRankBtn.children[1].active =
rankType === proto.cs.EnmRankType.ERT_Month;
}
}
/**
* displayData
* 3
*/
private onRankScrolling(): void {
if (!this.scrollViewList) return;
// 获取虚拟列表的 displayData 和总数
const displayData = this.scrollViewList.displayData;
const numItems = this.scrollViewList.numItems;
// 检查数据有效性
if (!displayData || displayData.length === 0 || numItems === 0) return;
// 获取当前显示的最后一个 item 的 ID
const lastDisplayedId = displayData[displayData.length - 1].id;
// 触发条件:显示到倒数第 3 个 item 时开始加载下一页
const threshold = numItems - 3;
if (
lastDisplayedId >= threshold &&
lastDisplayedId > this.lastLoadTriggerId
) {
logger.log(
`[RankPanel] 接近末尾 (${lastDisplayedId}/${numItems}),触发加载第 ${
this.currentPage + 1
} `
);
// 记录本次触发的 ID,避免重复触发
this.lastLoadTriggerId = lastDisplayedId;
// 触发分页加载
this.loadMoreRankData();
}
}
/**
*
*/
private async loadMoreRankData(): Promise<void> {
// 防止重复加载
if (this.isLoadingMore) {
logger.log("[RankPanel] 正在加载中,跳过");
return;
}
// 检查是否还有更多数据
if (!this.hasMoreData) {
logger.log("[RankPanel] 没有更多数据了");
return;
}
try {
this.isLoadingMore = true;
this.currentPage++;
logger.log(`[RankPanel] 开始加载第 ${this.currentPage} 页排行榜数据`);
const reqData = {
rankType: this.currentRankType,
page: this.currentPage,
limit: this.pageLimit,
};
const res = await GirlService.I.reqGirlRankData(reqData);
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
// 追加数据到 GirlData
girlData.addRankData(this.currentRankType, res.data);
// 检查是否还有更多数据
const girls = res.data.girls || [];
if (girls.length < this.pageLimit) {
this.hasMoreData = false;
logger.log("[RankPanel] 已加载所有排行榜数据");
}
// 使用虚拟列表:更新总数量,自动触发渲染
if (this.scrollViewList) {
const allGirlIDs = girlData.getRankIdsByType(this.currentRankType);
this.scrollViewList.numItems = allGirlIDs.length;
logger.log(
`[RankPanel] 第 ${this.currentPage} 页加载完成,新增 ${girls.length} 项,总计 ${allGirlIDs.length}`
);
} else {
logger.warn("[RankPanel] scrollViewList 未初始化,无法更新列表");
}
} else {
logger.warn("[RankPanel] 加载下一页排行榜数据失败:", res);
// 加载失败,回退页码
this.currentPage--;
}
} catch (error) {
logger.error("[RankPanel] 加载下一页排行榜数据异常:", error);
// 加载失败,回退页码
this.currentPage--;
} finally {
this.isLoadingMore = false;
}
}
/**
*
* @param type
*/
private async reqGirlRankData(type: proto.cs.EnmRankType) {
const reqData = {
rankType: type,
page: 1,
limit: this.pageLimit,
};
let res = await GirlService.I.reqGirlRankData(reqData);
if (res && res.code === proto.cs.EnmRetCode.SUCCESS) {
const resData = res.data;
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
girlData.setGirlRank(type, resData);
// 检查是否还有更多数据
const girls = resData.girls || [];
if (girls.length < this.pageLimit) {
this.hasMoreData = false;
logger.log("[RankPanel] 首次加载数据不足一页,无需分页");
}
logger.log(
`[RankPanel] 榜单类型 ${type} 首次加载完成,共 ${girls.length}`
);
}
}
onDestroy(): void {
logger.log("[RankPanel] onDestroy called");
// 移除虚拟列表滚动事件监听
if (this.scrollViewList) {
this.scrollViewList.node.off("scrolling", this.onRankScrolling, this);
logger.log("[RankPanel] 虚拟列表滚动事件已移除");
}
}
}
+17 -7
View File
@@ -24,6 +24,7 @@ import { EnvData } from "../data/EnvData";
import { logger } from "db://assets/Scripts/Main/Common/Logger";
import { GButton } from "../../Main/Common/GButton";
import { GirlListPanel } from "../ui/panels/GirlListPanel";
import { GirlCollectionPanel } from "../ui/panels/GirlCollectionPanel";
const { ccclass, property } = _decorator;
@@ -84,8 +85,12 @@ export class GirlListItem extends Component {
);
}
baseNode: GirlListPanel;
refreshData(category: number, girlId: number, baseNode: GirlListPanel) {
baseNode: GirlListPanel | GirlCollectionPanel;
refreshData(
category: number,
girlId: number,
baseNode: GirlListPanel | GirlCollectionPanel
) {
if (!this.stars) {
this.stars = this.starParent.getComponentsInChildren(Sprite);
}
@@ -208,11 +213,16 @@ export class GirlListItem extends Component {
const currentPanel = NavigationManager.Instance.getCurrentActivePanelNode();
if (currentPanel) {
const chatData = { girlId: this.id, base: currentPanel };
NavigationManager.Instance.openSubPanel("ChatPanel", currentPanel, chatData, {
openAnimation: PageTransitionType.NONE,
closeAnimation: PageTransitionType.NONE,
hideBasePanel: true,
});
NavigationManager.Instance.openSubPanel(
"ChatPanel",
currentPanel,
chatData,
{
openAnimation: PageTransitionType.NONE,
closeAnimation: PageTransitionType.NONE,
hideBasePanel: true,
}
);
} else {
logger.warn("[GirlListItem] 无法获取当前激活的主页面");
}
File diff suppressed because it is too large Load Diff
@@ -1847,7 +1847,7 @@
"__id__": 100
}
],
"_active": false,
"_active": true,
"_components": [
{
"__id__": 114
@@ -2922,7 +2922,7 @@
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -1.4499999999999886,
"x": 95.75,
"y": 79.546,
"z": 0
},
@@ -3881,7 +3881,7 @@
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0.2039999999999793,
"_top": 0.20399999999999352,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
@@ -3974,7 +3974,7 @@
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 276.35,
"x": 283.25,
"y": 79.546,
"z": 0
},
@@ -4933,7 +4933,7 @@
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0.2039999999999793,
"_top": 0.20399999999999352,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
@@ -5081,7 +5081,7 @@
"_paddingRight": 2,
"_paddingTop": 0,
"_paddingBottom": 0,
"_spacingX": 90.3,
"_spacingX": 0,
"_spacingY": 0,
"_verticalDirection": 1,
"_horizontalDirection": 0,
File diff suppressed because it is too large Load Diff
@@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "9700a228-f16c-47b9-8cbb-b4c14cd5c037",
"files": [],
"subMetas": {},
"userData": {}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 980 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "8a2389df-4012-4239-b7f8-a69d21f586db",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8a2389df-4012-4239-b7f8-a69d21f586db@6c48a",
"displayName": "w_录像 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8a2389df-4012-4239-b7f8-a69d21f586db",
"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": "8a2389df-4012-4239-b7f8-a69d21f586db@f9941",
"displayName": "w_录像 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 88,
"height": 55,
"rawWidth": 88,
"rawHeight": 55,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-44,
-27.5,
0,
44,
-27.5,
0,
-44,
27.5,
0,
44,
27.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
55,
88,
55,
0,
0,
88,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-44,
-27.5,
0
],
"maxPos": [
44,
27.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8a2389df-4012-4239-b7f8-a69d21f586db@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8a2389df-4012-4239-b7f8-a69d21f586db@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 980 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d9caf091-71a6-4a85-b77a-83cb6847370a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d9caf091-71a6-4a85-b77a-83cb6847370a@6c48a",
"displayName": "w_录像",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d9caf091-71a6-4a85-b77a-83cb6847370a",
"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": "d9caf091-71a6-4a85-b77a-83cb6847370a@f9941",
"displayName": "w_录像",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 88,
"height": 55,
"rawWidth": 88,
"rawHeight": 55,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-44,
-27.5,
0,
44,
-27.5,
0,
-44,
27.5,
0,
44,
27.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
55,
88,
55,
0,
0,
88,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-44,
-27.5,
0
],
"maxPos": [
44,
27.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d9caf091-71a6-4a85-b77a-83cb6847370a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d9caf091-71a6-4a85-b77a-83cb6847370a@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 988 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0195d912-9f4d-44b3-9712-d95f0668e4af",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0195d912-9f4d-44b3-9712-d95f0668e4af@6c48a",
"displayName": "图片3 拷贝 2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0195d912-9f4d-44b3-9712-d95f0668e4af",
"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": "0195d912-9f4d-44b3-9712-d95f0668e4af@f9941",
"displayName": "图片3 拷贝 2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 62,
"height": 56,
"rawWidth": 62,
"rawHeight": 56,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-31,
-28,
0,
31,
-28,
0,
-31,
28,
0,
31,
28,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
56,
62,
56,
0,
0,
62,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-31,
-28,
0
],
"maxPos": [
31,
28,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0195d912-9f4d-44b3-9712-d95f0668e4af@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0195d912-9f4d-44b3-9712-d95f0668e4af@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 998 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806@6c48a",
"displayName": "图片3 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806",
"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": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806@f9941",
"displayName": "图片3 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 62,
"height": 56,
"rawWidth": 62,
"rawHeight": 56,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-31,
-28,
0,
31,
-28,
0,
-31,
28,
0,
31,
28,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
56,
62,
56,
0,
0,
62,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-31,
-28,
0
],
"maxPos": [
31,
28,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "ae1676fd-9d9b-47ef-abc9-a56da69425e9",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ae1676fd-9d9b-47ef-abc9-a56da69425e9@6c48a",
"displayName": "播放 拷贝 2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ae1676fd-9d9b-47ef-abc9-a56da69425e9",
"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": "ae1676fd-9d9b-47ef-abc9-a56da69425e9@f9941",
"displayName": "播放 拷贝 2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 83,
"height": 83,
"rawWidth": 83,
"rawHeight": 83,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-41.5,
-41.5,
0,
41.5,
-41.5,
0,
-41.5,
41.5,
0,
41.5,
41.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
83,
83,
83,
0,
0,
83,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-41.5,
-41.5,
0
],
"maxPos": [
41.5,
41.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ae1676fd-9d9b-47ef-abc9-a56da69425e9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ae1676fd-9d9b-47ef-abc9-a56da69425e9@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "231a4bd0-d031-459a-bc94-d25a5d2a478f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "231a4bd0-d031-459a-bc94-d25a5d2a478f@6c48a",
"displayName": "电话 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "231a4bd0-d031-459a-bc94-d25a5d2a478f",
"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": "231a4bd0-d031-459a-bc94-d25a5d2a478f@f9941",
"displayName": "电话 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 103,
"height": 102,
"rawWidth": 103,
"rawHeight": 102,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-51.5,
-51,
0,
51.5,
-51,
0,
-51.5,
51,
0,
51.5,
51,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
102,
103,
102,
0,
0,
103,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-51.5,
-51,
0
],
"maxPos": [
51.5,
51,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "231a4bd0-d031-459a-bc94-d25a5d2a478f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "231a4bd0-d031-459a-bc94-d25a5d2a478f@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 762 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "989deb0d-8788-42de-81ee-5e1dfdbe6901",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "989deb0d-8788-42de-81ee-5e1dfdbe6901@6c48a",
"displayName": "矩形 10 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "989deb0d-8788-42de-81ee-5e1dfdbe6901",
"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": "989deb0d-8788-42de-81ee-5e1dfdbe6901@f9941",
"displayName": "矩形 10 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 268,
"height": 80,
"rawWidth": 268,
"rawHeight": 80,
"borderTop": 2,
"borderBottom": 20,
"borderLeft": 2,
"borderRight": 20,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-134,
-40,
0,
134,
-40,
0,
-134,
40,
0,
134,
40,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
80,
268,
80,
0,
0,
268,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-134,
-40,
0
],
"maxPos": [
134,
40,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "989deb0d-8788-42de-81ee-5e1dfdbe6901@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "989deb0d-8788-42de-81ee-5e1dfdbe6901@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 714 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1f2275dc-ceb1-4b48-a4ae-f63f7abb1095",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1f2275dc-ceb1-4b48-a4ae-f63f7abb1095@6c48a",
"displayName": "矩形 11 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1f2275dc-ceb1-4b48-a4ae-f63f7abb1095",
"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": "1f2275dc-ceb1-4b48-a4ae-f63f7abb1095@f9941",
"displayName": "矩形 11 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 10,
"height": 307,
"rawWidth": 10,
"rawHeight": 307,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-5,
-153.5,
0,
5,
-153.5,
0,
-5,
153.5,
0,
5,
153.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
307,
10,
307,
0,
0,
10,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-5,
-153.5,
0
],
"maxPos": [
5,
153.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1f2275dc-ceb1-4b48-a4ae-f63f7abb1095@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1f2275dc-ceb1-4b48-a4ae-f63f7abb1095@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "42906726-76e0-4225-9dbf-13c622bfc834",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "42906726-76e0-4225-9dbf-13c622bfc834@6c48a",
"displayName": "矩形 3 拷贝 4",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "42906726-76e0-4225-9dbf-13c622bfc834",
"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": "42906726-76e0-4225-9dbf-13c622bfc834@f9941",
"displayName": "矩形 3 拷贝 4",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 800,
"height": 88,
"rawWidth": 800,
"rawHeight": 88,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-400,
-44,
0,
400,
-44,
0,
-400,
44,
0,
400,
44,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
88,
800,
88,
0,
0,
800,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-400,
-44,
0
],
"maxPos": [
400,
44,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "42906726-76e0-4225-9dbf-13c622bfc834@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "42906726-76e0-4225-9dbf-13c622bfc834@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b645e1bb-4f9f-49aa-a27f-603fcd4387b4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b645e1bb-4f9f-49aa-a27f-603fcd4387b4@6c48a",
"displayName": "矩形 3 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b645e1bb-4f9f-49aa-a27f-603fcd4387b4",
"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": "b645e1bb-4f9f-49aa-a27f-603fcd4387b4@f9941",
"displayName": "矩形 3 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 120,
"height": 120,
"rawWidth": 120,
"rawHeight": 120,
"borderTop": 56,
"borderBottom": 56,
"borderLeft": 56,
"borderRight": 56,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-60,
-60,
0,
60,
-60,
0,
-60,
60,
0,
60,
60,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
120,
120,
120,
0,
0,
120,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-60,
-60,
0
],
"maxPos": [
60,
60,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b645e1bb-4f9f-49aa-a27f-603fcd4387b4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b645e1bb-4f9f-49aa-a27f-603fcd4387b4@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "55a02beb-4d16-4456-96b3-fdcddb21b9f4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "55a02beb-4d16-4456-96b3-fdcddb21b9f4@6c48a",
"displayName": "矩形 3 拷贝5",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "55a02beb-4d16-4456-96b3-fdcddb21b9f4",
"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": "55a02beb-4d16-4456-96b3-fdcddb21b9f4@f9941",
"displayName": "矩形 3 拷贝5",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 120,
"height": 120,
"rawWidth": 120,
"rawHeight": 120,
"borderTop": 56,
"borderBottom": 56,
"borderLeft": 56,
"borderRight": 56,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-60,
-60,
0,
60,
-60,
0,
-60,
60,
0,
60,
60,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
120,
120,
120,
0,
0,
120,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-60,
-60,
0
],
"maxPos": [
60,
60,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "55a02beb-4d16-4456-96b3-fdcddb21b9f4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "55a02beb-4d16-4456-96b3-fdcddb21b9f4@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "df5397c4-a429-4b6e-bc48-2ae0dbdb844b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "df5397c4-a429-4b6e-bc48-2ae0dbdb844b@6c48a",
"displayName": "矩形 6",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "df5397c4-a429-4b6e-bc48-2ae0dbdb844b",
"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": "df5397c4-a429-4b6e-bc48-2ae0dbdb844b@f9941",
"displayName": "矩形 6",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 541,
"height": 146,
"rawWidth": 541,
"rawHeight": 146,
"borderTop": 27,
"borderBottom": 27,
"borderLeft": 27,
"borderRight": 27,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-270.5,
-73,
0,
270.5,
-73,
0,
-270.5,
73,
0,
270.5,
73,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
146,
541,
146,
0,
0,
541,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-270.5,
-73,
0
],
"maxPos": [
270.5,
73,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "df5397c4-a429-4b6e-bc48-2ae0dbdb844b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "df5397c4-a429-4b6e-bc48-2ae0dbdb844b@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1876a540-2606-4dee-ab76-5db661e5f559",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1876a540-2606-4dee-ab76-5db661e5f559@6c48a",
"displayName": "矩形 8 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1876a540-2606-4dee-ab76-5db661e5f559",
"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": "1876a540-2606-4dee-ab76-5db661e5f559@f9941",
"displayName": "矩形 8 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 503,
"height": 7,
"rawWidth": 503,
"rawHeight": 7,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-251.5,
-3.5,
0,
251.5,
-3.5,
0,
-251.5,
3.5,
0,
251.5,
3.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
7,
503,
7,
0,
0,
503,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-251.5,
-3.5,
0
],
"maxPos": [
251.5,
3.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1876a540-2606-4dee-ab76-5db661e5f559@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1876a540-2606-4dee-ab76-5db661e5f559@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e40904ac-0cdb-45a5-9c51-bf2092c8a776",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@6c48a",
"displayName": "矩形 8",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e40904ac-0cdb-45a5-9c51-bf2092c8a776",
"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": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@f9941",
"displayName": "矩形 8",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 503,
"height": 7,
"rawWidth": 503,
"rawHeight": 7,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-251.5,
-3.5,
0,
251.5,
-3.5,
0,
-251.5,
3.5,
0,
251.5,
3.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
7,
503,
7,
0,
0,
503,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-251.5,
-3.5,
0
],
"maxPos": [
251.5,
3.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "60a79bd4-2dec-41f2-97a6-1611af8f04d8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "60a79bd4-2dec-41f2-97a6-1611af8f04d8@6c48a",
"displayName": "组 1 拷贝",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "60a79bd4-2dec-41f2-97a6-1611af8f04d8",
"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": "60a79bd4-2dec-41f2-97a6-1611af8f04d8@f9941",
"displayName": "组 1 拷贝",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 72,
"height": 61,
"rawWidth": 72,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36,
-30.5,
0,
36,
-30.5,
0,
-36,
30.5,
0,
36,
30.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
61,
72,
61,
0,
0,
72,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36,
-30.5,
0
],
"maxPos": [
36,
30.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "60a79bd4-2dec-41f2-97a6-1611af8f04d8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "60a79bd4-2dec-41f2-97a6-1611af8f04d8@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9333acee-3d23-4ba9-b2af-ee1089f94a80",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9333acee-3d23-4ba9-b2af-ee1089f94a80@6c48a",
"displayName": "组 1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9333acee-3d23-4ba9-b2af-ee1089f94a80",
"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": "9333acee-3d23-4ba9-b2af-ee1089f94a80@f9941",
"displayName": "组 1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 72,
"height": 61,
"rawWidth": 72,
"rawHeight": 61,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36,
-30.5,
0,
36,
-30.5,
0,
-36,
30.5,
0,
36,
30.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
61,
72,
61,
0,
0,
72,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36,
-30.5,
0
],
"maxPos": [
36,
30.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9333acee-3d23-4ba9-b2af-ee1089f94a80@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9333acee-3d23-4ba9-b2af-ee1089f94a80@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a98d3038-027e-4afb-b866-9f58f0af973d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a98d3038-027e-4afb-b866-9f58f0af973d@6c48a",
"displayName": "返回 (1)",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a98d3038-027e-4afb-b866-9f58f0af973d",
"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": "a98d3038-027e-4afb-b866-9f58f0af973d@f9941",
"displayName": "返回 (1)",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 95,
"height": 95,
"rawWidth": 95,
"rawHeight": 95,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-47.5,
-47.5,
0,
47.5,
-47.5,
0,
-47.5,
47.5,
0,
47.5,
47.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
95,
95,
95,
0,
0,
95,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-47.5,
-47.5,
0
],
"maxPos": [
47.5,
47.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a98d3038-027e-4afb-b866-9f58f0af973d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a98d3038-027e-4afb-b866-9f58f0af973d@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4aec67ca-d8be-465c-bc9e-54535aed70b8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4aec67ca-d8be-465c-bc9e-54535aed70b8@6c48a",
"displayName": "问好 (1)",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4aec67ca-d8be-465c-bc9e-54535aed70b8",
"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": "4aec67ca-d8be-465c-bc9e-54535aed70b8@f9941",
"displayName": "问好 (1)",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 87,
"height": 127,
"rawWidth": 87,
"rawHeight": 127,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-43.5,
-63.5,
0,
43.5,
-63.5,
0,
-43.5,
63.5,
0,
43.5,
63.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
127,
87,
127,
0,
0,
87,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-43.5,
-63.5,
0
],
"maxPos": [
43.5,
63.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4aec67ca-d8be-465c-bc9e-54535aed70b8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4aec67ca-d8be-465c-bc9e-54535aed70b8@6c48a"
}
}