diff --git a/assets/Scenes/MainScene.scene b/assets/Scenes/MainScene.scene index 741f3237..4d1a0e0d 100644 --- a/assets/Scenes/MainScene.scene +++ b/assets/Scenes/MainScene.scene @@ -1709,7 +1709,7 @@ }, { "__type__": "cc.Node", - "_name": "loginLabel", + "_name": "guestloginLabel", "_objFlags": 0, "__editorExtras__": {}, "_parent": { diff --git a/assets/Scripts/Sub/UI/PreloadUI.ts b/assets/Scripts/Sub/UI/PreloadUI.ts index edfcf639..d9389964 100644 --- a/assets/Scripts/Sub/UI/PreloadUI.ts +++ b/assets/Scripts/Sub/UI/PreloadUI.ts @@ -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; } diff --git a/assets/Scripts/chat18x/core/MainController.ts b/assets/Scripts/chat18x/core/MainController.ts index ca654d0e..58bdf64c 100644 --- a/assets/Scripts/chat18x/core/MainController.ts +++ b/assets/Scripts/chat18x/core/MainController.ts @@ -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 { + 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(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 { + 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(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; + } + } } diff --git a/assets/Scripts/chat18x/data/GirlData.ts b/assets/Scripts/chat18x/data/GirlData.ts index 4bde1a47..d070bf2e 100644 --- a/assets/Scripts/chat18x/data/GirlData.ts +++ b/assets/Scripts/chat18x/data/GirlData.ts @@ -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(); // 用来去重 + 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); + } /** --------------------------------------------------------- 技师的其他数据 --------------------------------------------------------- */ diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index a6f65b8a..322b1594 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -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(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(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(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); diff --git a/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts b/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts index 5eac4139..c6bb86e4 100644 --- a/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts @@ -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, + } + ); } } diff --git a/assets/Scripts/chat18x/ui/panels/RankPanel.ts b/assets/Scripts/chat18x/ui/panels/RankPanel.ts index 4707e7af..5206a362 100644 --- a/assets/Scripts/chat18x/ui/panels/RankPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/RankPanel.ts @@ -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(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(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 { + // 防止重复加载 + 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(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(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] 虚拟列表滚动事件已移除"); + } + } +} diff --git a/assets/Scripts/chat18x/uiitems/GirlListItem.ts b/assets/Scripts/chat18x/uiitems/GirlListItem.ts index 647e61f1..51013528 100644 --- a/assets/Scripts/chat18x/uiitems/GirlListItem.ts +++ b/assets/Scripts/chat18x/uiitems/GirlListItem.ts @@ -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] 无法获取当前激活的主页面"); } diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index 3916e2c7..4ed4947c 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -25,26 +25,26 @@ "__id__": 24 }, { - "__id__": 355 + "__id__": 373 } ], "_active": true, "_components": [ { - "__id__": 366 + "__id__": 384 }, { - "__id__": 368 + "__id__": 386 }, { - "__id__": 370 + "__id__": 388 }, { - "__id__": 372 + "__id__": 390 } ], "_prefab": { - "__id__": 374 + "__id__": 392 }, "_lpos": { "__type__": "cc.Vec3", @@ -558,23 +558,23 @@ "__id__": 25 }, { - "__id__": 294 + "__id__": 312 } ], "_active": true, "_components": [ { - "__id__": 348 + "__id__": 366 }, { - "__id__": 350 + "__id__": 368 }, { - "__id__": 352 + "__id__": 370 } ], "_prefab": { - "__id__": 354 + "__id__": 372 }, "_lpos": { "__type__": "cc.Vec3", @@ -621,20 +621,20 @@ "_active": true, "_components": [ { - "__id__": 285 + "__id__": 303 }, { - "__id__": 287 + "__id__": 305 }, { - "__id__": 289 + "__id__": 307 }, { - "__id__": 291 + "__id__": 309 } ], "_prefab": { - "__id__": 293 + "__id__": 311 }, "_lpos": { "__type__": "cc.Vec3", @@ -681,20 +681,20 @@ "_active": true, "_components": [ { - "__id__": 276 + "__id__": 294 }, { - "__id__": 278 + "__id__": 296 }, { - "__id__": 280 + "__id__": 298 }, { - "__id__": 282 + "__id__": 300 } ], "_prefab": { - "__id__": 284 + "__id__": 302 }, "_lpos": { "__type__": "cc.Vec3", @@ -738,23 +738,23 @@ "__id__": 28 }, { - "__id__": 173 + "__id__": 191 } ], "_active": true, "_components": [ { - "__id__": 269 + "__id__": 287 }, { - "__id__": 271 + "__id__": 289 }, { - "__id__": 273 + "__id__": 291 } ], "_prefab": { - "__id__": 275 + "__id__": 293 }, "_lpos": { "__type__": "cc.Vec3", @@ -801,14 +801,14 @@ "_active": true, "_components": [ { - "__id__": 168 + "__id__": 186 }, { - "__id__": 170 + "__id__": 188 } ], "_prefab": { - "__id__": 172 + "__id__": 190 }, "_lpos": { "__type__": "cc.Vec3", @@ -854,36 +854,36 @@ { "__id__": 38 }, - { - "__id__": 64 - }, - { - "__id__": 72 - }, { "__id__": 82 }, { - "__id__": 120 + "__id__": 90 }, { - "__id__": 147 - } - ], - "_active": true, - "_components": [ - { - "__id__": 161 + "__id__": 100 }, { - "__id__": 163 + "__id__": 138 }, { "__id__": 165 } ], + "_active": true, + "_components": [ + { + "__id__": 179 + }, + { + "__id__": 181 + }, + { + "__id__": 183 + } + ], "_prefab": { - "__id__": 167 + "__id__": 185 }, "_lpos": { "__type__": "cc.Vec3", @@ -1103,19 +1103,22 @@ }, { "__id__": 47 + }, + { + "__id__": 59 } ], "_active": true, "_components": [ { - "__id__": 59 + "__id__": 77 }, { - "__id__": 61 + "__id__": 79 } ], "_prefab": { - "__id__": 63 + "__id__": 81 }, "_lpos": { "__type__": "cc.Vec3", @@ -1646,6 +1649,432 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "AddFavoriteBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 38 + }, + "_children": [ + { + "__id__": 60 + }, + { + "__id__": 66 + } + ], + "_active": true, + "_components": [ + { + "__id__": 72 + }, + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 76 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 277.415625, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "unselected", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 61 + }, + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 65 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 60 + }, + "_enabled": true, + "__prefab": { + "__id__": 62 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 48, + "height": 47 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c6HtCGVcZDbIrmIDYHcsLp" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 60 + }, + "_enabled": true, + "__prefab": { + "__id__": 64 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7b9bf177-f5b8-4548-88d1-b0311ae5f387@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b5BXl98IZJUK4GGNdDblhA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49IPZolLNAjYXYYhrGWOEw", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "selected", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 67 + }, + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 71 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.485, + "y": -2.428, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 66 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 46, + "height": 49 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d3bSilEaVHIYDou14qw6Dl" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 66 + }, + "_enabled": true, + "__prefab": { + "__id__": 70 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "da34e8b7-59ca-4dc4-825d-d359b17be8c5@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "87bwhQRfxIPpjQ2fiKxH1O" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cfImQ821xA4JIBlFxDFRdx", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 73 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62.5, + "height": 59.2 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "54Hrl4UWhOlp+cKMAFN+aW" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 75 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0c3p4uuKBCBKYM2RtJa7i4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ffthCaARNBI4DR7K7wkI8w", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -1656,7 +2085,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 78 }, "_contentSize": { "__type__": "cc.Size", @@ -1684,7 +2113,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 80 }, "_resizeMode": 0, "_layoutType": 1, @@ -1737,17 +2166,17 @@ "_active": true, "_components": [ { - "__id__": 65 + "__id__": 83 }, { - "__id__": 67 + "__id__": 85 }, { - "__id__": 69 + "__id__": 87 } ], "_prefab": { - "__id__": 71 + "__id__": 89 }, "_lpos": { "__type__": "cc.Vec3", @@ -1784,11 +2213,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 84 }, "_contentSize": { "__type__": "cc.Size", @@ -1812,11 +2241,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 86 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1880,11 +2309,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 82 }, "_enabled": false, "__prefab": { - "__id__": 70 + "__id__": 88 }, "_alignFlags": 9, "_target": null, @@ -1935,20 +2364,20 @@ "_active": true, "_components": [ { - "__id__": 73 + "__id__": 91 }, { - "__id__": 75 + "__id__": 93 }, { - "__id__": 77 + "__id__": 95 }, { - "__id__": 79 + "__id__": 97 } ], "_prefab": { - "__id__": 81 + "__id__": 99 }, "_lpos": { "__type__": "cc.Vec3", @@ -1985,11 +2414,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 74 + "__id__": 92 }, "_contentSize": { "__type__": "cc.Size", @@ -2013,11 +2442,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 76 + "__id__": 94 }, "_alignFlags": 16, "_target": null, @@ -2049,11 +2478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 96 }, "_resizeMode": 0, "_layoutType": 1, @@ -2087,11 +2516,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 80 + "__id__": 98 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2148,36 +2577,36 @@ "__id__": 29 }, "_children": [ - { - "__id__": 83 - }, - { - "__id__": 89 - }, - { - "__id__": 95 - }, { "__id__": 101 }, { "__id__": 107 + }, + { + "__id__": 113 + }, + { + "__id__": 119 + }, + { + "__id__": 125 } ], "_active": true, "_components": [ { - "__id__": 113 + "__id__": 131 }, { - "__id__": 115 + "__id__": 133 }, { - "__id__": 117 + "__id__": 135 } ], "_prefab": { - "__id__": 119 + "__id__": 137 }, "_lpos": { "__type__": "cc.Vec3", @@ -2214,20 +2643,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 82 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 84 + "__id__": 102 }, { - "__id__": 86 + "__id__": 104 } ], "_prefab": { - "__id__": 88 + "__id__": 106 }, "_lpos": { "__type__": "cc.Vec3", @@ -2264,11 +2693,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 101 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 103 }, "_contentSize": { "__type__": "cc.Size", @@ -2292,11 +2721,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 101 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 105 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2350,20 +2779,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 82 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 90 + "__id__": 108 }, { - "__id__": 92 + "__id__": 110 } ], "_prefab": { - "__id__": 94 + "__id__": 112 }, "_lpos": { "__type__": "cc.Vec3", @@ -2400,11 +2829,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 109 }, "_contentSize": { "__type__": "cc.Size", @@ -2428,11 +2857,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 93 + "__id__": 111 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2486,20 +2915,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 82 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 96 + "__id__": 114 }, { - "__id__": 98 + "__id__": 116 } ], "_prefab": { - "__id__": 100 + "__id__": 118 }, "_lpos": { "__type__": "cc.Vec3", @@ -2536,11 +2965,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 115 }, "_contentSize": { "__type__": "cc.Size", @@ -2564,11 +2993,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 99 + "__id__": 117 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2622,20 +3051,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 82 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 102 + "__id__": 120 }, { - "__id__": 104 + "__id__": 122 } ], "_prefab": { - "__id__": 106 + "__id__": 124 }, "_lpos": { "__type__": "cc.Vec3", @@ -2672,11 +3101,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 101 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 121 }, "_contentSize": { "__type__": "cc.Size", @@ -2700,11 +3129,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 101 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 123 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2758,20 +3187,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 82 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 108 + "__id__": 126 }, { - "__id__": 110 + "__id__": 128 } ], "_prefab": { - "__id__": 112 + "__id__": 130 }, "_lpos": { "__type__": "cc.Vec3", @@ -2808,11 +3237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 125 }, "_enabled": true, "__prefab": { - "__id__": 109 + "__id__": 127 }, "_contentSize": { "__type__": "cc.Size", @@ -2836,11 +3265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 125 }, "_enabled": true, "__prefab": { - "__id__": 111 + "__id__": 129 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2894,11 +3323,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 132 }, "_contentSize": { "__type__": "cc.Size", @@ -2922,11 +3351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 134 }, "_alignFlags": 16, "_target": null, @@ -2958,11 +3387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 136 }, "_resizeMode": 0, "_layoutType": 1, @@ -3013,29 +3442,29 @@ }, "_children": [ { - "__id__": 121 + "__id__": 139 }, { - "__id__": 129 + "__id__": 147 } ], "_active": true, "_components": [ { - "__id__": 137 + "__id__": 155 }, { - "__id__": 139 + "__id__": 157 }, { - "__id__": 141 + "__id__": 159 }, { - "__id__": 144 + "__id__": 162 } ], "_prefab": { - "__id__": 146 + "__id__": 164 }, "_lpos": { "__type__": "cc.Vec3", @@ -3072,23 +3501,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 120 + "__id__": 138 }, "_children": [], "_active": true, "_components": [ { - "__id__": 122 + "__id__": 140 }, { - "__id__": 124 + "__id__": 142 }, { - "__id__": 126 + "__id__": 144 } ], "_prefab": { - "__id__": 128 + "__id__": 146 }, "_lpos": { "__type__": "cc.Vec3", @@ -3125,11 +3554,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 141 }, "_contentSize": { "__type__": "cc.Size", @@ -3153,11 +3582,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 143 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3224,11 +3653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 145 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -3258,23 +3687,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 120 + "__id__": 138 }, "_children": [], "_active": true, "_components": [ { - "__id__": 130 + "__id__": 148 }, { - "__id__": 132 + "__id__": 150 }, { - "__id__": 134 + "__id__": 152 } ], "_prefab": { - "__id__": 136 + "__id__": 154 }, "_lpos": { "__type__": "cc.Vec3", @@ -3311,11 +3740,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 149 }, "_contentSize": { "__type__": "cc.Size", @@ -3339,11 +3768,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 151 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3410,11 +3839,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 153 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -3444,11 +3873,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 138 + "__id__": 156 }, "_contentSize": { "__type__": "cc.Size", @@ -3472,11 +3901,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 158 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3517,15 +3946,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 160 }, "clickEvents": [ { - "__id__": 143 + "__id__": 161 } ], "_interactable": true, @@ -3565,7 +3994,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 120 + "__id__": 138 }, "_id": "" }, @@ -3589,11 +4018,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 145 + "__id__": 163 }, "_alignFlags": 42, "_target": null, @@ -3642,20 +4071,20 @@ }, "_children": [ { - "__id__": 148 + "__id__": 166 } ], "_active": true, "_components": [ { - "__id__": 156 + "__id__": 174 }, { - "__id__": 158 + "__id__": 176 } ], "_prefab": { - "__id__": 160 + "__id__": 178 }, "_lpos": { "__type__": "cc.Vec3", @@ -3692,23 +4121,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 147 + "__id__": 165 }, "_children": [], "_active": true, "_components": [ { - "__id__": 149 + "__id__": 167 }, { - "__id__": 151 + "__id__": 169 }, { - "__id__": 153 + "__id__": 171 } ], "_prefab": { - "__id__": 155 + "__id__": 173 }, "_lpos": { "__type__": "cc.Vec3", @@ -3745,11 +4174,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 148 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 168 }, "_contentSize": { "__type__": "cc.Size", @@ -3773,11 +4202,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 148 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 170 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3844,11 +4273,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 148 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 172 }, "_alignFlags": 45, "_target": null, @@ -3893,11 +4322,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 175 }, "_contentSize": { "__type__": "cc.Size", @@ -3921,11 +4350,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 177 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3983,7 +4412,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 162 + "__id__": 180 }, "_contentSize": { "__type__": "cc.Size", @@ -4011,7 +4440,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 164 + "__id__": 182 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4056,7 +4485,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 166 + "__id__": 184 }, "_alignFlags": 41, "_target": null, @@ -4105,7 +4534,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 187 }, "_contentSize": { "__type__": "cc.Size", @@ -4133,7 +4562,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 171 + "__id__": 189 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4191,26 +4620,26 @@ }, "_children": [ { - "__id__": 174 + "__id__": 192 }, { - "__id__": 254 + "__id__": 272 } ], "_active": true, "_components": [ { - "__id__": 262 + "__id__": 280 }, { - "__id__": 264 + "__id__": 282 }, { - "__id__": 266 + "__id__": 284 } ], "_prefab": { - "__id__": 268 + "__id__": 286 }, "_lpos": { "__type__": "cc.Vec3", @@ -4247,30 +4676,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 173 + "__id__": 191 }, "_children": [ { - "__id__": 175 + "__id__": 193 }, { - "__id__": 181 + "__id__": 199 }, { - "__id__": 215 + "__id__": 233 } ], "_active": true, "_components": [ { - "__id__": 249 + "__id__": 267 }, { - "__id__": 251 + "__id__": 269 } ], "_prefab": { - "__id__": 253 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", @@ -4307,20 +4736,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 174 + "__id__": 192 }, "_children": [], "_active": true, "_components": [ { - "__id__": 176 + "__id__": 194 }, { - "__id__": 178 + "__id__": 196 } ], "_prefab": { - "__id__": 180 + "__id__": 198 }, "_lpos": { "__type__": "cc.Vec3", @@ -4357,11 +4786,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 195 }, "_contentSize": { "__type__": "cc.Size", @@ -4385,11 +4814,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 193 }, "_enabled": false, "__prefab": { - "__id__": 179 + "__id__": 197 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4443,33 +4872,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 174 + "__id__": 192 }, "_children": [ { - "__id__": 182 - }, - { - "__id__": 194 - } - ], - "_active": true, - "_components": [ - { - "__id__": 206 - }, - { - "__id__": 208 - }, - { - "__id__": 210 + "__id__": 200 }, { "__id__": 212 } ], + "_active": true, + "_components": [ + { + "__id__": 224 + }, + { + "__id__": 226 + }, + { + "__id__": 228 + }, + { + "__id__": 230 + } + ], "_prefab": { - "__id__": 214 + "__id__": 232 }, "_lpos": { "__type__": "cc.Vec3", @@ -4506,24 +4935,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 181 + "__id__": 199 }, "_children": [ { - "__id__": 183 + "__id__": 201 } ], "_active": true, "_components": [ { - "__id__": 189 + "__id__": 207 }, { - "__id__": 191 + "__id__": 209 } ], "_prefab": { - "__id__": 193 + "__id__": 211 }, "_lpos": { "__type__": "cc.Vec3", @@ -4560,20 +4989,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 182 + "__id__": 200 }, "_children": [], "_active": true, "_components": [ { - "__id__": 184 + "__id__": 202 }, { - "__id__": 186 + "__id__": 204 } ], "_prefab": { - "__id__": 188 + "__id__": 206 }, "_lpos": { "__type__": "cc.Vec3", @@ -4610,11 +5039,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 183 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 203 }, "_contentSize": { "__type__": "cc.Size", @@ -4638,11 +5067,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 183 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 187 + "__id__": 205 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4696,11 +5125,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 208 }, "_contentSize": { "__type__": "cc.Size", @@ -4724,11 +5153,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 210 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4782,24 +5211,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 181 + "__id__": 199 }, "_children": [ { - "__id__": 195 + "__id__": 213 } ], "_active": true, "_components": [ { - "__id__": 201 + "__id__": 219 }, { - "__id__": 203 + "__id__": 221 } ], "_prefab": { - "__id__": 205 + "__id__": 223 }, "_lpos": { "__type__": "cc.Vec3", @@ -4836,20 +5265,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 194 + "__id__": 212 }, "_children": [], "_active": true, "_components": [ { - "__id__": 196 + "__id__": 214 }, { - "__id__": 198 + "__id__": 216 } ], "_prefab": { - "__id__": 200 + "__id__": 218 }, "_lpos": { "__type__": "cc.Vec3", @@ -4886,11 +5315,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 215 }, "_contentSize": { "__type__": "cc.Size", @@ -4914,11 +5343,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 199 + "__id__": 217 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4972,11 +5401,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 220 }, "_contentSize": { "__type__": "cc.Size", @@ -5000,11 +5429,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 222 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5058,11 +5487,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 199 }, "_enabled": true, "__prefab": { - "__id__": 207 + "__id__": 225 }, "_contentSize": { "__type__": "cc.Size", @@ -5086,11 +5515,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 199 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 227 }, "_alignFlags": 5, "_target": null, @@ -5122,17 +5551,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 199 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 229 }, "selectedSprite": { - "__id__": 203 + "__id__": 221 }, "unSelectedSprite": { - "__id__": 191 + "__id__": 209 }, "_id": "" }, @@ -5146,11 +5575,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 199 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 231 }, "clickEvents": [], "_interactable": true, @@ -5215,33 +5644,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 174 + "__id__": 192 }, "_children": [ { - "__id__": 216 - }, - { - "__id__": 228 - } - ], - "_active": true, - "_components": [ - { - "__id__": 240 - }, - { - "__id__": 242 - }, - { - "__id__": 244 + "__id__": 234 }, { "__id__": 246 } ], + "_active": true, + "_components": [ + { + "__id__": 258 + }, + { + "__id__": 260 + }, + { + "__id__": 262 + }, + { + "__id__": 264 + } + ], "_prefab": { - "__id__": 248 + "__id__": 266 }, "_lpos": { "__type__": "cc.Vec3", @@ -5278,24 +5707,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 215 + "__id__": 233 }, "_children": [ { - "__id__": 217 + "__id__": 235 } ], "_active": true, "_components": [ { - "__id__": 223 + "__id__": 241 }, { - "__id__": 225 + "__id__": 243 } ], "_prefab": { - "__id__": 227 + "__id__": 245 }, "_lpos": { "__type__": "cc.Vec3", @@ -5332,20 +5761,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 216 + "__id__": 234 }, "_children": [], "_active": true, "_components": [ { - "__id__": 218 + "__id__": 236 }, { - "__id__": 220 + "__id__": 238 } ], "_prefab": { - "__id__": 222 + "__id__": 240 }, "_lpos": { "__type__": "cc.Vec3", @@ -5382,11 +5811,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 217 + "__id__": 235 }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 237 }, "_contentSize": { "__type__": "cc.Size", @@ -5410,11 +5839,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 217 + "__id__": 235 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 239 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5468,11 +5897,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 216 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 242 }, "_contentSize": { "__type__": "cc.Size", @@ -5496,11 +5925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 216 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 244 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5554,24 +5983,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 215 + "__id__": 233 }, "_children": [ { - "__id__": 229 + "__id__": 247 } ], "_active": true, "_components": [ { - "__id__": 235 + "__id__": 253 }, { - "__id__": 237 + "__id__": 255 } ], "_prefab": { - "__id__": 239 + "__id__": 257 }, "_lpos": { "__type__": "cc.Vec3", @@ -5608,20 +6037,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 228 + "__id__": 246 }, "_children": [], "_active": true, "_components": [ { - "__id__": 230 + "__id__": 248 }, { - "__id__": 232 + "__id__": 250 } ], "_prefab": { - "__id__": 234 + "__id__": 252 }, "_lpos": { "__type__": "cc.Vec3", @@ -5658,11 +6087,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 229 + "__id__": 247 }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 249 }, "_contentSize": { "__type__": "cc.Size", @@ -5686,11 +6115,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 229 + "__id__": 247 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 251 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5744,11 +6173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 228 + "__id__": 246 }, "_enabled": true, "__prefab": { - "__id__": 236 + "__id__": 254 }, "_contentSize": { "__type__": "cc.Size", @@ -5772,11 +6201,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 228 + "__id__": 246 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 256 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5830,11 +6259,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", @@ -5858,11 +6287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 261 }, "_alignFlags": 5, "_target": null, @@ -5894,17 +6323,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 245 + "__id__": 263 }, "selectedSprite": { - "__id__": 237 + "__id__": 255 }, "unSelectedSprite": { - "__id__": 225 + "__id__": 243 }, "_id": "" }, @@ -5918,11 +6347,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 247 + "__id__": 265 }, "clickEvents": [], "_interactable": true, @@ -5987,11 +6416,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 174 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 268 }, "_contentSize": { "__type__": "cc.Size", @@ -6015,11 +6444,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 174 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 252 + "__id__": 270 }, "_id": "" }, @@ -6046,23 +6475,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 173 + "__id__": 191 }, "_children": [], "_active": true, "_components": [ { - "__id__": 255 + "__id__": 273 }, { - "__id__": 257 + "__id__": 275 }, { - "__id__": 259 + "__id__": 277 } ], "_prefab": { - "__id__": 261 + "__id__": 279 }, "_lpos": { "__type__": "cc.Vec3", @@ -6099,11 +6528,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 274 }, "_contentSize": { "__type__": "cc.Size", @@ -6127,11 +6556,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 276 }, "_resizeMode": 1, "_layoutType": 3, @@ -6165,11 +6594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 272 }, "_enabled": false, "__prefab": { - "__id__": 260 + "__id__": 278 }, "_alignFlags": 40, "_target": null, @@ -6214,11 +6643,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 281 }, "_contentSize": { "__type__": "cc.Size", @@ -6242,11 +6671,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 265 + "__id__": 283 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6287,11 +6716,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 267 + "__id__": 285 }, "_resizeMode": 1, "_layoutType": 2, @@ -6342,7 +6771,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 270 + "__id__": 288 }, "_contentSize": { "__type__": "cc.Size", @@ -6370,7 +6799,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 272 + "__id__": 290 }, "_alignFlags": 41, "_target": null, @@ -6406,7 +6835,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 292 }, "_resizeMode": 1, "_layoutType": 2, @@ -6457,7 +6886,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 295 }, "_contentSize": { "__type__": "cc.Size", @@ -6485,7 +6914,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 297 }, "_type": 0, "_inverted": false, @@ -6507,7 +6936,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 299 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6553,7 +6982,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 301 }, "_alignFlags": 45, "_target": null, @@ -6602,7 +7031,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 304 }, "_contentSize": { "__type__": "cc.Size", @@ -6630,7 +7059,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 288 + "__id__": 306 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6675,7 +7104,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 290 + "__id__": 308 }, "bounceDuration": 0.23, "brake": 0.75, @@ -6706,7 +7135,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 292 + "__id__": 310 }, "_alignFlags": 45, "_target": null, @@ -6755,38 +7184,38 @@ }, "_children": [ { - "__id__": 295 + "__id__": 313 }, { - "__id__": 301 + "__id__": 319 }, { - "__id__": 307 + "__id__": 325 }, { - "__id__": 315 + "__id__": 333 } ], "_active": true, "_components": [ { - "__id__": 337 + "__id__": 355 }, { - "__id__": 339 + "__id__": 357 }, { - "__id__": 341 + "__id__": 359 }, { - "__id__": 343 + "__id__": 361 }, { - "__id__": 345 + "__id__": 363 } ], "_prefab": { - "__id__": 347 + "__id__": 365 }, "_lpos": { "__type__": "cc.Vec3", @@ -6823,20 +7252,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 294 + "__id__": 312 }, "_children": [], "_active": true, "_components": [ { - "__id__": 296 + "__id__": 314 }, { - "__id__": 298 + "__id__": 316 } ], "_prefab": { - "__id__": 300 + "__id__": 318 }, "_lpos": { "__type__": "cc.Vec3", @@ -6873,11 +7302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 315 }, "_contentSize": { "__type__": "cc.Size", @@ -6901,11 +7330,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 299 + "__id__": 317 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6959,20 +7388,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 294 + "__id__": 312 }, "_children": [], "_active": true, "_components": [ { - "__id__": 302 + "__id__": 320 }, { - "__id__": 304 + "__id__": 322 } ], "_prefab": { - "__id__": 306 + "__id__": 324 }, "_lpos": { "__type__": "cc.Vec3", @@ -7009,11 +7438,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 319 }, "_enabled": true, "__prefab": { - "__id__": 303 + "__id__": 321 }, "_contentSize": { "__type__": "cc.Size", @@ -7037,11 +7466,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 319 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 323 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7095,23 +7524,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 294 + "__id__": 312 }, "_children": [], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 326 }, { - "__id__": 310 + "__id__": 328 }, { - "__id__": 312 + "__id__": 330 } ], "_prefab": { - "__id__": 314 + "__id__": 332 }, "_lpos": { "__type__": "cc.Vec3", @@ -7148,11 +7577,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 327 }, "_contentSize": { "__type__": "cc.Size", @@ -7176,11 +7605,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 329 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7221,11 +7650,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 331 }, "_alignFlags": 36, "_target": null, @@ -7270,33 +7699,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 294 + "__id__": 312 }, "_children": [ { - "__id__": 316 + "__id__": 334 }, { - "__id__": 322 + "__id__": 340 } ], "_active": true, "_components": [ { - "__id__": 328 + "__id__": 346 }, { - "__id__": 330 + "__id__": 348 }, { - "__id__": 332 + "__id__": 350 }, { - "__id__": 334 + "__id__": 352 } ], "_prefab": { - "__id__": 336 + "__id__": 354 }, "_lpos": { "__type__": "cc.Vec3", @@ -7333,20 +7762,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 315 + "__id__": 333 }, "_children": [], "_active": true, "_components": [ { - "__id__": 317 + "__id__": 335 }, { - "__id__": 319 + "__id__": 337 } ], "_prefab": { - "__id__": 321 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", @@ -7383,11 +7812,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 334 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 336 }, "_contentSize": { "__type__": "cc.Size", @@ -7411,11 +7840,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 334 }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 338 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7469,20 +7898,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 315 + "__id__": 333 }, "_children": [], "_active": true, "_components": [ { - "__id__": 323 + "__id__": 341 }, { - "__id__": 325 + "__id__": 343 } ], "_prefab": { - "__id__": 327 + "__id__": 345 }, "_lpos": { "__type__": "cc.Vec3", @@ -7519,11 +7948,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 322 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 324 + "__id__": 342 }, "_contentSize": { "__type__": "cc.Size", @@ -7547,11 +7976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 322 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 326 + "__id__": 344 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7628,11 +8057,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 333 }, "_enabled": true, "__prefab": { - "__id__": 329 + "__id__": 347 }, "_contentSize": { "__type__": "cc.Size", @@ -7656,11 +8085,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 333 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7701,11 +8130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 333 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 351 }, "_alignFlags": 12, "_target": null, @@ -7737,11 +8166,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 333 }, "_enabled": false, "__prefab": { - "__id__": 335 + "__id__": 353 }, "_resizeMode": 0, "_layoutType": 1, @@ -7788,11 +8217,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 356 }, "_contentSize": { "__type__": "cc.Size", @@ -7816,11 +8245,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 358 }, "clickEvents": [], "_interactable": true, @@ -7860,7 +8289,7 @@ "_duration": 0.1, "_zoomScale": 0.95, "_target": { - "__id__": 294 + "__id__": 312 }, "_id": "" }, @@ -7874,26 +8303,26 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 360 }, "img": { - "__id__": 298 + "__id__": 316 }, "video": { - "__id__": 304 + "__id__": 322 }, "videoReady": { - "__id__": 310 + "__id__": 328 }, "priceFrame": { - "__id__": 315 + "__id__": 333 }, "videoPrice": { - "__id__": 325 + "__id__": 343 }, "_id": "" }, @@ -7907,11 +8336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 344 + "__id__": 362 }, "_type": 3, "_inverted": false, @@ -7929,11 +8358,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 346 + "__id__": 364 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7991,7 +8420,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 349 + "__id__": 367 }, "_contentSize": { "__type__": "cc.Size", @@ -8019,7 +8448,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 351 + "__id__": 369 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8064,7 +8493,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 353 + "__id__": 371 }, "_alignFlags": 45, "_target": null, @@ -8115,20 +8544,20 @@ "_active": true, "_components": [ { - "__id__": 356 + "__id__": 374 }, { - "__id__": 358 + "__id__": 376 }, { - "__id__": 360 + "__id__": 378 }, { - "__id__": 363 + "__id__": 381 } ], "_prefab": { - "__id__": 365 + "__id__": 383 }, "_lpos": { "__type__": "cc.Vec3", @@ -8165,11 +8594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 373 }, "_enabled": true, "__prefab": { - "__id__": 357 + "__id__": 375 }, "_contentSize": { "__type__": "cc.Size", @@ -8193,11 +8622,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 373 }, "_enabled": true, "__prefab": { - "__id__": 359 + "__id__": 377 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8238,15 +8667,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 373 }, "_enabled": true, "__prefab": { - "__id__": 361 + "__id__": 379 }, "clickEvents": [ { - "__id__": 362 + "__id__": 380 } ], "_interactable": true, @@ -8286,7 +8715,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 355 + "__id__": 373 }, "_id": "" }, @@ -8310,11 +8739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 373 }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 382 }, "_alignFlags": 9, "_target": null, @@ -8363,7 +8792,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 367 + "__id__": 385 }, "_contentSize": { "__type__": "cc.Size", @@ -8391,7 +8820,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 369 + "__id__": 387 }, "_alignFlags": 45, "_target": null, @@ -8427,7 +8856,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 371 + "__id__": 389 }, "_id": "" }, @@ -8445,7 +8874,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 391 }, "m_rootNode": null, "videoArea": { @@ -8455,37 +8884,37 @@ "__id__": 42 }, "imgToggle": { - "__id__": 210 + "__id__": 228 }, "videoToggle": { - "__id__": 244 + "__id__": 262 }, "starParent": { - "__id__": 82 + "__id__": 100 }, "tags": { - "__id__": 67 + "__id__": 85 }, "descAge": { "__id__": 51 }, "desc": { - "__id__": 151 + "__id__": 169 }, "chatBtn": { - "__id__": 120 + "__id__": 138 }, "descContent": { "__id__": 24 }, "imgItemInst": { - "__id__": 341 + "__id__": 359 }, "imgsLayout": { - "__id__": 254 + "__id__": 272 }, "sendMsgText": { - "__id__": 121 + "__id__": 139 }, "_id": "" }, @@ -8501,6 +8930,8 @@ "asset": { "__id__": 0 }, - "fileId": "24mSBg+Z9OS5KNS5Yscqr0" + "fileId": "24mSBg+Z9OS5KNS5Yscqr0", + "instance": null, + "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/bundles/Chat18x/NavigationPanel.prefab b/assets/bundles/Chat18x/NavigationPanel.prefab index c66f9972..0480de5a 100644 --- a/assets/bundles/Chat18x/NavigationPanel.prefab +++ b/assets/bundles/Chat18x/NavigationPanel.prefab @@ -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, diff --git a/assets/bundles/Chat18x/RankPanel.prefab b/assets/bundles/Chat18x/RankPanel.prefab index 996de8ad..1e4edba0 100644 --- a/assets/bundles/Chat18x/RankPanel.prefab +++ b/assets/bundles/Chat18x/RankPanel.prefab @@ -22,29 +22,23 @@ "__id__": 2 }, { - "__id__": 8 - }, - { - "__id__": 116 - }, - { - "__id__": 124 - }, - { - "__id__": 130 + "__id__": 10 } ], "_active": true, "_components": [ { - "__id__": 284 + "__id__": 319 }, { - "__id__": 286 + "__id__": 321 + }, + { + "__id__": 323 } ], "_prefab": { - "__id__": 288 + "__id__": 325 }, "_lpos": { "__type__": "cc.Vec3", @@ -91,10 +85,13 @@ }, { "__id__": 5 + }, + { + "__id__": 7 } ], "_prefab": { - "__id__": 7 + "__id__": 9 }, "_lpos": { "__type__": "cc.Vec3", @@ -198,6 +195,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "c8X4sVfUZPJb8b0BU1k7Y1" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_alignFlags": 1, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "01z1Mk4qdFwbv9XLuf7gXx" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -213,7 +246,7 @@ }, { "__type__": "cc.Node", - "_name": "selection", + "_name": "bg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -221,31 +254,34 @@ }, "_children": [ { - "__id__": 9 + "__id__": 11 }, { - "__id__": 43 + "__id__": 121 }, { - "__id__": 77 + "__id__": 129 + }, + { + "__id__": 137 } ], "_active": true, "_components": [ { - "__id__": 111 + "__id__": 314 }, { - "__id__": 113 + "__id__": 316 } ], "_prefab": { - "__id__": 115 + "__id__": 318 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 581.22, + "y": 70, "z": 0 }, "_lrot": { @@ -273,31 +309,94 @@ }, { "__type__": "cc.Node", - "_name": "rankDay", + "_name": "selection", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 8 + "__id__": 10 }, "_children": [ { - "__id__": 10 + "__id__": 12 }, { - "__id__": 24 + "__id__": 46 + }, + { + "__id__": 80 } ], "_active": true, "_components": [ { - "__id__": 38 + "__id__": 114 }, { - "__id__": 40 + "__id__": 116 + }, + { + "__id__": 118 } ], "_prefab": { - "__id__": 42 + "__id__": 120 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 561.242, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "dayRankBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 13 + }, + { + "__id__": 27 + } + ], + "_active": true, + "_components": [ + { + "__id__": 41 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 45 }, "_lpos": { "__type__": "cc.Vec3", @@ -328,353 +427,30 @@ }, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "rankDaySelecting", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 9 - }, - "_children": [ - { - "__id__": 11 - } - ], - "_active": true, - "_components": [ - { - "__id__": 19 - }, - { - "__id__": 21 - } - ], - "_prefab": { - "__id__": 23 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 10 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 12 - }, - { - "__id__": 14 - }, - { - "__id__": 16 - } - ], - "_prefab": { - "__id__": 18 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": { - "__id__": 13 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 60, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5bZU/RF2FLCLbka1TeWIVJ" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": { - "__id__": 15 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "日榜", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 30, - "_fontSize": 30, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "69LU1YmldPkq/jCNzHBLrh" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": { - "__id__": 17 - }, - "languageKey": "rankpanel.dayrank", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a2hsLEMCVEnb8Jheigh1t1" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c9zY+oiadK/5ppQjbLUGJo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 10 - }, - "_enabled": true, - "__prefab": { - "__id__": 20 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 160, - "height": 60 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "17E7sr5/pM97ljW/DXz4qu" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 10 - }, - "_enabled": true, - "__prefab": { - "__id__": 22 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "db8e2337-75fc-4fef-8b71-99a7cad29348@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "329rNsRedKTq7Q8MS9uHEj" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "48ELkMYNVC/LaT9etGf+o5", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "rankDayNotSelecting", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 12 }, "_children": [ { - "__id__": 25 + "__id__": 14 } ], "_active": true, "_components": [ { - "__id__": 33 + "__id__": 22 }, { - "__id__": 35 + "__id__": 24 } ], "_prefab": { - "__id__": 37 + "__id__": 26 }, "_lpos": { "__type__": "cc.Vec3", @@ -711,23 +487,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 24 + "__id__": 13 }, "_children": [], "_active": true, "_components": [ { - "__id__": 26 + "__id__": 15 }, { - "__id__": 28 + "__id__": 17 }, { - "__id__": 30 + "__id__": 19 } ], "_prefab": { - "__id__": 32 + "__id__": 21 }, "_lpos": { "__type__": "cc.Vec3", @@ -764,11 +540,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 14 }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 16 }, "_contentSize": { "__type__": "cc.Size", @@ -792,11 +568,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 14 }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 18 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -860,11 +636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 14 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 20 }, "languageKey": "rankpanel.dayrank", "defaultText": "", @@ -894,11 +670,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 13 }, "_enabled": true, "__prefab": { - "__id__": 34 + "__id__": 23 }, "_contentSize": { "__type__": "cc.Size", @@ -922,11 +698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 13 }, "_enabled": false, "__prefab": { - "__id__": 36 + "__id__": 25 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -974,18 +750,341 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "rankDaySelecting", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 12 + }, + "_children": [ + { + "__id__": 28 + } + ], + "_active": true, + "_components": [ + { + "__id__": 36 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 40 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 29 + }, + { + "__id__": 31 + }, + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 35 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 30 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bZU/RF2FLCLbka1TeWIVJ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 32 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "日榜", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "69LU1YmldPkq/jCNzHBLrh" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 34 + }, + "languageKey": "rankpanel.dayrank", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2hsLEMCVEnb8Jheigh1t1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9zY+oiadK/5ppQjbLUGJo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 37 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "17E7sr5/pM97ljW/DXz4qu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 }, "_enabled": true, "__prefab": { "__id__": 39 }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "db8e2337-75fc-4fef-8b71-99a7cad29348@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "329rNsRedKTq7Q8MS9uHEj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48ELkMYNVC/LaT9etGf+o5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, "_contentSize": { "__type__": "cc.Size", "width": 160, @@ -1008,11 +1107,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 12 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 44 }, "clickEvents": [], "_interactable": true, @@ -1073,31 +1172,31 @@ }, { "__type__": "cc.Node", - "_name": "rankWeek", + "_name": "weekRankBtn", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 8 + "__id__": 11 }, "_children": [ { - "__id__": 44 + "__id__": 47 }, { - "__id__": 58 + "__id__": 61 } ], "_active": true, "_components": [ { - "__id__": 72 + "__id__": 75 }, { - "__id__": 74 + "__id__": 77 } ], "_prefab": { - "__id__": 76 + "__id__": 79 }, "_lpos": { "__type__": "cc.Vec3", @@ -1128,353 +1227,30 @@ }, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "rankDaySelecting", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 43 - }, - "_children": [ - { - "__id__": 45 - } - ], - "_active": false, - "_components": [ - { - "__id__": 53 - }, - { - "__id__": 55 - } - ], - "_prefab": { - "__id__": 57 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 44 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 46 - }, - { - "__id__": 48 - }, - { - "__id__": 50 - } - ], - "_prefab": { - "__id__": 52 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 45 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 60, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "19OkjptqlL54i1rq4i0zgC" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 45 - }, - "_enabled": true, - "__prefab": { - "__id__": 49 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "周榜", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 30, - "_fontSize": 30, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "55KuG8J+VJKL3aqkltZwzc" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 45 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "languageKey": "rankpanel.weekrank", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e7ciEiNU1FEaLEd6g6Z8EI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e7L1KOKAVOybNLTKcMIbKT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": { - "__id__": 54 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 160, - "height": 60 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b5KaegvjNNQZQr+nwr5pmS" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": { - "__id__": 56 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "db8e2337-75fc-4fef-8b71-99a7cad29348@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8eyZvR50FOJLO+rq5EceEz" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "0dcu2rNmlOI7Aq6H89fSeR", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "rankDayNotSelecting", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 43 + "__id__": 46 }, "_children": [ { - "__id__": 59 + "__id__": 48 } ], "_active": true, "_components": [ { - "__id__": 67 + "__id__": 56 }, { - "__id__": 69 + "__id__": 58 } ], "_prefab": { - "__id__": 71 + "__id__": 60 }, "_lpos": { "__type__": "cc.Vec3", @@ -1511,23 +1287,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 58 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 60 + "__id__": 49 }, { - "__id__": 62 + "__id__": 51 }, { - "__id__": 64 + "__id__": 53 } ], "_prefab": { - "__id__": 66 + "__id__": 55 }, "_lpos": { "__type__": "cc.Vec3", @@ -1564,11 +1340,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 48 }, "_enabled": true, "__prefab": { - "__id__": 61 + "__id__": 50 }, "_contentSize": { "__type__": "cc.Size", @@ -1592,11 +1368,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 48 }, "_enabled": true, "__prefab": { - "__id__": 63 + "__id__": 52 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1660,11 +1436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 48 }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 54 }, "languageKey": "rankpanel.weekrank", "defaultText": "", @@ -1694,11 +1470,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 47 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 57 }, "_contentSize": { "__type__": "cc.Size", @@ -1722,11 +1498,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 47 }, "_enabled": false, "__prefab": { - "__id__": 70 + "__id__": 59 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1774,18 +1550,341 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "rankDaySelecting", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 46 + }, + "_children": [ + { + "__id__": 62 + } + ], + "_active": false, + "_components": [ + { + "__id__": 70 + }, + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 74 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 61 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + }, + { + "__id__": 65 + }, + { + "__id__": 67 + } + ], + "_prefab": { + "__id__": 69 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 62 + }, + "_enabled": true, + "__prefab": { + "__id__": 64 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "19OkjptqlL54i1rq4i0zgC" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 62 + }, + "_enabled": true, + "__prefab": { + "__id__": 66 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "周榜", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "55KuG8J+VJKL3aqkltZwzc" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 62 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "languageKey": "rankpanel.weekrank", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e7ciEiNU1FEaLEd6g6Z8EI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e7L1KOKAVOybNLTKcMIbKT", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 71 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b5KaegvjNNQZQr+nwr5pmS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 }, "_enabled": true, "__prefab": { "__id__": 73 }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "db8e2337-75fc-4fef-8b71-99a7cad29348@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8eyZvR50FOJLO+rq5EceEz" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dcu2rNmlOI7Aq6H89fSeR", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 46 + }, + "_enabled": true, + "__prefab": { + "__id__": 76 + }, "_contentSize": { "__type__": "cc.Size", "width": 160, @@ -1808,11 +1907,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 46 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 78 }, "clickEvents": [], "_interactable": true, @@ -1873,31 +1972,31 @@ }, { "__type__": "cc.Node", - "_name": "rankMonth", + "_name": "monthRankBtn", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 8 + "__id__": 11 }, "_children": [ { - "__id__": 78 + "__id__": 81 }, { - "__id__": 92 + "__id__": 95 } ], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 109 }, { - "__id__": 108 + "__id__": 111 } ], "_prefab": { - "__id__": 110 + "__id__": 113 }, "_lpos": { "__type__": "cc.Vec3", @@ -1928,353 +2027,30 @@ }, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "rankDaySelecting", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 77 - }, - "_children": [ - { - "__id__": 79 - } - ], - "_active": false, - "_components": [ - { - "__id__": 87 - }, - { - "__id__": 89 - } - ], - "_prefab": { - "__id__": 91 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 78 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 80 - }, - { - "__id__": 82 - }, - { - "__id__": 84 - } - ], - "_prefab": { - "__id__": 86 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 79 - }, - "_enabled": true, - "__prefab": { - "__id__": 81 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 60, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e61i56bmhBDbUpbanY45hn" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 79 - }, - "_enabled": true, - "__prefab": { - "__id__": 83 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "月榜", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 30, - "_fontSize": 30, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "05RR18k/9E6q5lv302LWAv" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 79 - }, - "_enabled": true, - "__prefab": { - "__id__": 85 - }, - "languageKey": "rankpanel.monthrank", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f3id1nQitDR4f0faIpJRMJ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3fayAO7mlF94Gv5lf+NpMP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 78 - }, - "_enabled": true, - "__prefab": { - "__id__": 88 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 160, - "height": 60 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0d475wUKBOy4eQp51ZtUjZ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 78 - }, - "_enabled": true, - "__prefab": { - "__id__": 90 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "db8e2337-75fc-4fef-8b71-99a7cad29348@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "66SIMevnZGeqSLbBIDrUgy" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d9HzGurL5FzKHGcX/gVcgJ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "rankDayNotSelecting", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 77 + "__id__": 80 }, "_children": [ { - "__id__": 93 + "__id__": 82 } ], "_active": true, "_components": [ { - "__id__": 101 + "__id__": 90 }, { - "__id__": 103 + "__id__": 92 } ], "_prefab": { - "__id__": 105 + "__id__": 94 }, "_lpos": { "__type__": "cc.Vec3", @@ -2311,23 +2087,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 92 + "__id__": 81 }, "_children": [], "_active": true, "_components": [ { - "__id__": 94 + "__id__": 83 }, { - "__id__": 96 + "__id__": 85 }, { - "__id__": 98 + "__id__": 87 } ], "_prefab": { - "__id__": 100 + "__id__": 89 }, "_lpos": { "__type__": "cc.Vec3", @@ -2364,11 +2140,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 84 }, "_contentSize": { "__type__": "cc.Size", @@ -2392,11 +2168,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 86 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2460,11 +2236,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 99 + "__id__": 88 }, "languageKey": "rankpanel.monthrank", "defaultText": "", @@ -2494,11 +2270,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 102 + "__id__": 91 }, "_contentSize": { "__type__": "cc.Size", @@ -2522,11 +2298,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 81 }, "_enabled": false, "__prefab": { - "__id__": 104 + "__id__": 93 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2574,18 +2350,341 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "rankDaySelecting", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 80 + }, + "_children": [ + { + "__id__": 96 + } + ], + "_active": false, + "_components": [ + { + "__id__": 104 + }, + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 108 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 95 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 97 + }, + { + "__id__": 99 + }, + { + "__id__": 101 + } + ], + "_prefab": { + "__id__": 103 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 98 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e61i56bmhBDbUpbanY45hn" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 100 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "月榜", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "05RR18k/9E6q5lv302LWAv" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 102 + }, + "languageKey": "rankpanel.monthrank", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3id1nQitDR4f0faIpJRMJ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3fayAO7mlF94Gv5lf+NpMP", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 105 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0d475wUKBOy4eQp51ZtUjZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 }, "_enabled": true, "__prefab": { "__id__": 107 }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "db8e2337-75fc-4fef-8b71-99a7cad29348@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "66SIMevnZGeqSLbBIDrUgy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d9HzGurL5FzKHGcX/gVcgJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 80 + }, + "_enabled": true, + "__prefab": { + "__id__": 110 + }, "_contentSize": { "__type__": "cc.Size", "width": 160, @@ -2608,11 +2707,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 80 }, "_enabled": true, "__prefab": { - "__id__": 109 + "__id__": 112 }, "clickEvents": [], "_interactable": true, @@ -2677,11 +2776,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 8 + "__id__": 11 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 115 }, "_contentSize": { "__type__": "cc.Size", @@ -2705,11 +2804,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 8 + "__id__": 11 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 117 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2727,7 +2826,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -2744,6 +2843,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "b17Y7JNg1M072vdS/L+alA" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 11 + }, + "_enabled": true, + "__prefab": { + "__id__": 119 + }, + "_alignFlags": 5, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0.09503972602739728, + "_bottom": 0.8638643835616439, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": false, + "_isAbsBottom": false, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 60, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c9IYeTLWdNObQHCiavN5z/" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2753,8 +2888,6 @@ "__id__": 0 }, "fileId": "0dmfevtRRMILtkqi/G43/J", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -2763,28 +2896,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 10 }, "_children": [], "_active": true, "_components": [ { - "__id__": 117 + "__id__": 122 }, { - "__id__": 119 + "__id__": 124 }, { - "__id__": 121 + "__id__": 126 } ], "_prefab": { - "__id__": 123 + "__id__": 128 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 531.904, + "y": 511.92599999999993, "z": 0 }, "_lrot": { @@ -2816,11 +2949,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 116 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 123 }, "_contentSize": { "__type__": "cc.Size", @@ -2844,11 +2977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 116 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 125 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2889,35 +3022,35 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 116 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 127 }, - "_alignFlags": 40, + "_alignFlags": 5, "_target": null, "_left": 0, "_right": 0, - "_top": 0, - "_bottom": 0, + "_top": 0.14868082191780826, + "_bottom": 0.8499493150684931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, + "_isAbsTop": false, + "_isAbsBottom": false, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 750, - "_originalHeight": 0, + "_originalWidth": 0, + "_originalHeight": 2, "_alignMode": 2, "_lockFlags": 0, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "5dydKl+w9BpaeiCTd8za3z" + "fileId": "19RL7A8GtEKqRwOivD0+WC" }, { "__type__": "cc.PrefabInfo", @@ -2938,25 +3071,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 10 }, "_children": [], "_active": true, "_components": [ { - "__id__": 125 + "__id__": 130 }, { - "__id__": 127 + "__id__": 132 + }, + { + "__id__": 134 } ], "_prefab": { - "__id__": 129 + "__id__": 136 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -102.28899999999999, + "y": -113.49000000000001, "z": 0 }, "_lrot": { @@ -2988,16 +3124,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 129 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 131 }, "_contentSize": { "__type__": "cc.Size", "width": 690, - "height": 1233.7 + "height": 1233.02 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3016,11 +3152,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 129 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 133 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3055,6 +3191,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "07XLK/Ua5IMaLZaZGx/BGZ" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 129 + }, + "_enabled": true, + "__prefab": { + "__id__": 135 + }, + "_alignFlags": 5, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0.1554657534246575, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": false, + "_isAbsBottom": false, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 1233.7, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0dkeZu1OBCnZGvjclstyX4" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3074,32 +3246,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 10 }, "_children": [ { - "__id__": 131 + "__id__": 138 } ], "_active": true, "_components": [ { - "__id__": 277 + "__id__": 305 }, { - "__id__": 279 + "__id__": 307 }, { - "__id__": 281 + "__id__": 309 + }, + { + "__id__": 311 } ], "_prefab": { - "__id__": 283 + "__id__": 313 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -102.28899999999999, + "y": -113.14999999999998, "z": 0 }, "_lrot": { @@ -3131,32 +3306,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 130 + "__id__": 137 }, "_children": [ { - "__id__": 132 + "__id__": 139 }, { - "__id__": 240 + "__id__": 261 }, { - "__id__": 266 + "__id__": 292 } ], "_active": true, "_components": [ { - "__id__": 274 + "__id__": 300 + }, + { + "__id__": 302 } ], "_prefab": { - "__id__": 276 + "__id__": 304 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 28.831999999999994, + "y": 0, "z": 0 }, "_lrot": { @@ -3188,39 +3366,48 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 131 + "__id__": 138 }, "_children": [ { - "__id__": 133 + "__id__": 140 }, { - "__id__": 139 + "__id__": 146 }, { - "__id__": 167 + "__id__": 174 }, { - "__id__": 181 + "__id__": 188 }, { - "__id__": 187 + "__id__": 194 }, { - "__id__": 193 + "__id__": 200 }, { - "__id__": 231 + "__id__": 238 + }, + { + "__id__": 248 } ], "_active": false, "_components": [ { - "__id__": 237 + "__id__": 254 + }, + { + "__id__": 256 + }, + { + "__id__": 258 } ], "_prefab": { - "__id__": 239 + "__id__": 260 }, "_lpos": { "__type__": "cc.Vec3", @@ -3256,202 +3443,6 @@ "_name": "PH_UI_DB2", "_objFlags": 0, "__editorExtras__": {}, - "_parent": { - "__id__": 132 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 134 - }, - { - "__id__": 136 - } - ], - "_prefab": { - "__id__": 138 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 133 - }, - "_enabled": true, - "__prefab": { - "__id__": 135 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 690, - "height": 140 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c9KISbgYZLM5k/Og+wKeol" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 133 - }, - "_enabled": true, - "__prefab": { - "__id__": 137 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "38a19e61-76d2-4ac7-b5a2-c04313324bb7@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acbD+OaKVHc6p1CUXKifRX" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "dbZ3d5HbZBvoP+e4o/MtXE", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "rankOrder", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 132 - }, - "_children": [ - { - "__id__": 140 - }, - { - "__id__": 146 - }, - { - "__id__": 152 - }, - { - "__id__": 158 - } - ], - "_active": true, - "_components": [ - { - "__id__": 164 - } - ], - "_prefab": { - "__id__": 166 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -284.104, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "lv1", - "_objFlags": 0, - "__editorExtras__": {}, "_parent": { "__id__": 139 }, @@ -3509,6 +3500,202 @@ "__prefab": { "__id__": 142 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 690, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c9KISbgYZLM5k/Og+wKeol" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 140 + }, + "_enabled": true, + "__prefab": { + "__id__": 144 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "38a19e61-76d2-4ac7-b5a2-c04313324bb7@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "acbD+OaKVHc6p1CUXKifRX" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbZ3d5HbZBvoP+e4o/MtXE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "rankOrder", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 139 + }, + "_children": [ + { + "__id__": 147 + }, + { + "__id__": 153 + }, + { + "__id__": 159 + }, + { + "__id__": 165 + } + ], + "_active": true, + "_components": [ + { + "__id__": 171 + } + ], + "_prefab": { + "__id__": 173 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -284.104, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "lv1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 146 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 148 + }, + { + "__id__": 150 + } + ], + "_prefab": { + "__id__": 152 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": { + "__id__": 149 + }, "_contentSize": { "__type__": "cc.Size", "width": 68, @@ -3531,11 +3718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 151 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3589,20 +3776,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 146 }, "_children": [], "_active": true, "_components": [ { - "__id__": 147 + "__id__": 154 }, { - "__id__": 149 + "__id__": 156 } ], "_prefab": { - "__id__": 151 + "__id__": 158 }, "_lpos": { "__type__": "cc.Vec3", @@ -3639,11 +3826,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 153 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 155 }, "_contentSize": { "__type__": "cc.Size", @@ -3667,11 +3854,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 153 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 157 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3725,20 +3912,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 146 }, "_children": [], "_active": true, "_components": [ { - "__id__": 153 + "__id__": 160 }, { - "__id__": 155 + "__id__": 162 } ], "_prefab": { - "__id__": 157 + "__id__": 164 }, "_lpos": { "__type__": "cc.Vec3", @@ -3775,11 +3962,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 159 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 161 }, "_contentSize": { "__type__": "cc.Size", @@ -3803,11 +3990,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 159 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 163 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3861,20 +4048,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 146 }, "_children": [], "_active": true, "_components": [ { - "__id__": 159 + "__id__": 166 }, { - "__id__": 161 + "__id__": 168 } ], "_prefab": { - "__id__": 163 + "__id__": 170 }, "_lpos": { "__type__": "cc.Vec3", @@ -3911,11 +4098,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 167 }, "_contentSize": { "__type__": "cc.Size", @@ -3939,11 +4126,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 162 + "__id__": 169 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4023,11 +4210,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 172 }, "_contentSize": { "__type__": "cc.Size", @@ -4064,27 +4251,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 139 }, "_children": [ { - "__id__": 168 + "__id__": 175 } ], "_active": true, "_components": [ { - "__id__": 174 + "__id__": 181 }, { - "__id__": 176 + "__id__": 183 }, { - "__id__": 178 + "__id__": 185 } ], "_prefab": { - "__id__": 180 + "__id__": 187 }, "_lpos": { "__type__": "cc.Vec3", @@ -4121,20 +4308,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 167 + "__id__": 174 }, "_children": [], "_active": true, "_components": [ { - "__id__": 169 + "__id__": 176 }, { - "__id__": 171 + "__id__": 178 } ], "_prefab": { - "__id__": 173 + "__id__": 180 }, "_lpos": { "__type__": "cc.Vec3", @@ -4171,11 +4358,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 170 + "__id__": 177 }, "_contentSize": { "__type__": "cc.Size", @@ -4199,11 +4386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 172 + "__id__": 179 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4257,11 +4444,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 174 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 182 }, "_contentSize": { "__type__": "cc.Size", @@ -4285,11 +4472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 174 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 184 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4330,11 +4517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 174 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 186 }, "_type": 3, "_inverted": false, @@ -4365,20 +4552,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 182 + "__id__": 189 }, { - "__id__": 184 + "__id__": 191 } ], "_prefab": { - "__id__": 186 + "__id__": 193 }, "_lpos": { "__type__": "cc.Vec3", @@ -4415,11 +4602,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 188 }, "_enabled": true, "__prefab": { - "__id__": 183 + "__id__": 190 }, "_contentSize": { "__type__": "cc.Size", @@ -4443,11 +4630,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 188 }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 192 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4527,20 +4714,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 188 + "__id__": 195 }, { - "__id__": 190 + "__id__": 197 } ], "_prefab": { - "__id__": 192 + "__id__": 199 }, "_lpos": { "__type__": "cc.Vec3", @@ -4577,11 +4764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 194 }, "_enabled": true, "__prefab": { - "__id__": 189 + "__id__": 196 }, "_contentSize": { "__type__": "cc.Size", @@ -4605,11 +4792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 194 }, "_enabled": true, "__prefab": { - "__id__": 191 + "__id__": 198 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4627,7 +4814,7 @@ "_actualFontSize": 21, "_fontSize": 20, "_fontFamily": "Arial", - "_lineHeight": 18.1, + "_lineHeight": 28.3, "_overflow": 2, "_enableWrapText": true, "_font": { @@ -4689,39 +4876,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 139 }, "_children": [ { - "__id__": 194 + "__id__": 201 }, { - "__id__": 200 + "__id__": 207 }, { - "__id__": 206 + "__id__": 213 }, { - "__id__": 212 + "__id__": 219 }, { - "__id__": 218 + "__id__": 225 } ], "_active": true, "_components": [ { - "__id__": 224 + "__id__": 231 }, { - "__id__": 226 + "__id__": 233 }, { - "__id__": 228 + "__id__": 235 } ], "_prefab": { - "__id__": 230 + "__id__": 237 }, "_lpos": { "__type__": "cc.Vec3", @@ -4758,20 +4945,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 193 + "__id__": 200 }, "_children": [], "_active": true, "_components": [ { - "__id__": 195 + "__id__": 202 }, { - "__id__": 197 + "__id__": 204 } ], "_prefab": { - "__id__": 199 + "__id__": 206 }, "_lpos": { "__type__": "cc.Vec3", @@ -4808,11 +4995,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 203 }, "_contentSize": { "__type__": "cc.Size", @@ -4836,11 +5023,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 198 + "__id__": 205 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4858,7 +5045,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -4894,20 +5081,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 193 + "__id__": 200 }, "_children": [], "_active": true, "_components": [ { - "__id__": 201 + "__id__": 208 }, { - "__id__": 203 + "__id__": 210 } ], "_prefab": { - "__id__": 205 + "__id__": 212 }, "_lpos": { "__type__": "cc.Vec3", @@ -4944,11 +5131,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 209 }, "_contentSize": { "__type__": "cc.Size", @@ -4972,11 +5159,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 211 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4994,7 +5181,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -5030,20 +5217,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 193 + "__id__": 200 }, "_children": [], "_active": true, "_components": [ { - "__id__": 207 + "__id__": 214 }, { - "__id__": 209 + "__id__": 216 } ], "_prefab": { - "__id__": 211 + "__id__": 218 }, "_lpos": { "__type__": "cc.Vec3", @@ -5080,11 +5267,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 208 + "__id__": 215 }, "_contentSize": { "__type__": "cc.Size", @@ -5108,11 +5295,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 217 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5130,7 +5317,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -5166,20 +5353,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 193 + "__id__": 200 }, "_children": [], "_active": true, "_components": [ { - "__id__": 213 + "__id__": 220 }, { - "__id__": 215 + "__id__": 222 } ], "_prefab": { - "__id__": 217 + "__id__": 224 }, "_lpos": { "__type__": "cc.Vec3", @@ -5216,11 +5403,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 221 }, "_contentSize": { "__type__": "cc.Size", @@ -5244,11 +5431,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 223 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5266,7 +5453,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -5302,20 +5489,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 193 + "__id__": 200 }, "_children": [], "_active": true, "_components": [ { - "__id__": 219 + "__id__": 226 }, { - "__id__": 221 + "__id__": 228 } ], "_prefab": { - "__id__": 223 + "__id__": 230 }, "_lpos": { "__type__": "cc.Vec3", @@ -5352,11 +5539,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 225 }, "_enabled": true, "__prefab": { - "__id__": 220 + "__id__": 227 }, "_contentSize": { "__type__": "cc.Size", @@ -5380,11 +5567,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 225 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 229 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5402,7 +5589,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -5438,11 +5625,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 225 + "__id__": 232 }, "_contentSize": { "__type__": "cc.Size", @@ -5466,11 +5653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 234 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5511,11 +5698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 236 }, "_resizeMode": 0, "_layoutType": 1, @@ -5558,24 +5745,255 @@ }, { "__type__": "cc.Node", - "_name": "ZY_AN_TH", + "_name": "detailBtn", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 232 + "__id__": 239 }, { - "__id__": 234 + "__id__": 241 + }, + { + "__id__": 243 + }, + { + "__id__": 245 } ], "_prefab": { - "__id__": 236 + "__id__": 247 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 238 + }, + "_enabled": true, + "__prefab": { + "__id__": 240 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 690, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "30DJzNBatGCZ9MYtSHlmfF" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 238 + }, + "_enabled": true, + "__prefab": { + "__id__": 242 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eca5l2erhPPLJf7lhGXfRS" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 238 + }, + "_enabled": true, + "__prefab": { + "__id__": 244 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "59ydwftjhGTI+1IfNjNxon" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 238 + }, + "_enabled": true, + "__prefab": { + "__id__": 246 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f1apMuojFBbYia6cZD1F+2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ceZA0JhNpBk65fetHnUd8D", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "chatBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 139 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 249 + }, + { + "__id__": 251 + } + ], + "_prefab": { + "__id__": 253 }, "_lpos": { "__type__": "cc.Vec3", @@ -5612,11 +6030,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 248 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 250 }, "_contentSize": { "__type__": "cc.Size", @@ -5640,11 +6058,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 248 }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 252 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5698,11 +6116,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 132 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 255 }, "_contentSize": { "__type__": "cc.Size", @@ -5720,6 +6138,48 @@ "__type__": "cc.CompPrefabInfo", "fileId": "f9YJbCp41KioXNfdqdCxe3" }, + { + "__type__": "1c2749hWMJOWb+yk8nrIBNh", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 139 + }, + "_enabled": true, + "__prefab": { + "__id__": 257 + }, + "icon": null, + "title": null, + "selectedMode": 0, + "selectedFlag": null, + "selectedSpriteFrame": null, + "adaptiveSize": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fcxLEA9C5N/4McBvBXdj7z" + }, + { + "__type__": "995c8scpbdOSb9EUKaon6T4", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 139 + }, + "_enabled": true, + "__prefab": { + "__id__": 259 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f6GXvwqx5Fv70zmPRFIlIm" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -5735,39 +6195,42 @@ }, { "__type__": "cc.Node", - "_name": "ScrollView", + "_name": "rankScroll", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 131 + "__id__": 138 }, "_children": [ { - "__id__": 241 + "__id__": 262 } ], "_active": true, "_components": [ { - "__id__": 257 + "__id__": 278 }, { - "__id__": 259 + "__id__": 280 }, { - "__id__": 261 + "__id__": 282 }, { - "__id__": 263 + "__id__": 284 + }, + { + "__id__": 286 } ], "_prefab": { - "__id__": 265 + "__id__": 291 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": 616.85, "z": 0 }, "_lrot": { @@ -5799,30 +6262,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 240 + "__id__": 261 }, "_children": [ { - "__id__": 242 + "__id__": 263 } ], "_active": true, "_components": [ { - "__id__": 248 + "__id__": 269 }, { - "__id__": 250 + "__id__": 271 }, { - "__id__": 252 + "__id__": 273 }, { - "__id__": 254 + "__id__": 275 } ], "_prefab": { - "__id__": 256 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -5859,20 +6322,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 241 + "__id__": 262 }, "_children": [], "_active": true, "_components": [ { - "__id__": 243 + "__id__": 264 }, { - "__id__": 245 + "__id__": 266 } ], "_prefab": { - "__id__": 247 + "__id__": 268 }, "_lpos": { "__type__": "cc.Vec3", @@ -5909,16 +6372,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 244 + "__id__": 265 }, "_contentSize": { "__type__": "cc.Size", "width": 690, - "height": 0 + "height": -20 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5937,11 +6400,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 267 }, "_resizeMode": 1, "_layoutType": 2, @@ -5956,7 +6419,7 @@ "_paddingTop": 0, "_paddingBottom": 0, "_spacingX": 0, - "_spacingY": 0, + "_spacingY": 20, "_verticalDirection": 1, "_horizontalDirection": 0, "_constraint": 0, @@ -5988,21 +6451,21 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 241 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 270 }, "_contentSize": { "__type__": "cc.Size", "width": 690, - "height": 1176.036 + "height": 1233.7 }, "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -6016,11 +6479,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 241 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 251 + "__id__": 272 }, "_type": 0, "_inverted": false, @@ -6038,11 +6501,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 241 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 274 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6084,11 +6547,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 241 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 276 }, "_alignFlags": 45, "_target": null, @@ -6133,21 +6596,21 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 240 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 279 }, "_contentSize": { "__type__": "cc.Size", "width": 690, - "height": 1176.036 + "height": 1233.7 }, "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -6161,11 +6624,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 240 + "__id__": 261 }, "_enabled": false, "__prefab": { - "__id__": 260 + "__id__": 281 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6206,22 +6669,22 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 240 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 283 }, "bounceDuration": 0.23, "brake": 0.75, "elastic": true, "inertia": true, "horizontal": false, - "vertical": false, + "vertical": true, "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 242 + "__id__": 263 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -6237,11 +6700,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 240 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 285 }, "_alignFlags": 45, "_target": null, @@ -6267,6 +6730,74 @@ "__type__": "cc.CompPrefabInfo", "fileId": "ccA4jcq9BKIrTECHTuaO9T" }, + { + "__type__": "fd851tnoT1G06/c2igvxAq8", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 261 + }, + "_enabled": true, + "__prefab": { + "__id__": 287 + }, + "templateType": 1, + "tmpNode": { + "__id__": 139 + }, + "tmpPrefab": null, + "_slideMode": 1, + "pageDistance": 0.3, + "pageChangeEvent": { + "__id__": 288 + }, + "_virtual": true, + "cyclic": false, + "lackCenter": false, + "lackSlide": true, + "_updateRate": 0, + "frameByFrameRenderNum": 0, + "renderEvent": { + "__id__": 289 + }, + "selectedMode": 0, + "selectedEvent": { + "__id__": 290 + }, + "repeatEventSingle": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6dpi9XV2JF56Dxh5o4/Arf" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "", + "handler": "", + "customEventData": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "b738cIBVn9LN7EMowNgModd", + "handler": "onRenderRankItem", + "customEventData": "" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "", + "handler": "", + "customEventData": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -6286,23 +6817,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 131 + "__id__": 138 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 267 + "__id__": 293 }, { - "__id__": 269 + "__id__": 295 }, { - "__id__": 271 + "__id__": 297 } ], "_prefab": { - "__id__": 273 + "__id__": 299 }, "_lpos": { "__type__": "cc.Vec3", @@ -6339,11 +6870,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 294 }, "_contentSize": { "__type__": "cc.Size", @@ -6367,11 +6898,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 270 + "__id__": 296 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6438,11 +6969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 272 + "__id__": 298 }, "languageKey": "rankpanel.comingsoon", "defaultText": "", @@ -6472,16 +7003,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 131 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 275 + "__id__": 301 }, "_contentSize": { "__type__": "cc.Size", "width": 690, - "height": 1176.036 + "height": 1233.7 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6494,6 +7025,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "0dI9S0sVlBM64/K4q5jSoa" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 138 + }, + "_enabled": true, + "__prefab": { + "__id__": 303 + }, + "_alignFlags": 5, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 1176.036, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2fS4jX2DFE867y6YMwZtBk" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -6513,11 +7080,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 278 + "__id__": 306 }, "_contentSize": { "__type__": "cc.Size", @@ -6541,11 +7108,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 280 + "__id__": 308 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6586,11 +7153,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 282 + "__id__": 310 }, "_type": 3, "_inverted": false, @@ -6602,6 +7169,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "caGC1na7tGB6103FxApdD8" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 137 + }, + "_enabled": true, + "__prefab": { + "__id__": 312 + }, + "_alignFlags": 5, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 226.29999999999995, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 1233.7, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "03IAXbkmtBDpgYaSExGubu" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -6615,6 +7218,81 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 315 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 1460 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6a6MWiM29DWrSV5u3/1fUg" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 317 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 140, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 5, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f6fCtmtI5FB4BECtVtXa2F" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "07VvjyqxdLNIu6ctFqsAmd", + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -6625,7 +7303,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 320 }, "_contentSize": { "__type__": "cc.Size", @@ -6653,7 +7331,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 322 }, "m_rootNode": null, "_id": "" @@ -6662,6 +7340,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "8ebGxUn7RCcocJoTbY7d1j" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 324 + }, + "_alignFlags": 5, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 1600, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6btzI8/NZKSpkIvAmORgJB" + }, { "__type__": "cc.PrefabInfo", "root": { diff --git a/assets/resources/ui/girl_detail/folder.meta b/assets/resources/ui/girl_detail/folder.meta deleted file mode 100644 index 93cb2964..00000000 --- a/assets/resources/ui/girl_detail/folder.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.2.0", - "importer": "directory", - "imported": true, - "uuid": "9700a228-f16c-47b9-8cbb-b4c14cd5c037", - "files": [], - "subMetas": {}, - "userData": {} -} diff --git a/assets/resources/ui/girl_detail/folder/w_录像 拷贝.png b/assets/resources/ui/girl_detail/folder/w_录像 拷贝.png deleted file mode 100644 index 8d7703ec..00000000 Binary files a/assets/resources/ui/girl_detail/folder/w_录像 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/w_录像 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/w_录像 拷贝.png.meta deleted file mode 100644 index c0d7e158..00000000 --- a/assets/resources/ui/girl_detail/folder/w_录像 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/w_录像.png b/assets/resources/ui/girl_detail/folder/w_录像.png deleted file mode 100644 index 1312bd69..00000000 Binary files a/assets/resources/ui/girl_detail/folder/w_录像.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/w_录像.png.meta b/assets/resources/ui/girl_detail/folder/w_录像.png.meta deleted file mode 100644 index 4f3506f6..00000000 --- a/assets/resources/ui/girl_detail/folder/w_录像.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/图片3 拷贝 2.png b/assets/resources/ui/girl_detail/folder/图片3 拷贝 2.png deleted file mode 100644 index 117d7c48..00000000 Binary files a/assets/resources/ui/girl_detail/folder/图片3 拷贝 2.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/图片3 拷贝 2.png.meta b/assets/resources/ui/girl_detail/folder/图片3 拷贝 2.png.meta deleted file mode 100644 index c8b180ef..00000000 --- a/assets/resources/ui/girl_detail/folder/图片3 拷贝 2.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/图片3 拷贝.png b/assets/resources/ui/girl_detail/folder/图片3 拷贝.png deleted file mode 100644 index 32c57178..00000000 Binary files a/assets/resources/ui/girl_detail/folder/图片3 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/图片3 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/图片3 拷贝.png.meta deleted file mode 100644 index f74666bd..00000000 --- a/assets/resources/ui/girl_detail/folder/图片3 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/播放 拷贝 2.png b/assets/resources/ui/girl_detail/folder/播放 拷贝 2.png deleted file mode 100644 index e7c1071c..00000000 Binary files a/assets/resources/ui/girl_detail/folder/播放 拷贝 2.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/播放 拷贝 2.png.meta b/assets/resources/ui/girl_detail/folder/播放 拷贝 2.png.meta deleted file mode 100644 index 714abaae..00000000 --- a/assets/resources/ui/girl_detail/folder/播放 拷贝 2.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/电话 拷贝.png b/assets/resources/ui/girl_detail/folder/电话 拷贝.png deleted file mode 100644 index c6ae4491..00000000 Binary files a/assets/resources/ui/girl_detail/folder/电话 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/电话 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/电话 拷贝.png.meta deleted file mode 100644 index 330d009e..00000000 --- a/assets/resources/ui/girl_detail/folder/电话 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 10 拷贝.png b/assets/resources/ui/girl_detail/folder/矩形 10 拷贝.png deleted file mode 100644 index e6281485..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 10 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 10 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/矩形 10 拷贝.png.meta deleted file mode 100644 index 7246ab47..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 10 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 11 拷贝.png b/assets/resources/ui/girl_detail/folder/矩形 11 拷贝.png deleted file mode 100644 index 521265f6..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 11 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 11 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/矩形 11 拷贝.png.meta deleted file mode 100644 index 015bd904..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 11 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝 4.png b/assets/resources/ui/girl_detail/folder/矩形 3 拷贝 4.png deleted file mode 100644 index 81ccc2e5..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝 4.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝 4.png.meta b/assets/resources/ui/girl_detail/folder/矩形 3 拷贝 4.png.meta deleted file mode 100644 index c4d21036..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝 4.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝.png b/assets/resources/ui/girl_detail/folder/矩形 3 拷贝.png deleted file mode 100644 index 8ba6b08d..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/矩形 3 拷贝.png.meta deleted file mode 100644 index 3a4f5c6c..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝5.png b/assets/resources/ui/girl_detail/folder/矩形 3 拷贝5.png deleted file mode 100644 index 5f4f9849..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝5.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝5.png.meta b/assets/resources/ui/girl_detail/folder/矩形 3 拷贝5.png.meta deleted file mode 100644 index f0f68215..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 3 拷贝5.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 6.png b/assets/resources/ui/girl_detail/folder/矩形 6.png deleted file mode 100644 index d7c041b7..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 6.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 6.png.meta b/assets/resources/ui/girl_detail/folder/矩形 6.png.meta deleted file mode 100644 index 498ef4cb..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 6.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 8 拷贝.png b/assets/resources/ui/girl_detail/folder/矩形 8 拷贝.png deleted file mode 100644 index 5e822ab3..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 8 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 8 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/矩形 8 拷贝.png.meta deleted file mode 100644 index 7bb307c8..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 8 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/矩形 8.png b/assets/resources/ui/girl_detail/folder/矩形 8.png deleted file mode 100644 index 49c7859c..00000000 Binary files a/assets/resources/ui/girl_detail/folder/矩形 8.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/矩形 8.png.meta b/assets/resources/ui/girl_detail/folder/矩形 8.png.meta deleted file mode 100644 index f9ccf73e..00000000 --- a/assets/resources/ui/girl_detail/folder/矩形 8.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/组 1 拷贝.png b/assets/resources/ui/girl_detail/folder/组 1 拷贝.png deleted file mode 100644 index 97dbc29b..00000000 Binary files a/assets/resources/ui/girl_detail/folder/组 1 拷贝.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/组 1 拷贝.png.meta b/assets/resources/ui/girl_detail/folder/组 1 拷贝.png.meta deleted file mode 100644 index 67bc8ec7..00000000 --- a/assets/resources/ui/girl_detail/folder/组 1 拷贝.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/组 1.png b/assets/resources/ui/girl_detail/folder/组 1.png deleted file mode 100644 index 5fe67abf..00000000 Binary files a/assets/resources/ui/girl_detail/folder/组 1.png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/组 1.png.meta b/assets/resources/ui/girl_detail/folder/组 1.png.meta deleted file mode 100644 index e8a7dedc..00000000 --- a/assets/resources/ui/girl_detail/folder/组 1.png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/返回 (1).png b/assets/resources/ui/girl_detail/folder/返回 (1).png deleted file mode 100644 index 56e5a4f7..00000000 Binary files a/assets/resources/ui/girl_detail/folder/返回 (1).png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/返回 (1).png.meta b/assets/resources/ui/girl_detail/folder/返回 (1).png.meta deleted file mode 100644 index e026d8df..00000000 --- a/assets/resources/ui/girl_detail/folder/返回 (1).png.meta +++ /dev/null @@ -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" - } -} diff --git a/assets/resources/ui/girl_detail/folder/问好 (1).png b/assets/resources/ui/girl_detail/folder/问好 (1).png deleted file mode 100644 index abde7003..00000000 Binary files a/assets/resources/ui/girl_detail/folder/问好 (1).png and /dev/null differ diff --git a/assets/resources/ui/girl_detail/folder/问好 (1).png.meta b/assets/resources/ui/girl_detail/folder/问好 (1).png.meta deleted file mode 100644 index 3eead3b4..00000000 --- a/assets/resources/ui/girl_detail/folder/问好 (1).png.meta +++ /dev/null @@ -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" - } -} diff --git a/settings/v2/packages/cocos-service.json b/settings/v2/packages/cocos-service.json index c65b54dd..f7dec085 100644 --- a/settings/v2/packages/cocos-service.json +++ b/settings/v2/packages/cocos-service.json @@ -1,7 +1,7 @@ { "__version__": "3.0.7", "game": { - "name": "未知游戏", + "name": "UNKNOW GAME", "app_id": "UNKNOW", "c_id": "0" }, diff --git a/settings/v2/packages/information.json b/settings/v2/packages/information.json index 535a5601..94848dec 100644 --- a/settings/v2/packages/information.json +++ b/settings/v2/packages/information.json @@ -4,19 +4,19 @@ "customSplash": { "id": "customSplash", "label": "customSplash", - "enable": true, + "enable": false, "customSplash": { - "complete": true, - "form": "https://creator-api.cocos.com/api/form/show?sid=05d2919f40e0134fd62411d578aed4d8" + "complete": false, + "form": "https://creator-api.cocos.com/api/form/show?" } }, "removeSplash": { "id": "removeSplash", "label": "removeSplash", - "enable": true, + "enable": false, "removeSplash": { - "complete": true, - "form": "https://creator-api.cocos.com/api/form/show?sid=05d2919f40e0134fd62411d578aed4d8" + "complete": false, + "form": "https://creator-api.cocos.com/api/form/show?" } } }