diff --git a/Ps/bg/bg.psd b/Ps/bg/bg.psd index 40022e18..c17d1121 100644 Binary files a/Ps/bg/bg.psd and b/Ps/bg/bg.psd differ diff --git a/assets/Scripts/Main/Common/LanguageUtils.ts b/assets/Scripts/Main/Common/LanguageUtils.ts index 37db2f6a..0bec76c8 100644 --- a/assets/Scripts/Main/Common/LanguageUtils.ts +++ b/assets/Scripts/Main/Common/LanguageUtils.ts @@ -145,18 +145,60 @@ export default class LanguageUtils { return text; } - public static getTextWithParams( + public static getTextByLanguage( key: string, - params: { [key: string]: any }, + language: LanguageType = LanguageType.EN, defaultText: string = "" ): string { - let text = this.getText(key, defaultText); - - for (let paramKey in params) { - const regex = new RegExp(`{${paramKey}}`, "g"); - text = text.replace(regex, params[paramKey].toString()); + if (!this.isInitialized) { + this.init(); } + if (!key) { + return defaultText; + } + + if (this.languageCache.has(key)) { + return this.languageCache.get(key); + } + + if (!ConfigManager.tables || !ConfigManager.tables.TbLanguage) { + console.warn("Language table not loaded yet"); + return defaultText || key; + } + + const languageData = ConfigManager.tables.TbLanguage.get(key); + if (!languageData) { + console.warn(`Language key not found: ${key}`); + return defaultText || key; + } + + let text: string = ""; + switch (language) { + case LanguageType.EN: + text = languageData.languageEn; + break; + case LanguageType.CN: + text = languageData.languageCn; + break; + case LanguageType.HI: + text = languageData.languageHi; + break; + case LanguageType.FR: + text = languageData.languageFr; + break; + case LanguageType.DE: + text = languageData.languageDe; + break; + default: + text = languageData.languageEn; + } + + if (!text || text.length === 0) { + text = languageData.languageEn || defaultText || key; + } + + this.languageCache.set(key, text); return text; } diff --git a/assets/Scripts/Main/Config/InnerMsgCode.ts b/assets/Scripts/Main/Config/InnerMsgCode.ts index 0e99e6bf..b29a469e 100644 --- a/assets/Scripts/Main/Config/InnerMsgCode.ts +++ b/assets/Scripts/Main/Config/InnerMsgCode.ts @@ -23,6 +23,7 @@ export enum InnerMsgCode { BgVideo_End, //背景视频播放完毕 Chat_DialogRefresh, + Chat_EmotionInitialized, SimplePlayVide, LanguageChange, } diff --git a/assets/Scripts/chat18x/core/ApiConfigLoader.ts b/assets/Scripts/chat18x/core/ApiConfigLoader.ts index 36f2ba79..024f3133 100644 --- a/assets/Scripts/chat18x/core/ApiConfigLoader.ts +++ b/assets/Scripts/chat18x/core/ApiConfigLoader.ts @@ -60,6 +60,20 @@ export class ApiConfig { return { ...this.config }; } + /** + * 获取情绪AI配置 + */ + public getEmotionAIConfig(): AIConfig { + const config = ConfigManager.tables.TbGlobalConfig; + return { + apiKey: config.emotionApiKey, + model: config.Model, + temperature: config.Temperature, + maxTokens: config.MaxTokens, + timeout: config.Timeout, + }; + } + /** * 更新生成参数 * @param temperature 温度参数 diff --git a/assets/Scripts/chat18x/core/ChatAIService.ts b/assets/Scripts/chat18x/core/ChatAIService.ts index e05ede2f..677065cd 100644 --- a/assets/Scripts/chat18x/core/ChatAIService.ts +++ b/assets/Scripts/chat18x/core/ChatAIService.ts @@ -5,6 +5,7 @@ import { RoleConfigLoader } from "./RoleConfigLoader"; import { ChatHistoryManager } from "../manager/ChatHistoryManager"; import { ApiConfig } from "./ApiConfigLoader"; import { ErrorHandler, ErrorType } from "../utils/ErrorHandler"; +import { EmotionAIService } from "./EmotionAIService"; /** * AI聊天服务类 @@ -123,6 +124,8 @@ export class ChatAIService { this.currentRoleId = roleId; // 预创建聊天实例 this.createOrGetChat(roleId); + // 预创建情绪聊天实例 + EmotionAIService.Instance.ensureEmotionChatExists(roleId); } /** @@ -186,6 +189,14 @@ export class ChatAIService { role: "model", parts: [{ text: response.text }], }); + + // 更新情绪状态 + try { + await EmotionAIService.Instance.updateEmotionFromChat(roleId, message, response.text); + } catch (emotionError) { + console.warn(`Failed to update emotion for role ${roleId}:`, emotionError); + // 情绪更新失败不影响聊天功能 + } } catch (storageError) { ErrorHandler.Instance.handleError( storageError as Error, @@ -224,6 +235,8 @@ export class ChatAIService { if (this.chatInstances.has(roleId)) { this.chatInstances.delete(roleId); } + // 清除情绪聊天历史 + EmotionAIService.Instance.clearEmotionHistory(roleId); // 清除本地存储的历史 ChatHistoryManager.Instance.clearHistory(roleId); console.log(`Cleared chat history for role ${roleId}`); @@ -234,6 +247,8 @@ export class ChatAIService { */ public clearAllChatHistory(): void { this.chatInstances.clear(); + // 清除所有情绪聊天历史 + EmotionAIService.Instance.clearAllEmotionHistory(); // 清除本地存储的所有历史 ChatHistoryManager.Instance.clearAllHistory(); console.log("Cleared all chat histories"); diff --git a/assets/Scripts/chat18x/core/ChatController.ts b/assets/Scripts/chat18x/core/ChatController.ts new file mode 100644 index 00000000..73c7a75f --- /dev/null +++ b/assets/Scripts/chat18x/core/ChatController.ts @@ -0,0 +1,250 @@ +import { ChatAIService } from "./ChatAIService"; +import { EmotionAIService } from "./EmotionAIService"; +import { DialogManager } from "../manager/DialogManager"; +import { VideoEmotion } from "../../schema/schema"; +import ConfigManager from "../manager/ConfigManager"; +import { ErrorHandler, ErrorType } from "../utils/ErrorHandler"; + +/** + * 聊天控制器接口 - 定义Panel和Controller之间的通信协议 + */ +export interface IChatPanelCallback { + /** + * 消息发送开始回调 + * @param message 用户发送的消息 + */ + onMessageSent(message: string): void; + + /** + * 接收到AI回复回调 + * @param response AI的回复内容 + */ + onMessageReceived(response: string): void; + + /** + * 情绪状态更新回调 + * @param emotion 更新后的情绪状态 + */ + onEmotionUpdated(emotion: VideoEmotion): void; + + /** + * 对话更新回调 + */ + onDialogUpdated(): void; + + /** + * 错误处理回调 + * @param error 错误信息 + */ + onError(error: Error): void; +} + +/** + * 聊天控制器类 + * + * 负责处理聊天相关的所有业务逻辑,包括: + * - 角色数据管理 + * - 消息发送和接收 + * - 情绪状态管理 + * - 与AI服务的交互 + * - 对话历史管理 + * + * @example + * ```typescript + * const controller = new ChatController(); + * controller.initialize(10001, panelCallback); + * const response = await controller.sendMessage("Hello"); + * ``` + */ +export class ChatController { + private roleId: number | null = null; + private callback: IChatPanelCallback | null = null; + private dialogManager: DialogManager | null = null; + + /** + * 初始化聊天控制器 + * @param roleId 角色ID + * @param callback 回调接口实现 + */ + public initialize(roleId: number, callback: IChatPanelCallback): void { + this.roleId = roleId; + this.callback = callback; + this.dialogManager = DialogManager.getInstance(); + + // 设置当前聊天的角色ID + if (roleId && roleId > 0) { + ChatAIService.Instance.setCurrentRole(roleId); + console.log(`ChatController initialized with role ${roleId}`); + } else { + const error = new Error(`Invalid roleId: ${roleId}`); + this.handleError(error); + } + } + + /** + * 发送消息给AI并处理回复 + * @param message 用户消息内容 + * @returns Promise AI的回复,失败时返回null + */ + public async sendMessage(message: string): Promise { + if (!this.validateSendMessage(message)) { + return null; + } + + try { + // 通知界面消息发送开始 + this.callback?.onMessageSent(message); + + // 更新对话显示 - 用户消息 + this.dialogManager?.updateDialog(true, message, true); + this.callback?.onDialogUpdated(); + + console.log(`Sending message to role ${this.roleId}: ${message}`); + + // 发送消息给AI服务 + const response = await ChatAIService.Instance.sendMessage(this.roleId!, message); + + if (response) { + // 更新对话显示 - AI回复 + this.dialogManager?.updateDialog(false, response); + this.callback?.onDialogUpdated(); + + // 通知界面收到回复 + this.callback?.onMessageReceived(response); + + // 获取更新后的情绪状态 + try { + const currentEmotion = EmotionAIService.Instance.getCurrentEmotion(this.roleId!); + console.log(`Current emotion for role ${this.roleId}: ${VideoEmotion[currentEmotion]}`); + + // 通知界面情绪更新 + this.callback?.onEmotionUpdated(currentEmotion); + } catch (emotionError) { + console.warn("Failed to get current emotion:", emotionError); + // 情绪获取失败不影响聊天功能 + } + + console.log(`Response received from role ${this.roleId}: ${response}`); + return response; + } else { + const error = new Error("AI返回了空响应"); + this.handleError(error); + return null; + } + } catch (error) { + ErrorHandler.Instance.handleApiError(error, "ChatController.sendMessage", { + roleId: this.roleId, + message: message.substring(0, 100) + "..." + }); + this.handleError(error as Error); + return null; + } + } + + /** + * 获取当前角色的情绪状态 + * @returns VideoEmotion 当前情绪状态 + */ + public getCurrentEmotion(): VideoEmotion { + if (!this.roleId) { + return VideoEmotion.calm_down; + } + return EmotionAIService.Instance.getCurrentEmotion(this.roleId); + } + + /** + * 获取当前角色数据 + * @returns 角色数据对象,失败时返回null + */ + public getRoleData(): any { + if (!this.roleId) { + return null; + } + + try { + const roleData = ConfigManager.tables.TbGirls.get(this.roleId); + const roleDetail = ConfigManager.tables.TbGirlsDetail.get(this.roleId); + + return { + basic: roleData, + detail: roleDetail + }; + } catch (error) { + console.error(`Failed to get role data for ${this.roleId}:`, error); + this.handleError(error as Error); + return null; + } + } + + /** + * 清除当前角色的聊天历史 + */ + public clearChatHistory(): void { + if (!this.roleId) { + console.warn("Cannot clear history: roleId is null"); + return; + } + + try { + ChatAIService.Instance.clearChatHistory(this.roleId); + console.log(`Chat history cleared for role ${this.roleId}`); + } catch (error) { + console.error("Failed to clear chat history:", error); + this.handleError(error as Error); + } + } + + /** + * 获取当前角色ID + * @returns 当前角色ID + */ + public getCurrentRoleId(): number | null { + return this.roleId; + } + + /** + * 销毁控制器,清理资源 + */ + public destroy(): void { + this.roleId = null; + this.callback = null; + this.dialogManager = null; + console.log("ChatController destroyed"); + } + + /** + * 验证发送消息的参数 + * @param message 消息内容 + * @returns 验证是否通过 + */ + private validateSendMessage(message: string): boolean { + if (!this.roleId || this.roleId <= 0) { + const error = new Error("角色ID无效"); + this.handleError(error); + return false; + } + + if (!message || message.trim() === "") { + const error = new Error("消息内容不能为空"); + this.handleError(error); + return false; + } + + if (!this.callback) { + const error = new Error("回调接口未设置"); + this.handleError(error); + return false; + } + + return true; + } + + /** + * 统一错误处理 + * @param error 错误对象 + */ + private handleError(error: Error): void { + console.error("ChatController error:", error); + this.callback?.onError(error); + } +} \ No newline at end of file diff --git a/assets/Scripts/chat18x/core/ChatController.ts.meta b/assets/Scripts/chat18x/core/ChatController.ts.meta new file mode 100644 index 00000000..6a671f7e --- /dev/null +++ b/assets/Scripts/chat18x/core/ChatController.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "458edd93-5ff2-4c11-a573-f8985c48cc15", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Scripts/chat18x/core/EmotionAIService.ts b/assets/Scripts/chat18x/core/EmotionAIService.ts new file mode 100644 index 00000000..9f3470b1 --- /dev/null +++ b/assets/Scripts/chat18x/core/EmotionAIService.ts @@ -0,0 +1,418 @@ +// 首先加载 polyfills 以确保兼容性 +import "../utils/polyfills"; +import { GoogleGenAI } from "@google/genai"; +import { RoleConfigLoader } from "./RoleConfigLoader"; +import { ChatHistoryManager } from "../manager/ChatHistoryManager"; +import { ApiConfig } from "./ApiConfigLoader"; +import { ErrorHandler, ErrorType } from "../utils/ErrorHandler"; +import { VideoEmotion } from "../../schema/schema"; +import ConfigManager from "../manager/ConfigManager"; +import LanguageUtils, { LanguageType } from "../../Main/Common/LanguageUtils"; +import Utils from "../../Main/Common/Utils"; +import { InnerMsgCode } from "../../Main/Config/InnerMsgCode"; + +/** + * AI情绪分析服务类 + * + * 基于Google Gemini API实现的情绪分析系统,支持: + * - 基于聊天历史的情绪状态分析 + * - 多角色独立的情绪聊天实例管理 + * - 返回标准的VideoEmotion枚举值 + * - 自动初始化历史情绪分析 + * + * @example + * ```typescript + * const emotionService = EmotionAIService.Instance; + * const emotion = await emotionService.analyzeEmotionalState(10001); + * console.log(VideoEmotion[emotion]); // "calm_down" + * ``` + * + * @author AI Chat System + * @version 1.0.0 + */ +export class EmotionAIService { + private static _instance: EmotionAIService; + private emotionAI: GoogleGenAI; + private emotionChatInstances: Map = new Map(); + private currentEmotions: Map = new Map(); + + private constructor() { + const emotionConfig = ApiConfig.Instance.getEmotionAIConfig(); + + try { + this.emotionAI = new GoogleGenAI({ apiKey: emotionConfig.apiKey }); + } catch (error) { + ErrorHandler.Instance.handleError( + error as Error, + ErrorType.API_ERROR, + { config: { ...emotionConfig, apiKey: "***" } }, // 隐藏API密钥 + true + ); + throw error; + } + } + + /** + * 获取EmotionAIService的单例实例 + * + * @returns {EmotionAIService} 情绪分析服务实例 + * @static + */ + public static get Instance(): EmotionAIService { + if (!this._instance) { + this._instance = new EmotionAIService(); + } + return this._instance; + } + + /** + * 创建或获取指定角色的情绪聊天实例 + * @param roleId 角色ID + */ + private createOrGetEmotionChat(roleId: number): any { + if (!this.emotionChatInstances.has(roleId)) { + const systemInstruction = RoleConfigLoader.getEmotionInstruction(roleId); + const config = ApiConfig.Instance.getEmotionAIConfig(); + + const chat = this.emotionAI.chats.create({ + model: config.model, + config: { + temperature: config.temperature, + systemInstruction: systemInstruction, + }, + }); + + this.emotionChatInstances.set(roleId, chat); + console.log(`Created new emotion chat instance for role ${roleId}`); + + // 异步分析历史情绪状态 + this.initializeEmotionAnalysis(roleId); + } + return this.emotionChatInstances.get(roleId); + } + + /** + * 初始化情绪分析(检查是否有历史记录并进行分析) + * @param roleId 角色ID + */ + private async initializeEmotionAnalysis(roleId: number): Promise { + try { + // 检查是否有聊天历史 + const messageCount = ChatHistoryManager.Instance.getMessageCount(roleId); + + let emotionalState: VideoEmotion; + + if (messageCount > 0) { + console.log( + `Analyzing emotional state for role ${roleId} based on ${messageCount} messages` + ); + + // 分析历史情绪状态 + emotionalState = await this.analyzeEmotionalState(roleId); + + console.log( + `Initial emotional state for role ${roleId}: ${VideoEmotion[emotionalState]}` + ); + } else { + console.log( + `No history found for role ${roleId}, using default emotion: calm_down` + ); + emotionalState = VideoEmotion.calm_down; + } + + // 发送情绪初始化完成事件 + Utils.sendInnerMsg(InnerMsgCode.Chat_EmotionInitialized, { + roleId: roleId, + emotion: emotionalState + }); + + console.log(`Emotion initialization completed for role ${roleId}: ${VideoEmotion[emotionalState]}`); + } catch (error) { + console.error( + `Failed to initialize emotion analysis for role ${roleId}:`, + error + ); + + // 即使发生错误,也发送默认情绪状态 + Utils.sendInnerMsg(InnerMsgCode.Chat_EmotionInitialized, { + roleId: roleId, + emotion: VideoEmotion.calm_down + }); + } + } + + /** + * 格式化聊天历史用于情绪分析 + * @param messages 聊天消息数组 + * @returns 格式化后的分析提示 + */ + private formatHistoryForEmotionAnalysis(messages: any[]): string { + if (messages.length === 0) { + return "没有聊天历史,请返回默认情绪状态:calm_down"; + } + + let conversationText = + "请分析以下对话的情绪状态,返回对应的VideoEmotion枚举值:\n\n"; + + messages.forEach((message, index) => { + const speaker = message.role === "user" ? "用户" : "AI"; + const text = message.parts[0]?.text || ""; + conversationText += `${speaker}: ${text}\n`; + }); + + conversationText += + "\n请返回以下枚举值之一:calm_down, arousal, desire, passion, orgasm"; + + return conversationText; + } + + /** + * 向指定角色的情绪AI发送消息并获取分析回复,返回VideoEmotion枚举值 + * @param roleId 角色ID + * @param message 用户发送的消息内容 + * @returns Promise 情绪AI的分析结果,如果发生错误返回默认值calm_down + */ + public async sendEmotionMessage( + roleId: number, + message: string + ): Promise { + // 输入验证 + if (!roleId || roleId <= 0) { + ErrorHandler.Instance.handleValidationError( + "roleId", + "角色ID必须是正整数", + roleId + ); + return VideoEmotion.calm_down; + } + + if (!message || message.trim() === "") { + ErrorHandler.Instance.handleValidationError( + "message", + "消息内容不能为空", + message + ); + return VideoEmotion.calm_down; + } + + try { + const emotionChat = this.createOrGetEmotionChat(roleId); + const response = await emotionChat.sendMessage({ + message: message.trim(), + }); + + if (response && response.text) { + console.log(`Emotion analysis from role ${roleId}:`, response.text); + return this.parseEmotionResponse(response.text); + } else { + const warningMsg = `情绪AI返回了空响应 (角色ID: ${roleId})`; + ErrorHandler.Instance.handleError( + new Error(warningMsg), + ErrorType.API_ERROR, + { roleId, message, response }, + true + ); + return VideoEmotion.calm_down; + } + } catch (error) { + ErrorHandler.Instance.handleApiError(error, "sendEmotionMessage", { + roleId, + message: message.substring(0, 100) + "...", + }); + return VideoEmotion.calm_down; + } + } + + /** + * 分析指定角色的情绪状态(基于最近10条聊天记录) + * @param roleId 角色ID + * @returns Promise 情绪分析结果 + */ + public async analyzeEmotionalState(roleId: number): Promise { + try { + // 获取最近10条消息 + const recentMessages = ChatHistoryManager.Instance.getRecentMessages( + roleId, + 10 + ); + + // 格式化历史记录用于分析 + const analysisPrompt = + this.formatHistoryForEmotionAnalysis(recentMessages); + + // 发送给情绪AI进行分析 + return await this.sendEmotionMessage(roleId, analysisPrompt); + } catch (error) { + ErrorHandler.Instance.handleError( + error as Error, + ErrorType.API_ERROR, + { roleId }, + false + ); + return VideoEmotion.calm_down; + } + } + + /** + * 解析情绪AI返回的文本为VideoEmotion枚举值 + * @param responseText AI返回的文本 + * @returns VideoEmotion枚举值 + */ + private parseEmotionResponse(responseText: string): VideoEmotion { + const text = responseText.toLowerCase().trim(); + + if (text.includes("arousal")) { + return VideoEmotion.arousal; + } else if (text.includes("desire")) { + return VideoEmotion.desire; + } else if (text.includes("passion")) { + return VideoEmotion.passion; + } else if (text.includes("orgasm")) { + return VideoEmotion.orgasm; + } else { + return VideoEmotion.calm_down; // 默认值 + } + } + + /** + * 确保指定角色的情绪聊天实例已创建 + * @param roleId 角色ID + */ + public ensureEmotionChatExists(roleId: number): void { + this.createOrGetEmotionChat(roleId); + } + + /** + * 清除指定角色的情绪聊天历史 + * @param roleId 角色ID + */ + public clearEmotionHistory(roleId: number): void { + if (this.emotionChatInstances.has(roleId)) { + this.emotionChatInstances.delete(roleId); + } + console.log(`Cleared emotion chat history for role ${roleId}`); + } + + /** + * 清除所有情绪聊天历史 + */ + public clearAllEmotionHistory(): void { + this.emotionChatInstances.clear(); + console.log("Cleared all emotion chat histories"); + } + + /** + * 获取当前活跃的情绪聊天实例数量 + */ + public getActiveEmotionChatCount(): number { + return this.emotionChatInstances.size; + } + + /** + * 获取指定角色的当前情绪状态 + * @param roleId 角色ID + * @returns VideoEmotion 当前情绪状态 + */ + public getCurrentEmotion(roleId: number): VideoEmotion { + return this.currentEmotions.get(roleId) || VideoEmotion.calm_down; + } + + /** + * 设置指定角色的情绪状态 + * @param roleId 角色ID + * @param emotion 情绪状态 + */ + private setCurrentEmotion(roleId: number, emotion: VideoEmotion): void { + this.currentEmotions.set(roleId, emotion); + console.log(`Updated emotion for role ${roleId}: ${VideoEmotion[emotion]}`); + } + + /** + * 获取角色的英文名 + * @param roleId 角色ID + * @returns 角色英文名,如果未找到返回"AI" + */ + private getRoleEnglishName(roleId: number): string { + try { + if (ConfigManager.tables && ConfigManager.tables.TbGirls) { + const girlData = ConfigManager.tables.TbGirls.get(roleId); + if (girlData && girlData.nameKey) { + return ( + LanguageUtils.getTextByLanguage( + girlData.nameKey, + LanguageType.EN + ) || "AI" + ); + } + } + } catch (error) { + console.warn(`Failed to get role name for ${roleId}:`, error); + } + return "AI"; + } + + /** + * 根据聊天对话更新情绪状态 + * @param roleId 角色ID + * @param userMessage 用户消息 + * @param aiResponse AI回复 + * @returns Promise 更新后的情绪状态 + */ + public async updateEmotionFromChat( + roleId: number, + userMessage: string, + aiResponse: string + ): Promise { + try { + // 构建情绪分析提示,包含当前情绪上下文 + const currentEmotion = this.getCurrentEmotion(roleId); + const analysisPrompt = this.formatChatForEmotionAnalysis( + roleId, + userMessage, + aiResponse, + currentEmotion + ); + + // 发送给情绪AI进行分析 + const newEmotion = await this.sendEmotionMessage(roleId, analysisPrompt); + + // 更新并保存情绪状态 + this.setCurrentEmotion(roleId, newEmotion); + + return newEmotion; + } catch (error) { + ErrorHandler.Instance.handleError( + error as Error, + ErrorType.API_ERROR, + { roleId, userMessage: userMessage.substring(0, 50) }, + false + ); + return this.getCurrentEmotion(roleId); // 返回当前情绪状态 + } + } + + /** + * 格式化聊天对话用于情绪分析 + * @param roleId 角色ID + * @param userMessage 用户消息 + * @param aiResponse AI回复 + * @param currentEmotion 当前情绪状态 + * @returns 格式化后的分析提示 + */ + private formatChatForEmotionAnalysis( + roleId: number, + userMessage: string, + aiResponse: string, + currentEmotion: VideoEmotion + ): string { + const roleName = this.getRoleEnglishName(roleId); + + let analysisText = `当前情绪状态: ${VideoEmotion[currentEmotion]}\n\n`; + analysisText += `请分析以下最新对话的情绪变化,返回对应的VideoEmotion枚举值:\n\n`; + analysisText += `用户: ${userMessage}\n`; + analysisText += `${roleName}: ${aiResponse}\n\n`; + analysisText += `请基于对话内容和当前情绪状态,返回以下枚举值之一:calm_down, arousal, desire, passion, orgasm`; + + return analysisText; + } +} diff --git a/assets/Scripts/chat18x/core/EmotionAIService.ts.meta b/assets/Scripts/chat18x/core/EmotionAIService.ts.meta new file mode 100644 index 00000000..60b204f4 --- /dev/null +++ b/assets/Scripts/chat18x/core/EmotionAIService.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "624f6a81-539f-4347-aef1-d7c98c226a68", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Scripts/chat18x/core/RoleConfigLoader.ts b/assets/Scripts/chat18x/core/RoleConfigLoader.ts index 83882ec1..e40aeb91 100644 --- a/assets/Scripts/chat18x/core/RoleConfigLoader.ts +++ b/assets/Scripts/chat18x/core/RoleConfigLoader.ts @@ -13,10 +13,26 @@ export class RoleConfigLoader { */ public static getRoleInstruction(roleId: number): string { const AiCharacter = ConfigManager.tables.TbAiCharacters.get(roleId); + const globalPrompt = ConfigManager.tables.TbGlobalConfig.girlBasePrompt; + const prompt = + globalPrompt + + "\n" + + AiCharacter.basePrompt + + "\n" + + AiCharacter.additionPrompt; + return prompt; + } - return AiCharacter - ? AiCharacter.systemInstruction - : ConfigManager.tables.TbAiCharacters.get(10001).systemInstruction; + /** + * 根据角色ID获取对应的情绪机器人prompt + * @param roleId 角色ID + * @returns System Instruction字符串,如果未找到则返回默认Role_1 + */ + public static getEmotionInstruction(roleId: number): string { + const AiCharacter = ConfigManager.tables.TbAiCharacters.get(roleId); + const globalPrompt = ConfigManager.tables.TbGlobalConfig.EmotionRating; + const prompt = globalPrompt + "\n" + AiCharacter.basePrompt; + return prompt; } /** diff --git a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts index edb35371..01365523 100644 --- a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts @@ -6,11 +6,12 @@ import { Label, Sprite, UITransform, + VideoPlayer, } from "cc"; // 首先加载 polyfills 以确保兼容性 import "../../utils/polyfills"; import { DialogManager } from "../../manager/DialogManager"; -import { ChatAIService } from "../../core/ChatAIService"; +import { ChatController, IChatPanelCallback } from "../../core/ChatController"; import li_BaseView from "db://assets/Scripts/Main/Common/li_BaseView"; import Utils from "db://assets/Scripts/Main/Common/Utils"; import { InnerMsgCode } from "db://assets/Scripts/Main/Config/InnerMsgCode"; @@ -20,15 +21,15 @@ import GameRootUI from "db://assets/Scripts/Main/Common/GameRootUI"; import { ImagePopup } from "../components/ImagePopup"; import ResManager from "db://assets/Scripts/Main/Manager/ResManager"; -import { VideoRoleType } from "db://assets/Scripts/Main/Common/GlobalValue"; -import ConfigManager from "../../manager/ConfigManager"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; import { UITransitionHelper } from "../../utils/UITransitionHelper"; +import { VideoEmotion, purchase } from "../../../schema/schema"; const { ccclass, property } = _decorator; @ccclass("ChatPanel") -export class ChatPanel extends li_BaseView { +export class ChatPanel extends li_BaseView implements IChatPanelCallback { manager: DialogManager = null; + private chatController: ChatController = new ChatController(); @property(EditBox) editBox: EditBox = null; @@ -39,6 +40,9 @@ export class ChatPanel extends li_BaseView { @property(Sprite) girlImg: Sprite = null; + @property(VideoPlayer) + girlVideo: VideoPlayer = null; + @property(ChatContentsLayout) layout: ChatContentsLayout = null; @@ -49,6 +53,8 @@ export class ChatPanel extends li_BaseView { private _nodeTab: any = {}; nameKey: string; + private commercialVideos: purchase.CommercialVideo[] = []; + private currentEmotion: VideoEmotion | null = null; private onLanguageChangeCallback = () => { if (!this.girlName) return; @@ -57,9 +63,9 @@ export class ChatPanel extends li_BaseView { openUIDataCT(data) { // 处理新的数据格式,支持过渡动画参数 - if (typeof data === 'object' && data.roleId !== undefined) { + if (typeof data === "object" && data.roleId !== undefined) { this.id = data.roleId; - + // 如果标记了需要滑入动画,则执行动画 if (data.withSlideTransition && this.node && this.node.isValid) { // 延迟一帧执行动画,确保节点已正确加载到场景中 @@ -71,10 +77,10 @@ export class ChatPanel extends li_BaseView { // 兼容原来的数字格式 this.id = data; } - - // 设置当前聊天的角色ID + + // 初始化ChatController if (this.id && this.id > 0) { - ChatAIService.Instance.setCurrentRole(this.id); + this.chatController.initialize(this.id, this); } } @@ -83,6 +89,17 @@ export class ChatPanel extends li_BaseView { this.register(); this.refresh(this.id); + + // Add video loaded event callback + if (this.girlVideo) { + this.girlVideo.node.on( + VideoPlayer.EventType.READY_TO_PLAY, + () => { + this.adjustVideoScale(); + }, + this + ); + } } register() { Utils.addInnerEL( @@ -96,6 +113,12 @@ export class ChatPanel extends li_BaseView { this, this.onLanguageChangeCallback ); + + Utils.addInnerEL( + InnerMsgCode.Chat_EmotionInitialized, + this, + this.onEmotionInitialized + ); } onDestroy(): void { Utils.removeInnerEL( @@ -108,12 +131,37 @@ export class ChatPanel extends li_BaseView { this, this.onLanguageChangeCallback ); + + Utils.removeInnerEL( + InnerMsgCode.Chat_EmotionInitialized, + this, + this.onEmotionInitialized + ); + + // Cleanup video event listeners + if (this.girlVideo && this.girlVideo.node) { + this.girlVideo.node.off( + VideoPlayer.EventType.READY_TO_PLAY, + this.adjustVideoScale, + this + ); + } + + // 销毁ChatController + if (this.chatController) { + this.chatController.destroy(); + } } refresh(id: number) { this.id = id; - const data = ConfigManager.tables.TbGirls.get(this.id); - const dataDetail = ConfigManager.tables.TbGirlsDetail.get(this.id); - if (!data) return; + + // 通过ChatController获取角色数据 + const roleData = this.chatController.getRoleData(); + if (!roleData || !roleData.basic) return; + + const data = roleData.basic; + const dataDetail = roleData.detail; + this.nameKey = data.nameKey; this.girlName.string = LanguageUtils.getText(data.nameKey); ResManager.I.changeBundleSpriteFrame( @@ -129,15 +177,172 @@ export class ChatPanel extends li_BaseView { ); } ); - let uiTransform: UITransform = - this._nodeTab.BgFrame.getComponent(UITransform); - Utils.sendInnerMsg(InnerMsgCode.SimplePlayVide, { - path: dataDetail.pics[0], - size: uiTransform.contentSize, - bgFrameNode: this._nodeTab.BgFrame, - }); + // Store commercialVideos for emotion-based switching + if (dataDetail && dataDetail.commercialVideos) { + this.commercialVideos = dataDetail.commercialVideos; + console.log(`Loaded ${this.commercialVideos.length} videos for role ${this.id}`); + + // Load initial video based on current emotion + if (this.commercialVideos.length > 0 && this.girlVideo) { + // Get current emotion from ChatController + let currentEmotion = VideoEmotion.calm_down; // Default fallback + + try { + if (this.chatController) { + currentEmotion = this.chatController.getCurrentEmotion(); + console.log(`Current emotion for role ${this.id}: ${VideoEmotion[currentEmotion]}`); + } + } catch (error) { + console.warn("Failed to get current emotion during initialization, using calm_down as default:", error); + } + + // Find video matching current emotion or fallback + const initialVideo = this.commercialVideos.find(video => video.emotion === currentEmotion) + || this.commercialVideos.find(video => video.emotion === VideoEmotion.calm_down) + || this.commercialVideos[0]; // Final fallback to first video + + console.log(`Loading initial video: ${initialVideo.path} (emotion: ${VideoEmotion[initialVideo.emotion]})`); + + // Set current emotion to the loaded video's emotion + this.currentEmotion = initialVideo.emotion; + + ResManager.I.changeBundleVideo( + this.girlVideo, + initialVideo.path, + "Chat18x" + ); + // Also immediately try to adjust scale (in case already loaded) + this.adjustVideoScale(); + } + } else { + this.commercialVideos = []; + this.currentEmotion = null; // Reset current emotion when no videos available + console.log("No commercialVideos data available for role", this.id); + } + + // if (dataDetail && dataDetail.commercialVideos && dataDetail.commercialVideos.length > 0) { + // let uiTransform: UITransform = + // this._nodeTab.BgFrame.getComponent(UITransform); + + // Utils.sendInnerMsg(InnerMsgCode.SimplePlayVide, { + // path: dataDetail.commercialVideos[0].path, + // size: uiTransform.contentSize, + // bgFrameNode: this._nodeTab.BgFrame, + // }); + // } } + + adjustVideoScale() { + if (!this.girlVideo || !this.girlVideo.node.parent) { + return; + } + + const tryAdjustScale = () => { + const parentTransform = + this.girlVideo.node.parent.getComponent(UITransform); + const videoTransform = this.girlVideo.node.getComponent(UITransform); + + if (parentTransform && videoTransform && videoTransform.height > 0) { + const scale = parentTransform.height / videoTransform.height; + this.girlVideo.node.setScale(scale, scale, 1); + console.log( + `ChatPanel Video scaled to: ${scale}, parent height: ${parentTransform.height}, video height: ${videoTransform.height}` + ); + return true; + } + return false; + }; + + // Immediately try once + if (!tryAdjustScale()) { + // If failed, delay and try again + this.scheduleOnce(() => { + if (!tryAdjustScale()) { + // Try again with longer delay + this.scheduleOnce(() => { + tryAdjustScale(); + }, 0.5); + } + }, 0.1); + } + } + + setVideoEnable(enable: boolean) { + if (!this.girlVideo) return; + + this.girlVideo.enabled = enable; + if (enable) { + this.girlVideo.play(); + } + } + + private switchVideoByEmotion(emotion: VideoEmotion): void { + if (!this.girlVideo || !this.commercialVideos || this.commercialVideos.length === 0) { + console.warn("Cannot switch video: missing video player or commercialVideos data"); + return; + } + + // Check if emotion has changed + if (this.currentEmotion === emotion) { + console.log(`Emotion ${VideoEmotion[emotion]} unchanged, skipping video switch`); + return; + } + + // Find video matching the emotion + const matchingVideo = this.commercialVideos.find(video => video.emotion === emotion); + + if (matchingVideo) { + console.log(`Switching to video for emotion ${VideoEmotion[emotion]}: ${matchingVideo.path} (from ${this.currentEmotion !== null ? VideoEmotion[this.currentEmotion] : 'null'})`); + + // Load the new video + ResManager.I.changeBundleVideo( + this.girlVideo, + matchingVideo.path, + "Chat18x" + ); + + // Update current emotion state + this.currentEmotion = emotion; + + // Adjust scale and enable playback + this.adjustVideoScale(); + this.setVideoEnable(true); + } else { + console.warn(`No video found for emotion ${VideoEmotion[emotion]}, falling back to first available video`); + + // Fallback to first video if no match found + if (this.commercialVideos.length > 0) { + const fallbackVideo = this.commercialVideos[0]; + console.log(`Loading fallback video: ${fallbackVideo.path} (emotion: ${VideoEmotion[fallbackVideo.emotion]})`); + + ResManager.I.changeBundleVideo( + this.girlVideo, + fallbackVideo.path, + "Chat18x" + ); + + // Update current emotion state to the fallback video's emotion + this.currentEmotion = fallbackVideo.emotion; + + this.adjustVideoScale(); + this.setVideoEnable(true); + } + } + } + + private onEmotionInitialized(data: {roleId: number, emotion: VideoEmotion}): void { + // 检查是否是当前角色 + if (data.roleId === this.id) { + console.log(`Emotion initialized for current role ${this.id}: ${VideoEmotion[data.emotion]}`); + + // 切换到对应的视频 + this.switchVideoByEmotion(data.emotion); + } else { + console.log(`Emotion initialized for role ${data.roleId} (not current role ${this.id}), ignoring`); + } + } + onDialogUpdate() { if (this.layout) { this.layout.UpdateDialog(DialogManager.getInstance().getDialogs()); @@ -152,24 +357,90 @@ export class ChatPanel extends li_BaseView { public async OnClickSend() { const str = this.editBox.string; if (!str || str == "") return; - console.log("post:" + str); + // 清空输入框 this.editBox.string = ""; - DialogManager.getInstance().updateDialog(true, str, true); - - // 使用新的sendMessage方法,传入角色ID - const ret = await ChatAIService.Instance.sendMessage(this.id, str); - - if (this.manager) { - this.manager.updateDialog(false, ret); - } - console.log("ret:" + ret); + // 通过ChatController发送消息 + await this.chatController.sendMessage(str); //测试 //this.popUpImage.refresh("Image/1/blur_naked_1"); } + // === IChatPanelCallback 接口实现 === + + /** + * 消息发送开始回调 + * @param message 用户发送的消息 + */ + public onMessageSent(message: string): void { + console.log("Message sent:", message); + // 可以在这里添加发送中的UI状态显示,比如显示loading等 + } + + /** + * 接收到AI回复回调 + * @param response AI的回复内容 + */ + public onMessageReceived(response: string): void { + console.log("Message received:", response); + // 可以在这里添加接收到回复的UI效果,比如播放声音等 + } + + /** + * 对话更新回调 + */ + public onDialogUpdated(): void { + // 更新对话显示 + this.onDialogUpdate(); + } + + /** + * 错误处理回调 + * @param error 错误信息 + */ + public onError(error: Error): void { + console.error("ChatPanel error:", error); + // 可以在这里显示错误提示给用户 + } + + /** + * 情绪状态更新回调 (实现IChatPanelCallback接口) + * @param emotion 当前情绪状态 + */ + public onEmotionUpdated(emotion: VideoEmotion): void { + console.log(`ChatPanel: Emotion updated to ${VideoEmotion[emotion]} (${emotion})`); + + // Switch video based on the new emotion + this.switchVideoByEmotion(emotion); + + // Additional UI updates can be added here based on emotion + // 例如:改变角色表情、背景色、播放相应的动画等 + switch (emotion) { + case VideoEmotion.calm_down: + // 平静状态的UI更新 + console.log("UI state: Calm"); + break; + case VideoEmotion.arousal: + // 兴奋状态的UI更新 + console.log("UI state: Arousal"); + break; + case VideoEmotion.desire: + // 渴望状态的UI更新 + console.log("UI state: Desire"); + break; + case VideoEmotion.passion: + // 激情状态的UI更新 + console.log("UI state: Passion"); + break; + case VideoEmotion.orgasm: + // 高潮状态的UI更新 + console.log("UI state: Orgasm"); + break; + } + } + returnBtn() { this.onClose(); GameRootUI.I.showDefaultView(); diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index 3f8c6e8e..f0a8e54d 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -16,7 +16,7 @@ import LanguageUtils from "../../../Main/Common/LanguageUtils"; import Utils from "../../../Main/Common/Utils"; import { InnerMsgCode } from "../../../Main/Config/InnerMsgCode"; import { SimpleToggle } from "../components/SimpleToggle"; -import { GirlDetail } from "../../../schema/schema"; +import { GirlDetail, purchase } from "../../../schema/schema"; const { ccclass, property } = _decorator; @@ -151,31 +151,37 @@ export class GirlDetailPanel extends li_BaseView { } this.tags.string = desc; for (let i = 0; i < 5; i++) { - this.starParent.children[i].active = i < data.starCount; + this.starParent.children[i].active = i < 5; } - this.descAge.string = data.age.toString(); + this.descAge.string = + LanguageUtils.getText("girldetailpanel.age") + data.age.toString(); this.desc.string = dataDetail.detailDesc; ResManager.I.changeBundleVideo( this.avatarVideo, - dataDetail.vids[0], + dataDetail.commercialVideos[0].path, "Chat18x" ); // 也立即尝试调整(以防已经加载完成) this.adjustVideoScale(); - this.vids = dataDetail.vids.slice(0); - this.refreshImgs(dataDetail.pics, true); + this.vids = dataDetail.commercialVideos.slice(0); + const paths = dataDetail.commercialImages.map((a) => a.path); + this.refreshImgs(paths, true); } - vids: string[]; + vids: purchase.CommercialVideo[]; bindImgToggle() { const dataDetail = ConfigManager.tables.TbGirlsDetail.get(this.id); - this.refreshImgs(dataDetail.pics, true); + const paths = dataDetail.commercialImages.map((a) => a.path); + + this.refreshImgs(paths, true); } bindVideoToggle() { - this.refreshImgs(this.vids, false); + const paths = this.vids.map((a) => a.path); + + this.refreshImgs(paths, false); } refreshImgs(paths: string[], isImg: boolean) { diff --git a/assets/Scripts/schema/schema.ts b/assets/Scripts/schema/schema.ts index 9acb6e6c..79fcb39b 100644 --- a/assets/Scripts/schema/schema.ts +++ b/assets/Scripts/schema/schema.ts @@ -60,6 +60,16 @@ export enum PriceType { } + +export enum VideoEmotion { + calm_down = 0, + arousal = 1, + desire = 2, + passion = 3, + orgasm = 4, +} + + @@ -69,7 +79,8 @@ export class AiCharacter { constructor(_buf_: ByteBuf) { this.id = _buf_.readInt() - this.systemInstruction = _buf_.readString() + this.basePrompt = _buf_.readString() + this.additionPrompt = _buf_.readString() } /** @@ -77,13 +88,18 @@ export class AiCharacter { */ readonly id: number /** - * 系统指令 + * 个人信息基础prompt(聊天&评分都需要) */ - readonly systemInstruction: string + readonly basePrompt: string + /** + * 额外信息prompt(聊天&评分都需要) + */ + readonly additionPrompt: string resolve(tables:Tables) { + } } @@ -101,7 +117,6 @@ export class Girl { this.tagKey = _buf_.readString() this.priceType = _buf_.readInt() this.avatarPath = _buf_.readString() - this.starCount = _buf_.readInt() } /** @@ -132,10 +147,6 @@ export class Girl { * 头像路径 */ readonly avatarPath: string - /** - * 评价星数 - */ - readonly starCount: number resolve(tables:Tables) { @@ -145,7 +156,6 @@ export class Girl { - } } @@ -158,8 +168,8 @@ export class GirlDetail { constructor(_buf_: ByteBuf) { this.id = _buf_.readInt() this.detailDesc = _buf_.readString() - { let n = Math.min(_buf_.readSize(), _buf_.size); this.pics = []; for(let i = 0 ; i < n ; i++) { let _e0 ;_e0 = _buf_.readString(); this.pics.push(_e0);}} - { let n = Math.min(_buf_.readSize(), _buf_.size); this.vids = []; for(let i = 0 ; i < n ; i++) { let _e0 ;_e0 = _buf_.readString(); this.vids.push(_e0);}} + { let n = Math.min(_buf_.readSize(), _buf_.size); this.commercialImages = []; for(let i = 0 ; i < n ; i++) { let _e0 ;_e0 = new purchase.CommercialImage(_buf_); this.commercialImages.push(_e0);}} + { let n = Math.min(_buf_.readSize(), _buf_.size); this.commercialVideos = []; for(let i = 0 ; i < n ; i++) { let _e0 ;_e0 = new purchase.CommercialVideo(_buf_); this.commercialVideos.push(_e0);}} } /** @@ -171,19 +181,19 @@ export class GirlDetail { */ readonly detailDesc: string /** - * 图片资源列表 + * 类型 */ - readonly pics: string[] + readonly commercialImages: purchase.CommercialImage[] /** * 视频资源列表 */ - readonly vids: string[] + readonly commercialVideos: purchase.CommercialVideo[] resolve(tables:Tables) { - - + for (let _e of this.commercialImages) { _e?.resolve(tables); } + for (let _e of this.commercialVideos) { _e?.resolve(tables); } } } @@ -195,18 +205,25 @@ export class GlobalConfig { constructor(_buf_: ByteBuf) { this.ApiKey = _buf_.readString() + this.emotionApiKey = _buf_.readString() this.Model = _buf_.readString() this.Temperature = _buf_.readFloat() this.MaxTokens = _buf_.readInt() this.Timeout = _buf_.readInt() this.FreeChatTimes = _buf_.readInt() this.GameName = _buf_.readString() + this.EmotionRating = _buf_.readString() + this.girlBasePrompt = _buf_.readString() } /** * api键 */ readonly ApiKey: string + /** + * 情绪判断机器人api + */ + readonly emotionApiKey: string /** * ai模型 */ @@ -228,6 +245,14 @@ export class GlobalConfig { * 游戏名 */ readonly GameName: string + /** + * 情绪评分机器人system_prompt,需拼接角色prompt + */ + readonly EmotionRating: string + /** + * ai机器人基础规则 + */ + readonly girlBasePrompt: string resolve(tables:Tables) { @@ -237,6 +262,9 @@ export class GlobalConfig { + + + } } @@ -287,6 +315,70 @@ export class Language { +export namespace purchase { +export class CommercialImage { + + constructor(_buf_: ByteBuf) { + this.imageType = _buf_.readInt() + this.imagePrice = _buf_.readFloat() + this.path = _buf_.readString() + } + + /** + * 1=详情页展示
2=聊天触发 + */ + readonly imageType: number + /** + * 价格 + */ + readonly imagePrice: number + /** + * 资源路径 + */ + readonly path: string + + resolve(tables:Tables) { + + + + } +} + +} + + +export namespace purchase { +export class CommercialVideo { + + constructor(_buf_: ByteBuf) { + this.path = _buf_.readString() + this.emotion = _buf_.readInt() + this.videoPrice = _buf_.readFloat() + } + + /** + * 资源路径 + */ + readonly path: string + /** + * 关联情绪 + */ + readonly emotion: VideoEmotion + /** + * 价格 + */ + readonly videoPrice: number + + resolve(tables:Tables) { + + + + } +} + +} + + export class PurchaseConfig { @@ -625,6 +717,10 @@ export class TbGlobalConfig { * api键 */ get ApiKey(): string { return this._data.ApiKey; } + /** + * 情绪判断机器人api + */ + get emotionApiKey(): string { return this._data.emotionApiKey; } /** * ai模型 */ @@ -646,6 +742,14 @@ export class TbGlobalConfig { * 游戏名 */ get GameName(): string { return this._data.GameName; } + /** + * 情绪评分机器人system_prompt,需拼接角色prompt + */ + get EmotionRating(): string { return this._data.EmotionRating; } + /** + * ai机器人基础规则 + */ + get girlBasePrompt(): string { return this._data.girlBasePrompt; } resolve(tables:Tables) { this._data.resolve(tables) diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index 7a9527d9..b90a4111 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -22,29 +22,29 @@ "__id__": 2 }, { - "__id__": 105 + "__id__": 99 }, { - "__id__": 137 + "__id__": 131 }, { - "__id__": 324 + "__id__": 326 } ], "_active": true, "_components": [ - { - "__id__": 354 - }, { "__id__": 356 }, { "__id__": 358 + }, + { + "__id__": 360 } ], "_prefab": { - "__id__": 360 + "__id__": 362 }, "_lpos": { "__type__": "cc.Vec3", @@ -88,16 +88,13 @@ "__id__": 3 }, { - "__id__": 9 + "__id__": 75 }, { "__id__": 81 }, { - "__id__": 87 - }, - { - "__id__": 169 + "__id__": 163 }, { "__id__": 175 @@ -108,73 +105,23 @@ ], "_active": true, "_components": [ - { - "__id__": 317 - }, { "__id__": 319 }, { "__id__": 321 - } - ], - "_prefab": { - "__id__": 323 - }, - "_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": "deco", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 4 }, { - "__id__": 6 + "__id__": 323 } ], "_prefab": { - "__id__": 8 + "__id__": 325 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1109.011, + "y": 0, "z": 0 }, "_lrot": { @@ -200,92 +147,6 @@ }, "_id": "" }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 5 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1170, - "height": 298.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2828Qz8CBG6I1BcsGR7RhD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 7 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "0b9ea17a-dae1-42ae-b32f-1571d1658fa6@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bNWAaZptKuaKI9FIRXX+K" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "47f8uAldRGvYYei/4UkdOo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "Upper", @@ -296,43 +157,43 @@ }, "_children": [ { - "__id__": 10 + "__id__": 4 }, { - "__id__": 18 + "__id__": 12 }, { - "__id__": 29 + "__id__": 23 }, { - "__id__": 37 + "__id__": 31 }, { - "__id__": 55 + "__id__": 49 }, { - "__id__": 63 + "__id__": 57 } ], "_active": true, "_components": [ { - "__id__": 74 + "__id__": 68 }, { - "__id__": 76 + "__id__": 70 }, { - "__id__": 78 + "__id__": 72 } ], "_prefab": { - "__id__": 80 + "__id__": 74 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1110.85, + "y": 1080, "z": 0 }, "_lrot": { @@ -364,23 +225,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, "_components": [ { - "__id__": 11 + "__id__": 5 }, { - "__id__": 13 + "__id__": 7 }, { - "__id__": 15 + "__id__": 9 } ], "_prefab": { - "__id__": 17 + "__id__": 11 }, "_lpos": { "__type__": "cc.Vec3", @@ -417,16 +278,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 4 }, "_enabled": true, "__prefab": { - "__id__": 12 + "__id__": 6 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1052.7819999999997 + "height": 1114.4819999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -445,11 +306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 4 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 8 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -474,7 +335,7 @@ "y": 0 }, "_fillStart": 1, - "_fillRange": -0.12, + "_fillRange": -0.1615, "_isTrimmedMode": true, "_useGrayscale": false, "_atlas": null, @@ -490,11 +351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 4 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 10 }, "_alignFlags": 45, "_target": null, @@ -539,31 +400,31 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, "_components": [ { - "__id__": 19 + "__id__": 13 }, { - "__id__": 21 + "__id__": 15 }, { - "__id__": 23 + "__id__": 17 }, { - "__id__": 26 + "__id__": 20 } ], "_prefab": { - "__id__": 28 + "__id__": 22 }, "_lpos": { "__type__": "cc.Vec3", - "x": -520, - "y": -44.85, + "x": -488, + "y": -74.93899999999985, "z": 0 }, "_lrot": { @@ -595,16 +456,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 12 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 14 }, "_contentSize": { "__type__": "cc.Size", - "width": 36, - "height": 64 + "width": 89, + "height": 90 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -623,11 +484,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 12 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 16 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -637,7 +498,7 @@ "r": 255, "g": 255, "b": 255, - "a": 255 + "a": 142 }, "_spriteFrame": { "__uuid__": "65616b52-cb0d-4d8a-b432-e6d8e1368ccf@f9941", @@ -668,15 +529,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 12 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 18 }, "clickEvents": [ { - "__id__": 25 + "__id__": 19 } ], "_interactable": true, @@ -686,7 +547,7 @@ "r": 255, "g": 255, "b": 255, - "a": 255 + "a": 142 }, "_hoverColor": { "__type__": "cc.Color", @@ -716,7 +577,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 18 + "__id__": 12 }, "_id": "" }, @@ -740,17 +601,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 12 }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 21 }, "_alignFlags": 9, "_target": null, - "_left": 20, + "_left": 52, "_right": 0, - "_top": 40, + "_top": 74.93899999999985, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -779,8 +640,6 @@ "__id__": 0 }, "fileId": "72Zr8T/ixB7bYZRSWtwmd/", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -789,28 +648,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, "_components": [ { - "__id__": 30 + "__id__": 24 }, { - "__id__": 32 + "__id__": 26 }, { - "__id__": 34 + "__id__": 28 } ], "_prefab": { - "__id__": 36 + "__id__": 30 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -2.9539999999999935, + "y": -31.38500000000022, "z": 0 }, "_lrot": { @@ -842,11 +701,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 23 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 25 }, "_contentSize": { "__type__": "cc.Size", @@ -870,11 +729,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 23 }, "_enabled": true, "__prefab": { - "__id__": 33 + "__id__": 27 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -938,18 +797,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 23 }, "_enabled": true, "__prefab": { - "__id__": 35 + "__id__": 29 }, "_alignFlags": 20, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 0, + "_bottom": 2.4189999999997696, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -977,8 +836,6 @@ "__id__": 0 }, "fileId": "39EnTuibZGCr652I/KtAjK", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -987,35 +844,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [ { - "__id__": 38 + "__id__": 32 } ], "_active": true, "_components": [ + { + "__id__": 40 + }, + { + "__id__": 42 + }, + { + "__id__": 44 + }, { "__id__": 46 - }, - { - "__id__": 48 - }, - { - "__id__": 50 - }, - { - "__id__": 52 } ], "_prefab": { - "__id__": 54 + "__id__": 48 }, "_lpos": { "__type__": "cc.Vec3", "x": 424.971, - "y": -53.26599999999985, + "y": -84.11599999999984, "z": 0 }, "_lrot": { @@ -1047,23 +904,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 37 + "__id__": 31 }, "_children": [], "_active": true, "_components": [ { - "__id__": 39 + "__id__": 33 }, { - "__id__": 41 + "__id__": 35 }, { - "__id__": 43 + "__id__": 37 } ], "_prefab": { - "__id__": 45 + "__id__": 39 }, "_lpos": { "__type__": "cc.Vec3", @@ -1100,11 +957,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 38 + "__id__": 32 }, "_enabled": true, "__prefab": { - "__id__": 40 + "__id__": 34 }, "_contentSize": { "__type__": "cc.Size", @@ -1128,11 +985,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 38 + "__id__": 32 }, "_enabled": true, "__prefab": { - "__id__": 42 + "__id__": 36 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1173,11 +1030,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 38 + "__id__": 32 }, "_enabled": true, "__prefab": { - "__id__": 44 + "__id__": 38 }, "_alignFlags": 45, "_target": null, @@ -1222,11 +1079,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 47 + "__id__": 41 }, "_contentSize": { "__type__": "cc.Size", @@ -1250,11 +1107,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 43 }, "_type": 3, "_inverted": false, @@ -1272,11 +1129,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 51 + "__id__": 45 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1317,11 +1174,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 47 }, "_alignFlags": 36, "_target": null, @@ -1366,28 +1223,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, "_components": [ { - "__id__": 56 + "__id__": 50 }, { - "__id__": 58 + "__id__": 52 }, { - "__id__": 60 + "__id__": 54 } ], "_prefab": { - "__id__": 62 + "__id__": 56 }, "_lpos": { "__type__": "cc.Vec3", "x": 424.971, - "y": -53.26599999999985, + "y": -84.11599999999984, "z": 0 }, "_lrot": { @@ -1419,11 +1276,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 55 + "__id__": 49 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 51 }, "_contentSize": { "__type__": "cc.Size", @@ -1447,11 +1304,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 55 + "__id__": 49 }, "_enabled": true, "__prefab": { - "__id__": 59 + "__id__": 53 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1492,11 +1349,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 55 + "__id__": 49 }, "_enabled": true, "__prefab": { - "__id__": 61 + "__id__": 55 }, "_alignFlags": 36, "_target": null, @@ -1541,26 +1398,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": false, "_components": [ { - "__id__": 64 + "__id__": 58 }, { - "__id__": 66 + "__id__": 60 }, { - "__id__": 68 + "__id__": 62 }, { - "__id__": 71 + "__id__": 65 } ], "_prefab": { - "__id__": 73 + "__id__": 67 }, "_lpos": { "__type__": "cc.Vec3", @@ -1597,11 +1454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 59 }, "_contentSize": { "__type__": "cc.Size", @@ -1625,11 +1482,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 67 + "__id__": 61 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1670,15 +1527,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 63 }, "clickEvents": [ { - "__id__": 70 + "__id__": 64 } ], "_interactable": true, @@ -1718,7 +1575,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 63 + "__id__": 57 }, "_id": "" }, @@ -1742,11 +1599,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 72 + "__id__": 66 }, "_alignFlags": 9, "_target": null, @@ -1791,16 +1648,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 3 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 69 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 118.3 + "height": 180 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1819,11 +1676,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 3 }, "_enabled": false, "__prefab": { - "__id__": 77 + "__id__": 71 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1864,11 +1721,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 3 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 73 }, "_alignFlags": 41, "_target": null, @@ -1919,14 +1776,14 @@ "_active": true, "_components": [ { - "__id__": 82 + "__id__": 76 }, { - "__id__": 84 + "__id__": 78 } ], "_prefab": { - "__id__": 86 + "__id__": 80 }, "_lpos": { "__type__": "cc.Vec3", @@ -1963,11 +1820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 75 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 77 }, "_contentSize": { "__type__": "cc.Size", @@ -1991,11 +1848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 75 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 79 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2053,34 +1910,34 @@ }, "_children": [ { - "__id__": 88 + "__id__": 82 } ], "_active": true, "_components": [ + { + "__id__": 88 + }, + { + "__id__": 90 + }, + { + "__id__": 92 + }, { "__id__": 94 }, { "__id__": 96 - }, - { - "__id__": 98 - }, - { - "__id__": 100 - }, - { - "__id__": 102 } ], "_prefab": { - "__id__": 168 + "__id__": 162 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 39.30000000000001, + "y": 10, "z": 0 }, "_lrot": { @@ -2112,25 +1969,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 87 + "__id__": 81 }, "_children": [], "_active": true, "_components": [ { - "__id__": 89 + "__id__": 83 }, { - "__id__": 91 + "__id__": 85 } ], "_prefab": { - "__id__": 93 + "__id__": 87 }, "_lpos": { "__type__": "cc.Vec3", "x": 487.977, - "y": -962.393, + "y": -933.0930000000001, "z": 0 }, "_lrot": { @@ -2162,11 +2019,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 88 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 90 + "__id__": 84 }, "_contentSize": { "__type__": "cc.Size", @@ -2190,11 +2047,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 88 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 92 + "__id__": 86 }, "_alignFlags": 36, "_target": null, @@ -2239,16 +2096,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 89 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2018.6 + "height": 1960 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2267,17 +2124,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 91 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 121.4, + "_top": 180, "_bottom": 200, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2303,11 +2160,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 99 + "__id__": 93 }, "_type": 0, "_inverted": false, @@ -2325,11 +2182,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 95 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2371,20 +2228,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 97 }, "initPos": { - "__id__": 88 + "__id__": 82 }, "lBubble": { - "__id__": 104 + "__id__": 98 }, "rBubble": { - "__id__": 136 + "__id__": 130 }, "_id": "" }, @@ -2398,20 +2255,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 129 }, "bg": { - "__id__": 115 + "__id__": 109 }, "content": { - "__id__": 125 + "__id__": 119 }, "contentT": { - "__id__": 123 + "__id__": 117 }, "_id": "" }, @@ -2425,29 +2282,29 @@ }, "_children": [ { - "__id__": 106 + "__id__": 100 }, { - "__id__": 114 + "__id__": 108 }, { - "__id__": 122 + "__id__": 116 } ], "_active": true, "_components": [ { - "__id__": 130 + "__id__": 124 }, { - "__id__": 132 + "__id__": 126 }, { - "__id__": 104 + "__id__": 98 } ], "_prefab": { - "__id__": 134 + "__id__": 128 }, "_lpos": { "__type__": "cc.Vec3", @@ -2484,23 +2341,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 105 + "__id__": 99 }, "_children": [], "_active": true, "_components": [ { - "__id__": 107 + "__id__": 101 }, { - "__id__": 109 + "__id__": 103 }, { - "__id__": 111 + "__id__": 105 } ], "_prefab": { - "__id__": 113 + "__id__": 107 }, "_lpos": { "__type__": "cc.Vec3", @@ -2537,11 +2394,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 102 }, "_contentSize": { "__type__": "cc.Size", @@ -2565,11 +2422,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 104 }, "_alignFlags": 12, "_target": null, @@ -2601,11 +2458,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 106 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2659,23 +2516,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 105 + "__id__": 99 }, "_children": [], "_active": true, "_components": [ { - "__id__": 115 + "__id__": 109 }, { - "__id__": 117 + "__id__": 111 }, { - "__id__": 119 + "__id__": 113 } ], "_prefab": { - "__id__": 121 + "__id__": 115 }, "_lpos": { "__type__": "cc.Vec3", @@ -2712,11 +2569,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 110 }, "_contentSize": { "__type__": "cc.Size", @@ -2740,11 +2597,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 112 }, "_alignFlags": 12, "_target": null, @@ -2776,11 +2633,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 114 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2834,23 +2691,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 105 + "__id__": 99 }, "_children": [], "_active": true, "_components": [ { - "__id__": 123 + "__id__": 117 }, { - "__id__": 125 + "__id__": 119 }, { - "__id__": 127 + "__id__": 121 } ], "_prefab": { - "__id__": 129 + "__id__": 123 }, "_lpos": { "__type__": "cc.Vec3", @@ -2887,11 +2744,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 116 }, "_enabled": true, "__prefab": { - "__id__": 124 + "__id__": 118 }, "_contentSize": { "__type__": "cc.Size", @@ -2915,11 +2772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 116 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 120 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2983,11 +2840,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 116 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 122 }, "_alignFlags": 12, "_target": null, @@ -3032,11 +2889,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 125 }, "_contentSize": { "__type__": "cc.Size", @@ -3060,11 +2917,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 127 }, "_alignFlags": 8, "_target": null, @@ -3113,20 +2970,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 161 }, "bg": { - "__id__": 147 + "__id__": 141 }, "content": { - "__id__": 157 + "__id__": 151 }, "contentT": { - "__id__": 155 + "__id__": 149 }, "_id": "" }, @@ -3140,29 +2997,29 @@ }, "_children": [ { - "__id__": 138 + "__id__": 132 }, { - "__id__": 146 + "__id__": 140 }, { - "__id__": 154 + "__id__": 148 } ], "_active": true, "_components": [ { - "__id__": 162 + "__id__": 156 }, { - "__id__": 164 + "__id__": 158 }, { - "__id__": 136 + "__id__": 130 } ], "_prefab": { - "__id__": 166 + "__id__": 160 }, "_lpos": { "__type__": "cc.Vec3", @@ -3199,23 +3056,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 131 }, "_children": [], "_active": true, "_components": [ { - "__id__": 139 + "__id__": 133 }, { - "__id__": 141 + "__id__": 135 }, { - "__id__": 143 + "__id__": 137 } ], "_prefab": { - "__id__": 145 + "__id__": 139 }, "_lpos": { "__type__": "cc.Vec3", @@ -3252,11 +3109,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 134 }, "_contentSize": { "__type__": "cc.Size", @@ -3280,11 +3137,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 136 }, "_alignFlags": 36, "_target": null, @@ -3316,11 +3173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3374,23 +3231,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 131 }, "_children": [], "_active": true, "_components": [ { - "__id__": 147 + "__id__": 141 }, { - "__id__": 149 + "__id__": 143 }, { - "__id__": 151 + "__id__": 145 } ], "_prefab": { - "__id__": 153 + "__id__": 147 }, "_lpos": { "__type__": "cc.Vec3", @@ -3427,11 +3284,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 142 }, "_contentSize": { "__type__": "cc.Size", @@ -3455,11 +3312,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 144 }, "_alignFlags": 36, "_target": null, @@ -3491,11 +3348,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 146 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3549,23 +3406,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 131 }, "_children": [], "_active": true, "_components": [ { - "__id__": 155 + "__id__": 149 }, { - "__id__": 157 + "__id__": 151 }, { - "__id__": 159 + "__id__": 153 } ], "_prefab": { - "__id__": 161 + "__id__": 155 }, "_lpos": { "__type__": "cc.Vec3", @@ -3602,11 +3459,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 154 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 150 }, "_contentSize": { "__type__": "cc.Size", @@ -3630,11 +3487,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 154 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 158 + "__id__": 152 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3698,11 +3555,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 154 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 154 }, "_alignFlags": 36, "_target": null, @@ -3747,11 +3604,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 157 }, "_contentSize": { "__type__": "cc.Size", @@ -3775,11 +3632,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 159 }, "_alignFlags": 32, "_target": null, @@ -3843,7 +3700,11 @@ "_parent": { "__id__": 2 }, - "_children": [], + "_children": [ + { + "__id__": 164 + } + ], "_active": true, "_components": [ { @@ -3859,7 +3720,57 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 37.80000000000001, + "y": 11, + "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": "Video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 165 + }, + { + "__id__": 167 + } + ], + "_prefab": { + "__id__": 169 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, "z": 0 }, "_lrot": { @@ -3891,7 +3802,78 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 164 + }, + "_enabled": true, + "__prefab": { + "__id__": 166 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1fXSym7NxD0r9xbe8YQBXz" + }, + { + "__type__": "cc.VideoPlayer", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 164 + }, + "_enabled": true, + "__prefab": { + "__id__": 168 + }, + "_resourceType": 1, + "_remoteURL": "", + "_clip": null, + "_playOnAwake": true, + "_volume": 1, + "_mute": false, + "_playbackRate": 1, + "_loop": true, + "_fullScreenOnAwake": false, + "_stayOnBottom": true, + "_keepAspectRatio": true, + "videoPlayerEvent": [], + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "22JkMS5vZI17XLogsvDAvX" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a3MTe+sSBNEK57vJkyBDtV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 163 }, "_enabled": true, "__prefab": { @@ -3900,7 +3882,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2015.6 + "height": 1962 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3919,7 +3901,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 163 }, "_enabled": true, "__prefab": { @@ -3929,7 +3911,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 124.4, + "_top": 178, "_bottom": 200, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -3942,7 +3924,7 @@ "_originalWidth": 100, "_originalHeight": 100, "_alignMode": 2, - "_lockFlags": 0, + "_lockFlags": 45, "_id": "" }, { @@ -6054,26 +6036,26 @@ "__id__": 264 }, { - "__id__": 270 + "__id__": 272 }, { - "__id__": 295 + "__id__": 297 } ], "_active": true, "_components": [ - { - "__id__": 310 - }, { "__id__": 312 }, { "__id__": 314 + }, + { + "__id__": 316 } ], "_prefab": { - "__id__": 316 + "__id__": 318 }, "_lpos": { "__type__": "cc.Vec3", @@ -6120,14 +6102,17 @@ }, { "__id__": 267 + }, + { + "__id__": 269 } ], "_prefab": { - "__id__": 269 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, + "x": -25, "y": 44.60300000000001, "z": 0 }, @@ -6168,7 +6153,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 624.9, + "width": 930, "height": 94 }, "_anchorPoint": { @@ -6199,13 +6184,13 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, + "r": 0, + "g": 0, + "b": 0, "a": 255 }, "_spriteFrame": { - "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@f9941", + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -6227,6 +6212,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "192Hdt9qJNlrVHtEaJnP/D" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 264 + }, + "_enabled": true, + "__prefab": { + "__id__": 270 + }, + "_alignFlags": 40, + "_target": null, + "_left": 50, + "_right": 100, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 624.9, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aes9usj+hKiIs///G5CUjD" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -6250,17 +6271,14 @@ }, "_children": [ { - "__id__": 271 + "__id__": 273 }, { - "__id__": 277 + "__id__": 279 } ], "_active": true, "_components": [ - { - "__id__": 285 - }, { "__id__": 287 }, @@ -6268,15 +6286,18 @@ "__id__": 289 }, { - "__id__": 292 + "__id__": 291 + }, + { + "__id__": 294 } ], "_prefab": { - "__id__": 294 + "__id__": 296 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, + "x": -26.75, "y": 44.60300000000001, "z": 0 }, @@ -6309,24 +6330,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 270 + "__id__": 272 }, "_children": [], "_active": false, "_components": [ { - "__id__": 272 + "__id__": 274 }, { - "__id__": 274 + "__id__": 276 } ], "_prefab": { - "__id__": 276 + "__id__": 278 }, "_lpos": { "__type__": "cc.Vec3", - "x": -461.95, + "x": -426.55, "y": 47, "z": 0 }, @@ -6359,15 +6380,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 271 + "__id__": 273 }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 275 }, "_contentSize": { "__type__": "cc.Size", - "width": 925.9, + "width": 855.1, "height": 94 }, "_anchorPoint": { @@ -6387,20 +6408,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 271 + "__id__": 273 }, "_enabled": true, "__prefab": { - "__id__": 275 + "__id__": 277 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 14, - "g": 14, - "b": 14, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "", @@ -6468,27 +6489,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 270 + "__id__": 272 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 278 - }, { "__id__": 280 }, { "__id__": 282 + }, + { + "__id__": 284 } ], "_prefab": { - "__id__": 284 + "__id__": 286 }, "_lpos": { "__type__": "cc.Vec3", - "x": -461.95, + "x": -426.55, "y": 47, "z": 0 }, @@ -6521,15 +6542,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 281 }, "_contentSize": { "__type__": "cc.Size", - "width": 925.9, + "width": 855.1, "height": 94 }, "_anchorPoint": { @@ -6549,20 +6570,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 283 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 187, - "g": 187, - "b": 187, + "r": 104, + "g": 104, + "b": 104, "a": 255 }, "_string": "Message", @@ -6617,11 +6638,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 285 }, "languageKey": "chatpanel.inputplaceholder", "defaultText": "", @@ -6651,15 +6672,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 288 }, "_contentSize": { "__type__": "cc.Size", - "width": 927.9, + "width": 857.1, "height": 94 }, "_anchorPoint": { @@ -6679,11 +6700,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 272 }, "_enabled": false, "__prefab": { - "__id__": 288 + "__id__": 290 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6724,25 +6745,25 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 290 + "__id__": 292 }, "editingDidBegan": [], "textChanged": [], "editingDidEnded": [], "editingReturn": [ { - "__id__": 291 + "__id__": 293 } ], "_textLabel": { - "__id__": 274 + "__id__": 276 }, "_placeholderLabel": { - "__id__": 280 + "__id__": 282 }, "_returnType": 0, "_string": "", @@ -6776,16 +6797,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 295 }, "_alignFlags": 44, "_target": null, - "_left": 76.05000000000001, - "_right": 76.05000000000001, + "_left": 84.7, + "_right": 138.2, "_top": 0, "_bottom": 97.60300000000001, "_horizontalCenter": 0, @@ -6829,27 +6850,27 @@ }, "_children": [ { - "__id__": 296 + "__id__": 298 } ], "_active": true, "_components": [ - { - "__id__": 302 - }, { "__id__": 304 }, { "__id__": 306 + }, + { + "__id__": 308 } ], "_prefab": { - "__id__": 309 + "__id__": 311 }, "_lpos": { "__type__": "cc.Vec3", - "x": 321.18600000000004, + "x": 490.548, "y": 45.411, "z": 0 }, @@ -6882,20 +6903,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 295 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ { - "__id__": 297 + "__id__": 299 }, { - "__id__": 299 + "__id__": 301 } ], "_prefab": { - "__id__": 301 + "__id__": 303 }, "_lpos": { "__type__": "cc.Vec3", @@ -6932,11 +6953,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 296 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 298 + "__id__": 300 }, "_contentSize": { "__type__": "cc.Size", @@ -6960,11 +6981,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 296 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 302 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7041,11 +7062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 303 + "__id__": 305 }, "_contentSize": { "__type__": "cc.Size", @@ -7069,11 +7090,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 307 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7114,15 +7135,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 307 + "__id__": 309 }, "clickEvents": [ { - "__id__": 308 + "__id__": 310 } ], "_interactable": true, @@ -7174,7 +7195,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 295 + "__id__": 297 }, "_id": "" }, @@ -7215,7 +7236,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 313 }, "_contentSize": { "__type__": "cc.Size", @@ -7243,16 +7264,16 @@ }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 315 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 236, - "b": 236, + "r": 52, + "g": 14, + "b": 92, "a": 255 }, "_spriteFrame": { @@ -7288,7 +7309,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 315 + "__id__": 317 }, "_alignFlags": 44, "_target": null, @@ -7337,7 +7358,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 320 }, "_contentSize": { "__type__": "cc.Size", @@ -7365,7 +7386,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 320 + "__id__": 322 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7410,7 +7431,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 322 + "__id__": 324 }, "_alignFlags": 45, "_target": null, @@ -7459,20 +7480,20 @@ }, "_children": [ { - "__id__": 325 + "__id__": 327 } ], "_active": true, "_components": [ { - "__id__": 349 + "__id__": 351 }, { - "__id__": 351 + "__id__": 353 } ], "_prefab": { - "__id__": 353 + "__id__": 355 }, "_lpos": { "__type__": "cc.Vec3", @@ -7509,24 +7530,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 324 + "__id__": 326 }, "_children": [ { - "__id__": 326 + "__id__": 328 } ], "_active": true, "_components": [ { - "__id__": 344 + "__id__": 346 }, { - "__id__": 346 + "__id__": 348 } ], "_prefab": { - "__id__": 348 + "__id__": 350 }, "_lpos": { "__type__": "cc.Vec3", @@ -7563,27 +7584,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 325 + "__id__": 327 }, "_children": [ { - "__id__": 327 + "__id__": 329 } ], "_active": true, "_components": [ - { - "__id__": 337 - }, { "__id__": 339 }, { "__id__": 341 + }, + { + "__id__": 343 } ], "_prefab": { - "__id__": 343 + "__id__": 345 }, "_lpos": { "__type__": "cc.Vec3", @@ -7620,14 +7641,11 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 326 + "__id__": 328 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 328 - }, { "__id__": 330 }, @@ -7636,10 +7654,13 @@ }, { "__id__": 334 + }, + { + "__id__": 336 } ], "_prefab": { - "__id__": 336 + "__id__": 338 }, "_lpos": { "__type__": "cc.Vec3", @@ -7676,11 +7697,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 329 + "__id__": 331 }, "_contentSize": { "__type__": "cc.Size", @@ -7704,11 +7725,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 333 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7746,11 +7767,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 335 }, "_alignFlags": 12, "_target": null, @@ -7782,11 +7803,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 337 }, "clickEvents": [], "_interactable": true, @@ -7851,11 +7872,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 340 }, "_contentSize": { "__type__": "cc.Size", @@ -7879,11 +7900,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 342 }, "_type": 3, "_inverted": false, @@ -7901,11 +7922,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 344 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7959,11 +7980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 347 }, "_contentSize": { "__type__": "cc.Size", @@ -7987,11 +8008,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8045,11 +8066,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 350 + "__id__": 352 }, "_contentSize": { "__type__": "cc.Size", @@ -8073,14 +8094,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 354 }, "image": { - "__id__": 330 + "__id__": 332 }, "_id": "" }, @@ -8111,7 +8132,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 355 + "__id__": 357 }, "_contentSize": { "__type__": "cc.Size", @@ -8139,7 +8160,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 357 + "__id__": 359 }, "_alignFlags": 45, "_target": null, @@ -8175,23 +8196,26 @@ }, "_enabled": true, "__prefab": { - "__id__": 359 + "__id__": 361 }, "m_rootNode": null, "editBox": { - "__id__": 289 + "__id__": 291 }, "girlName": { - "__id__": 32 + "__id__": 26 }, "girlImg": { - "__id__": 41 + "__id__": 35 + }, + "girlVideo": { + "__id__": 167 }, "layout": { - "__id__": 102 + "__id__": 96 }, "popUpImage": { - "__id__": 351 + "__id__": 353 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index 7cee0caf..c56ca6b7 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -25,20 +25,20 @@ "_active": true, "_components": [ { - "__id__": 587 + "__id__": 351 }, { - "__id__": 589 + "__id__": 353 }, { - "__id__": 591 + "__id__": 355 }, { - "__id__": 593 + "__id__": 357 } ], "_prefab": { - "__id__": 595 + "__id__": 359 }, "_lpos": { "__type__": "cc.Vec3", @@ -88,17 +88,17 @@ "_active": true, "_components": [ { - "__id__": 580 + "__id__": 344 }, { - "__id__": 582 + "__id__": 346 }, { - "__id__": 584 + "__id__": 348 } ], "_prefab": { - "__id__": 586 + "__id__": 350 }, "_lpos": { "__type__": "cc.Vec3", @@ -163,7 +163,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1115, + "y": 1087.5, "z": 0 }, "_lrot": { @@ -218,8 +218,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -520, - "y": -49, + "x": -488, + "y": -82.66699999999992, "z": 0 }, "_lrot": { @@ -259,8 +259,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 36, - "height": 64 + "width": 89, + "height": 90 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -404,9 +404,9 @@ }, "_alignFlags": 9, "_target": null, - "_left": 20, + "_left": 52, "_right": 0, - "_top": 40, + "_top": 75.16699999999992, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -419,7 +419,7 @@ "_originalWidth": 0, "_originalHeight": 64, "_alignMode": 2, - "_lockFlags": 12, + "_lockFlags": 4, "_id": "" }, { @@ -466,7 +466,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -8.684999999999725, + "y": -41.73100000000022, "z": 0 }, "_lrot": { @@ -604,7 +604,7 @@ "_target": null, "_left": 515.3716278076172, "_right": 25.346145629882812, - "_top": 7.48899999999972, + "_top": 68.03500000000022, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -652,7 +652,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 110 + "height": 165 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -778,22 +778,22 @@ "_active": true, "_components": [ { - "__id__": 573 + "__id__": 337 }, { - "__id__": 575 + "__id__": 339 }, { - "__id__": 577 + "__id__": 341 } ], "_prefab": { - "__id__": 579 + "__id__": 343 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -65, + "y": -82.5, "z": 0 }, "_lrot": { @@ -1692,20 +1692,20 @@ "_active": true, "_components": [ { - "__id__": 564 + "__id__": 328 }, { - "__id__": 566 + "__id__": 330 }, { - "__id__": 568 + "__id__": 332 }, { - "__id__": 570 + "__id__": 334 } ], "_prefab": { - "__id__": 572 + "__id__": 336 }, "_lpos": { "__type__": "cc.Vec3", @@ -1752,20 +1752,20 @@ "_active": true, "_components": [ { - "__id__": 555 + "__id__": 319 }, { - "__id__": 557 + "__id__": 321 }, { - "__id__": 559 + "__id__": 323 }, { - "__id__": 561 + "__id__": 325 } ], "_prefab": { - "__id__": 563 + "__id__": 327 }, "_lpos": { "__type__": "cc.Vec3", @@ -1809,37 +1809,34 @@ "__id__": 70 }, { - "__id__": 144 + "__id__": 142 }, { - "__id__": 238 + "__id__": 246 }, { - "__id__": 482 - }, - { - "__id__": 540 + "__id__": 304 } ], "_active": true, "_components": [ { - "__id__": 548 + "__id__": 312 }, { - "__id__": 550 + "__id__": 314 }, { - "__id__": 552 + "__id__": 316 } ], "_prefab": { - "__id__": 554 + "__id__": 318 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1105, + "y": 1087.5, "z": 0 }, "_lrot": { @@ -1878,23 +1875,23 @@ "__id__": 71 }, { - "__id__": 111 + "__id__": 109 } ], "_active": true, "_components": [ + { + "__id__": 135 + }, { "__id__": 137 }, { "__id__": 139 - }, - { - "__id__": 141 } ], "_prefab": { - "__id__": 143 + "__id__": 141 }, "_lpos": { "__type__": "cc.Vec3", @@ -1960,18 +1957,15 @@ }, { "__id__": 106 - }, - { - "__id__": 108 } ], "_prefab": { - "__id__": 110 + "__id__": 108 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 558.45, + "y": 551.1500000000001, "z": 0 }, "_lrot": { @@ -2721,7 +2715,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 7.3, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2779,42 +2773,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "60CiXfblBBO45c17oeZQLh" }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 71 - }, - "_enabled": true, - "__prefab": { - "__id__": 109 - }, - "_alignFlags": 1, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 108.79700000000025, - "_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": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bbFMixSrFHGruWm28DOVmb" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -2824,8 +2782,6 @@ "__id__": 0 }, "fileId": "4bIjG6OVhOephwylq+9Wxq", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -2838,14 +2794,17 @@ }, "_children": [ { - "__id__": 112 + "__id__": 110 }, { - "__id__": 120 + "__id__": 118 } ], "_active": true, "_components": [ + { + "__id__": 126 + }, { "__id__": 128 }, @@ -2854,13 +2813,10 @@ }, { "__id__": 132 - }, - { - "__id__": 134 } ], "_prefab": { - "__id__": 136 + "__id__": 134 }, "_lpos": { "__type__": "cc.Vec3", @@ -2897,23 +2853,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 111 + "__id__": 109 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 111 + }, { "__id__": 113 }, { "__id__": 115 - }, - { - "__id__": 117 } ], "_prefab": { - "__id__": 119 + "__id__": 117 }, "_lpos": { "__type__": "cc.Vec3", @@ -2950,16 +2906,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 110 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 112 }, "_contentSize": { "__type__": "cc.Size", "width": 850, - "height": 1080 + "height": 1051.914 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2978,18 +2934,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 110 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 114 }, - "_alignFlags": 18, + "_alignFlags": 45, "_target": null, "_left": 0, - "_right": 20, + "_right": 0, "_top": 0, - "_bottom": 20, + "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -2998,8 +2954,8 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, + "_originalWidth": 850, + "_originalHeight": 1080, "_alignMode": 2, "_lockFlags": 36, "_id": "" @@ -3014,11 +2970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 110 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 116 }, "_resourceType": 1, "_remoteURL": "", @@ -3057,23 +3013,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 111 + "__id__": 109 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 119 + }, { "__id__": 121 }, { "__id__": 123 - }, - { - "__id__": 125 } ], "_prefab": { - "__id__": 127 + "__id__": 125 }, "_lpos": { "__type__": "cc.Vec3", @@ -3110,11 +3066,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 120 }, "_contentSize": { "__type__": "cc.Size", @@ -3138,11 +3094,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 124 + "__id__": 122 }, "_alignFlags": 18, "_target": null, @@ -3174,11 +3130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 124 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3229,11 +3185,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 111 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 127 }, "_contentSize": { "__type__": "cc.Size", @@ -3257,11 +3213,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 111 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 129 }, "_type": 3, "_inverted": false, @@ -3279,11 +3235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 111 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 131 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3324,11 +3280,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 111 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 133 }, "_alignFlags": 21, "_target": null, @@ -3377,7 +3333,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 138 + "__id__": 136 }, "_contentSize": { "__type__": "cc.Size", @@ -3405,7 +3361,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 140 + "__id__": 138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3450,7 +3406,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 140 }, "_alignFlags": 1, "_target": null, @@ -3499,43 +3455,52 @@ }, "_children": [ { - "__id__": 145 + "__id__": 143 }, { - "__id__": 153 + "__id__": 151 }, { - "__id__": 182 + "__id__": 170 }, { - "__id__": 190 + "__id__": 178 }, { - "__id__": 198 + "__id__": 186 }, { - "__id__": 206 + "__id__": 194 + }, + { + "__id__": 202 + }, + { + "__id__": 227 + }, + { + "__id__": 233 } ], "_active": true, "_components": [ { - "__id__": 231 + "__id__": 239 }, { - "__id__": 233 + "__id__": 241 }, { - "__id__": 235 + "__id__": 243 } ], "_prefab": { - "__id__": 237 + "__id__": 245 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -1263.6000000000001, + "y": -1297.7, "z": 0 }, "_lrot": { @@ -3567,23 +3532,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 142 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 144 + }, { "__id__": 146 }, { "__id__": 148 - }, - { - "__id__": 150 } ], "_prefab": { - "__id__": 152 + "__id__": 150 }, "_lpos": { "__type__": "cc.Vec3", @@ -3620,16 +3585,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 145 }, "_contentSize": { "__type__": "cc.Size", "width": 1070, - "height": 289.4 + "height": 357.6 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3648,11 +3613,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 147 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3693,11 +3658,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 149 }, "_alignFlags": 45, "_target": null, @@ -3742,93 +3707,34 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 142 }, "_children": [ { - "__id__": 154 + "__id__": 152 + } + ], + "_active": true, + "_components": [ + { + "__id__": 160 + }, + { + "__id__": 162 }, { "__id__": 164 - } - ], - "_active": true, - "_components": [ - { - "__id__": 172 }, { - "__id__": 174 - }, - { - "__id__": 176 - }, - { - "__id__": 179 + "__id__": 167 } ], "_prefab": { - "__id__": 181 + "__id__": 169 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": -36.8659999999997, - "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": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 153 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 155 - }, - { - "__id__": 157 - }, - { - "__id__": 159 - }, - { - "__id__": 161 - } - ], - "_prefab": { - "__id__": 163 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 428.94399999999996, + "x": 345.768, "y": 0, "z": 0 }, @@ -3855,199 +3761,33 @@ }, "_id": "" }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 154 - }, - "_enabled": true, - "__prefab": { - "__id__": 156 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 277.5634765625, - "height": 104.45400000000001 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 1, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f8P6gBmB9BOaLJ/6Edor6+" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 154 - }, - "_enabled": true, - "__prefab": { - "__id__": 158 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "Send Msgs!", - "_horizontalAlign": 2, - "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "NotoSans-Regular", - "_lineHeight": 82.9, - "_overflow": 0, - "_enableWrapText": false, - "_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": "545u29/NhLC4K974kd3yL1" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 154 - }, - "_enabled": true, - "__prefab": { - "__id__": 160 - }, - "languageKey": "girldetailpanel.chatbtn", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "43z/1+Eh5B6qwco6wNwrcl" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 154 - }, - "_enabled": true, - "__prefab": { - "__id__": 162 - }, - "_alignFlags": 32, - "_target": null, - "_left": 0, - "_right": 26.05600000000004, - "_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": 32, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c82SCSxblGEJWQ/wTO1Ztr" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "9dvyEa1zhPfZMD29ttTE/w", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "Sprite", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 153 + "__id__": 151 }, "_children": [], "_active": true, "_components": [ { - "__id__": 165 + "__id__": 153 }, { - "__id__": 167 + "__id__": 155 }, { - "__id__": 169 + "__id__": 157 } ], "_prefab": { - "__id__": 171 + "__id__": 159 }, "_lpos": { "__type__": "cc.Vec3", - "x": -385.277, + "x": 0, "y": 0, "z": 0 }, @@ -4080,16 +3820,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 164 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 154 }, "_contentSize": { "__type__": "cc.Size", - "width": 90, - "height": 90 + "width": 120, + "height": 120 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4108,11 +3848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 164 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 168 + "__id__": 156 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4122,7 +3862,7 @@ "r": 255, "g": 255, "b": 255, - "a": 255 + "a": 142 }, "_spriteFrame": { "__uuid__": "0da16aeb-f5bf-4214-8d27-65bfcda7f165@f9941", @@ -4153,15 +3893,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 164 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 170 + "__id__": 158 }, "_alignFlags": 8, "_target": null, - "_left": 24.723, + "_left": 65, "_right": 0, "_top": 0, "_bottom": 0, @@ -4202,16 +3942,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 161 }, "_contentSize": { "__type__": "cc.Size", - "width": 910, - "height": 105.4 + "width": 249.9999999999999, + "height": 250 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4230,11 +3970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 163 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4247,7 +3987,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@f9941", + "__uuid__": "4cef8664-eeed-4be5-b33b-1bb74a6019cb@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -4275,15 +4015,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 165 }, "clickEvents": [ { - "__id__": 178 + "__id__": 166 } ], "_interactable": true, @@ -4323,7 +4063,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 153 + "__id__": 151 }, "_id": "" }, @@ -4347,16 +4087,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 180 + "__id__": 168 }, - "_alignFlags": 40, + "_alignFlags": 42, "_target": null, - "_left": 80, - "_right": 80, + "_left": 755.768, + "_right": 64.23200000000008, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -4396,28 +4136,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 142 }, "_children": [], "_active": true, "_components": [ { - "__id__": 183 + "__id__": 171 }, { - "__id__": 185 + "__id__": 173 }, { - "__id__": 187 + "__id__": 175 } ], "_prefab": { - "__id__": 189 + "__id__": 177 }, "_lpos": { "__type__": "cc.Vec3", - "x": -514.3140000000001, - "y": 98.45100000000025, + "x": -473.399, + "y": 130.10300000000018, "z": 0 }, "_lrot": { @@ -4449,16 +4189,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 172 }, "_contentSize": { "__type__": "cc.Size", - "width": 490.620313, - "height": 65.5 + "width": 593.220313, + "height": 75.6 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4477,11 +4217,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 186 + "__id__": 174 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4496,10 +4236,10 @@ "_string": "Tag:18 years old|young", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 36, - "_fontSize": 35, + "_actualFontSize": 41, + "_fontSize": 40, "_fontFamily": "NotoSans-Regular", - "_lineHeight": 34.7, + "_lineHeight": 47.4, "_overflow": 2, "_enableWrapText": true, "_font": null, @@ -4545,17 +4285,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 176 }, "_alignFlags": 9, "_target": null, - "_left": 20.68599999999998, + "_left": 61.601, "_right": 84.8, - "_top": 13.49899999999974, + "_top": 10.896999999999835, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -4594,28 +4334,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 142 }, "_children": [], "_active": true, "_components": [ { - "__id__": 191 + "__id__": 179 }, { - "__id__": 193 + "__id__": 181 }, { - "__id__": 195 + "__id__": 183 } ], "_prefab": { - "__id__": 197 + "__id__": 185 }, "_lpos": { "__type__": "cc.Vec3", - "x": 510, - "y": 98.28900000000029, + "x": -473.24199999999996, + "y": 66.4430000000002, "z": 0 }, "_lrot": { @@ -4647,20 +4387,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 178 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 180 }, "_contentSize": { "__type__": "cc.Size", - "width": 110.93017578125, + "width": 126.77734375, "height": 70.686 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 1, + "x": 0, "y": 0.5 }, "_id": "" @@ -4675,11 +4415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 178 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 182 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4692,10 +4432,10 @@ "a": 255 }, "_string": "Age:28", - "_horizontalAlign": 2, + "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 35, - "_fontSize": 35, + "_actualFontSize": 40, + "_fontSize": 40, "_fontFamily": "Arial", "_lineHeight": 56.1, "_overflow": 0, @@ -4743,17 +4483,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 178 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 184 }, "_alignFlags": 33, "_target": null, "_left": 556.5283203125, - "_right": 25, - "_top": 11.067999999999714, + "_right": 881.46465625, + "_top": 77.01399999999981, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -4766,7 +4506,7 @@ "_originalWidth": 158.4716796875, "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 32, + "_lockFlags": 0, "_id": "" }, { @@ -4792,23 +4532,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 142 }, "_children": [], "_active": true, "_components": [ { - "__id__": 199 + "__id__": 187 }, { - "__id__": 201 + "__id__": 189 }, { - "__id__": 203 + "__id__": 191 } ], "_prefab": { - "__id__": 205 + "__id__": 193 }, "_lpos": { "__type__": "cc.Vec3", @@ -4845,16 +4585,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 188 }, "_contentSize": { "__type__": "cc.Size", "width": 1070, - "height": 289.4 + "height": 357.6 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4873,11 +4613,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 190 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4918,11 +4658,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 192 }, "_alignFlags": 45, "_target": null, @@ -4961,39 +4701,237 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "DescContent", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 195 + }, + { + "__id__": 197 + }, + { + "__id__": 199 + } + ], + "_prefab": { + "__id__": 201 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -130.51499984375005, + "y": -68.1006726889555, + "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__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 196 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 686.77168, + "height": 189.19865462208904 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "baVy9TbddC+pbN52Gjz9Te" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 198 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "AAAAA\nAAAAA\nAAAAA", + "_horizontalAlign": 0, + "_verticalAlign": 0, + "_actualFontSize": 41, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 46.8, + "_overflow": 2, + "_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": "2d/7kXorlFW6fGn74Z627W" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 200 + }, + "_alignFlags": 13, + "_target": null, + "_left": 61.09916015625, + "_right": 487.22916015625, + "_top": 152.301345377911, + "_bottom": 16.1, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 158.4716796875, + "_originalHeight": 334.286, + "_alignMode": 2, + "_lockFlags": 8, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eazdWIsVJLQbGFrRuOEm4o" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3mwWYJ3hGkJyOoSg4cbWr", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", "_name": "Purchase", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 142 }, "_children": [ { - "__id__": 207 + "__id__": 203 }, { - "__id__": 215 + "__id__": 211 } ], "_active": false, "_components": [ + { + "__id__": 217 + }, + { + "__id__": 219 + }, { "__id__": 221 }, { - "__id__": 223 - }, - { - "__id__": 225 - }, - { - "__id__": 228 + "__id__": 224 } ], "_prefab": { - "__id__": 230 + "__id__": 226 }, "_lpos": { "__type__": "cc.Vec3", @@ -5030,23 +4968,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 202 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 204 + }, + { + "__id__": 206 + }, { "__id__": 208 - }, - { - "__id__": 210 - }, - { - "__id__": 212 } ], "_prefab": { - "__id__": 214 + "__id__": 210 }, "_lpos": { "__type__": "cc.Vec3", @@ -5083,11 +5021,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 205 }, "_contentSize": { "__type__": "cc.Size", @@ -5111,11 +5049,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 207 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5179,11 +5117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 209 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -5213,20 +5151,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 202 }, "_children": [], "_active": true, "_components": [ { - "__id__": 216 + "__id__": 212 }, { - "__id__": 218 + "__id__": 214 } ], "_prefab": { - "__id__": 220 + "__id__": 216 }, "_lpos": { "__type__": "cc.Vec3", @@ -5263,11 +5201,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 213 }, "_contentSize": { "__type__": "cc.Size", @@ -5291,11 +5229,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 215 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5349,11 +5287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 218 }, "_contentSize": { "__type__": "cc.Size", @@ -5377,11 +5315,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 220 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5422,15 +5360,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 222 }, "clickEvents": [ { - "__id__": 227 + "__id__": 223 } ], "_interactable": true, @@ -5482,7 +5420,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 206 + "__id__": 202 }, "_id": "" }, @@ -5504,11 +5442,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 225 }, "_alignFlags": 16, "_target": null, @@ -5547,22 +5485,294 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "SelectingSlider", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 228 + }, + { + "__id__": 230 + } + ], + "_prefab": { + "__id__": 232 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -472.48, + "y": 94.04500000000007, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.1, + "y": 0.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__": 144 + "__id__": 227 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 229 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 4000, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9cZRFnbS5KYozYCw8SetHz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 227 + }, + "_enabled": true, + "__prefab": { + "__id__": 231 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 51 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aepWZCkQhJLKdEXHuGkrul" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "52mMyQUW5MV4tEa+Of/PuA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SelectingSlider-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 234 + }, + { + "__id__": 236 + } + ], + "_prefab": { + "__id__": 238 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -472.48, + "y": 33.49800000000005, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.1, + "y": 0.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__": 233 + }, + "_enabled": true, + "__prefab": { + "__id__": 235 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1500, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9aJBP0O5dBEYULEo76rAGV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 233 + }, + "_enabled": true, + "__prefab": { + "__id__": 237 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 51 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aaSxBAMPtLy5r3uxdF/uLV" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8b7D1eSItJk6xyDscTCQF2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 142 + }, + "_enabled": true, + "__prefab": { + "__id__": 240 }, "_contentSize": { "__type__": "cc.Size", "width": 1070, - "height": 289.4 + "height": 357.6 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5581,11 +5791,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 142 }, "_enabled": false, "__prefab": { - "__id__": 234 + "__id__": 242 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5626,17 +5836,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 142 }, "_enabled": true, "__prefab": { - "__id__": 236 + "__id__": 244 }, - "_alignFlags": 40, + "_alignFlags": 41, "_target": null, "_left": 5, "_right": 5, - "_top": 0, + "_top": 1118.9, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -5671,1568 +5881,28 @@ }, { "__type__": "cc.Node", - "_name": "DetailPanel", + "_name": "ImgVidSelect", "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 69 }, "_children": [ - { - "__id__": 239 - }, { "__id__": 247 }, { - "__id__": 255 - }, - { - "__id__": 467 - } - ], - "_active": true, - "_components": [ - { - "__id__": 475 - }, - { - "__id__": 477 - }, - { - "__id__": 479 - } - ], - "_prefab": { - "__id__": 481 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -1601.8000000000002, - "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": "bg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 238 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 240 - }, - { - "__id__": 242 - }, - { - "__id__": 244 - } - ], - "_prefab": { - "__id__": 246 - }, - "_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__": 239 - }, - "_enabled": true, - "__prefab": { - "__id__": 241 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1070, - "height": 383 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a0GYDnJN9FSpeUcLzA3941" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 239 - }, - "_enabled": true, - "__prefab": { - "__id__": 243 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 18, - "g": 0, - "b": 22, - "a": 89 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "18GxTTGNhLzJ7VOSesp3lx" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 239 - }, - "_enabled": true, - "__prefab": { - "__id__": 245 - }, - "_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": 40, - "_originalHeight": 36, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c7oMc2ST9LbYA6NlLZggDg" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "25pKa3b9dHo4w5m9BVYz8M", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "DescContent", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 238 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 248 - }, - { - "__id__": 250 - }, - { - "__id__": 252 - } - ], - "_prefab": { - "__id__": 254 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -1.2149999999998329, - "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__": 247 - }, - "_enabled": true, - "__prefab": { - "__id__": 249 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1020, - "height": 334.286 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "baVy9TbddC+pbN52Gjz9Te" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 247 - }, - "_enabled": true, - "__prefab": { - "__id__": 251 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "AAAAA\nAAAAA\nAAAAA", - "_horizontalAlign": 0, - "_verticalAlign": 0, - "_actualFontSize": 53, - "_fontSize": 52.1, - "_fontFamily": "Arial", - "_lineHeight": 46.8, - "_overflow": 2, - "_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": "2d/7kXorlFW6fGn74Z627W" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 247 - }, - "_enabled": true, - "__prefab": { - "__id__": 253 - }, - "_alignFlags": 41, - "_target": null, - "_left": 25, - "_right": 25, - "_top": 25.571999999999832, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 158.4716796875, - "_originalHeight": 70.686, - "_alignMode": 2, - "_lockFlags": 45, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "eazdWIsVJLQbGFrRuOEm4o" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e3mwWYJ3hGkJyOoSg4cbWr", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImageLayout", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 238 - }, - "_children": [ - { - "__id__": 256 - }, - { - "__id__": 296 - }, - { - "__id__": 336 - }, - { - "__id__": 376 - }, - { - "__id__": 416 - } - ], - "_active": false, - "_components": [ - { - "__id__": 456 - }, - { - "__id__": 458 - }, - { - "__id__": 460 - }, - { - "__id__": 462 - }, - { - "__id__": 464 - } - ], - "_prefab": { - "__id__": 466 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -243.5, - "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": "ImageItem-001", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 257 - } - ], - "_active": true, - "_components": [ - { - "__id__": 289 + "__id__": 269 }, { "__id__": 291 - }, - { - "__id__": 293 - } - ], - "_prefab": { - "__id__": 295 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -405.70000000000005, - "y": -5, - "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": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 256 - }, - "_children": [ - { - "__id__": 258 - }, - { - "__id__": 264 - }, - { - "__id__": 270 - }, - { - "__id__": 274 } ], "_active": true, "_components": [ - { - "__id__": 280 - }, - { - "__id__": 282 - }, - { - "__id__": 284 - }, - { - "__id__": 286 - } - ], - "_prefab": { - "__id__": 288 - }, - "_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": "Img", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 259 - }, - { - "__id__": 261 - } - ], - "_prefab": { - "__id__": 263 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 258 - }, - "_enabled": true, - "__prefab": { - "__id__": 260 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c7mIE/f6hIR5qBZCjj+3eh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 258 - }, - "_enabled": true, - "__prefab": { - "__id__": 262 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "11pI4g/+VOPpe4GoxDjMJI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "30xwx9ymJGTIr9vGFAUh0X", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lock", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 265 - }, - { - "__id__": 267 - } - ], - "_prefab": { - "__id__": 269 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 264 - }, - "_enabled": true, - "__prefab": { - "__id__": 266 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 384, - "height": 448 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "63zoKDIlJCQLAftVki9N5T" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 264 - }, - "_enabled": true, - "__prefab": { - "__id__": 268 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_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": "c9KsFvJkBCXpdvV7lkHrih" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ca36L9UVZN6oo3fc1JlLBe", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "video", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 271 - } - ], - "_prefab": { - "__id__": 273 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 270 - }, - "_enabled": true, - "__prefab": { - "__id__": 272 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "89qMsL/QlHZ5JKNRGQxdAE" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1duD+d6KNJRabhswckgsdR", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "question", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 275 - }, - { - "__id__": 277 - } - ], - "_prefab": { - "__id__": 279 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 274 - }, - "_enabled": true, - "__prefab": { - "__id__": 276 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 305.419921875, - "height": 630 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6aKLKGtkZA3bHt88BPeDzO" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 274 - }, - "_enabled": true, - "__prefab": { - "__id__": 278 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "?", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 500, - "_fontSize": 500, - "_fontFamily": "Arial", - "_lineHeight": 500, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_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": "adgbZU+xZHe4psObRt0bIc" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a2cBsPiJ1GLqnglOgUd5ya", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 257 - }, - "_enabled": true, - "__prefab": { - "__id__": 281 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "51aRsvKY9GEq1didqew2zd" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 257 - }, - "_enabled": true, - "__prefab": { - "__id__": 283 - }, - "_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": "a82fRpQE5BD5RuIDh1laFg" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 257 - }, - "_enabled": true, - "__prefab": { - "__id__": 285 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ebLjBTHHBN15mCOGQpo7rd" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 257 - }, - "_enabled": true, - "__prefab": { - "__id__": 287 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d6JN5qU2NDMYpu2NiWYG2O" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f431Ye47lLFKgw5sId2ExE", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 256 - }, - "_enabled": true, - "__prefab": { - "__id__": 290 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "78cf81y6lMOqDtDndFSz5U" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 256 - }, - "_enabled": true, - "__prefab": { - "__id__": 292 - }, - "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": "26aFY389xH945bgFUn7U+T" - }, - { - "__type__": "4ce70ScWKpFGalZ/RcxTbmk", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 256 - }, - "_enabled": true, - "__prefab": { - "__id__": 294 - }, - "img": { - "__id__": 261 - }, - "lock": { - "__id__": 264 - }, - "question": { - "__id__": 274 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "adLGtHyohDmKX/Jqr1sTpb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a0DfcGQTRDI67/dWqUY7Nl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImageItem-002", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ { "__id__": 297 - } - ], - "_active": true, - "_components": [ - { - "__id__": 329 }, - { - "__id__": 331 - }, - { - "__id__": 333 - } - ], - "_prefab": { - "__id__": 335 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -94.80000000000004, - "y": -5, - "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": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 296 - }, - "_children": [ - { - "__id__": 298 - }, - { - "__id__": 304 - }, - { - "__id__": 310 - }, - { - "__id__": 314 - } - ], - "_active": true, - "_components": [ - { - "__id__": 320 - }, - { - "__id__": 322 - }, - { - "__id__": 324 - }, - { - "__id__": 326 - } - ], - "_prefab": { - "__id__": 328 - }, - "_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": "Img", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 297 - }, - "_children": [], - "_active": true, - "_components": [ { "__id__": 299 }, @@ -7245,4027 +5915,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 298 - }, - "_enabled": true, - "__prefab": { - "__id__": 300 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "966uBqohND860HL8z62QGV" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 298 - }, - "_enabled": true, - "__prefab": { - "__id__": 302 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "81VYNXjaBDtadiz63NfXzr" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1fuGnuCnxLNqToaRZu5h+v", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lock", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 297 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 305 - }, - { - "__id__": 307 - } - ], - "_prefab": { - "__id__": 309 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 304 - }, - "_enabled": true, - "__prefab": { - "__id__": 306 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 384, - "height": 448 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "96tEiUPVlH26aMqjJKccJY" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 304 - }, - "_enabled": true, - "__prefab": { - "__id__": 308 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_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": "80nvcf5ThKN5M+JQhr9Gxe" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "900uTdf8BN8Jor6Ng+1lOJ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "video", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 297 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 311 - } - ], - "_prefab": { - "__id__": 313 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 310 - }, - "_enabled": true, - "__prefab": { - "__id__": 312 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "81y67OMD9OYrz3J/bc7dfC" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b107zxTYRIpJVtYiwGpSvi", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "question", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 297 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 315 - }, - { - "__id__": 317 - } - ], - "_prefab": { - "__id__": 319 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 314 - }, - "_enabled": true, - "__prefab": { - "__id__": 316 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 305.419921875, - "height": 630 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "75bmPp2gxK35LHe18qcLpv" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 314 - }, - "_enabled": true, - "__prefab": { - "__id__": 318 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "?", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 500, - "_fontSize": 500, - "_fontFamily": "Arial", - "_lineHeight": 500, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_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": "88W+1jeqFGu44C8+yatMqq" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c9x7iZvAhLV6VmRfQmRHPr", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 297 - }, - "_enabled": true, - "__prefab": { - "__id__": 321 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c8btEoq2RGqZw9n7LcU0hJ" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 297 - }, - "_enabled": true, - "__prefab": { - "__id__": 323 - }, - "_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": "383uAOW7ZKyrQGvG7acSfj" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 297 - }, - "_enabled": true, - "__prefab": { - "__id__": 325 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "43Tq4qs21J0IJ38H8WOz89" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 297 - }, - "_enabled": true, - "__prefab": { - "__id__": 327 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6cGljL7ABMr5LM2/MzluvR" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ccvk7KHnFMo4FNDTk5BQyL", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 296 - }, - "_enabled": true, - "__prefab": { - "__id__": 330 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9bdhjovw5P268TJA0cX1gQ" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 296 - }, - "_enabled": true, - "__prefab": { - "__id__": 332 - }, - "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": "53eq5B8xxFuayZielPBKB7" - }, - { - "__type__": "4ce70ScWKpFGalZ/RcxTbmk", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 296 - }, - "_enabled": true, - "__prefab": { - "__id__": 334 - }, - "img": { - "__id__": 301 - }, - "lock": { - "__id__": 304 - }, - "question": { - "__id__": 314 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "78BxRx9alPfIR9s0nnzpJO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "56LaHZQ9hJCbzssYg3gh51", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImageItem-003", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 337 - } - ], - "_active": true, - "_components": [ - { - "__id__": 369 - }, - { - "__id__": 371 - }, - { - "__id__": 373 - } - ], - "_prefab": { - "__id__": 375 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 216.09999999999997, - "y": -5, - "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": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 336 - }, - "_children": [ - { - "__id__": 338 - }, - { - "__id__": 344 - }, - { - "__id__": 350 - }, - { - "__id__": 354 - } - ], - "_active": true, - "_components": [ - { - "__id__": 360 - }, - { - "__id__": 362 - }, - { - "__id__": 364 - }, - { - "__id__": 366 - } - ], - "_prefab": { - "__id__": 368 - }, - "_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": "Img", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 337 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 339 - }, - { - "__id__": 341 - } - ], - "_prefab": { - "__id__": 343 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 338 - }, - "_enabled": true, - "__prefab": { - "__id__": 340 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f3z3z1LUJIHJEai1FwEpeM" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 338 - }, - "_enabled": true, - "__prefab": { - "__id__": 342 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8a26KqGlFMRb9L9DWbbdJt" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ffzd7DjbRJNa7Oi7DWSPHz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lock", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 337 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 345 - }, - { - "__id__": 347 - } - ], - "_prefab": { - "__id__": 349 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 344 - }, - "_enabled": true, - "__prefab": { - "__id__": 346 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 384, - "height": 448 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "786eajoLdM8ZGu7LaIrWe+" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 344 - }, - "_enabled": true, - "__prefab": { - "__id__": 348 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_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": "4dpkHvoddBDb0AXXW5KPSR" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "cdTDhL4lNL8rukye1j/fCA", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "video", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 337 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 351 - } - ], - "_prefab": { - "__id__": 353 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 350 - }, - "_enabled": true, - "__prefab": { - "__id__": 352 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8dsOBnFglHxZmy8xfvErAk" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6fuJ8ANiRMJ63QRa4cGuSe", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "question", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 337 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 355 - }, - { - "__id__": 357 - } - ], - "_prefab": { - "__id__": 359 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 354 - }, - "_enabled": true, - "__prefab": { - "__id__": 356 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 305.419921875, - "height": 630 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ddNIk48MVBcrt9FnvsKT81" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 354 - }, - "_enabled": true, - "__prefab": { - "__id__": 358 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "?", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 500, - "_fontSize": 500, - "_fontFamily": "Arial", - "_lineHeight": 500, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_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": "2aAPb2WXRFXIyzKFlWrv1V" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42h91wRRZOXryMUhpbZtx1", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 337 - }, - "_enabled": true, - "__prefab": { - "__id__": 361 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cb7Rs5SD9F4K1QYjzhx+2C" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 337 - }, - "_enabled": true, - "__prefab": { - "__id__": 363 - }, - "_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": "30OlC68g9AeKQtIE8lrTqa" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 337 - }, - "_enabled": true, - "__prefab": { - "__id__": 365 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f5772ud5FBubBCxydqLO7B" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 337 - }, - "_enabled": true, - "__prefab": { - "__id__": 367 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "66Y0IoyEhGhYfXMRjelbOq" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fcxGWAVNNLq5t/LCqTcz0y", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 336 - }, - "_enabled": true, - "__prefab": { - "__id__": 370 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bz6wbm0xEnZBO0ZyU1sNl" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 336 - }, - "_enabled": true, - "__prefab": { - "__id__": 372 - }, - "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": "61t01QwsNLx53p9kE63hCV" - }, - { - "__type__": "4ce70ScWKpFGalZ/RcxTbmk", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 336 - }, - "_enabled": true, - "__prefab": { - "__id__": 374 - }, - "img": { - "__id__": 341 - }, - "lock": { - "__id__": 344 - }, - "question": { - "__id__": 354 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c2rMOLj5VBy4QF8BiELIx3" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "19r1Ffj8hDs4PsNRaFTU4J", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImageItem-004", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 377 - } - ], - "_active": true, - "_components": [ - { - "__id__": 409 - }, - { - "__id__": 411 - }, - { - "__id__": 413 - } - ], - "_prefab": { - "__id__": 415 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 527, - "y": -5, - "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": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [ - { - "__id__": 378 - }, - { - "__id__": 384 - }, - { - "__id__": 390 - }, - { - "__id__": 394 - } - ], - "_active": true, - "_components": [ - { - "__id__": 400 - }, - { - "__id__": 402 - }, - { - "__id__": 404 - }, - { - "__id__": 406 - } - ], - "_prefab": { - "__id__": 408 - }, - "_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": "Img", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 377 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 379 - }, - { - "__id__": 381 - } - ], - "_prefab": { - "__id__": 383 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 378 - }, - "_enabled": true, - "__prefab": { - "__id__": 380 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49ST5DHelHw7JBTFVBWP1F" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 378 - }, - "_enabled": true, - "__prefab": { - "__id__": 382 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfGN8sD/dB67ZtD1B8o8gC" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6aTFz/lghNWLhMlXXna4sC", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lock", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 377 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 385 - }, - { - "__id__": 387 - } - ], - "_prefab": { - "__id__": 389 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 384 - }, - "_enabled": true, - "__prefab": { - "__id__": 386 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 384, - "height": 448 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3cJSQ76q5Baq6ICVYHbNp4" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 384 - }, - "_enabled": true, - "__prefab": { - "__id__": 388 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_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": "4b54bKJExALYs9R6yfm9AB" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "72Oj7WNMJOhb93vja3YoJ4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "video", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 377 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 391 - } - ], - "_prefab": { - "__id__": 393 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 390 - }, - "_enabled": true, - "__prefab": { - "__id__": 392 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "84U7UUx9dAXI0QbFfk0r8o" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "de0rJD3cRDNahQtDvfE8Fm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "question", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 377 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 395 - }, - { - "__id__": 397 - } - ], - "_prefab": { - "__id__": 399 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 394 - }, - "_enabled": true, - "__prefab": { - "__id__": 396 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 305.419921875, - "height": 630 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "80A9ASpZFLBaU4e+fNhafo" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 394 - }, - "_enabled": true, - "__prefab": { - "__id__": 398 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "?", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 500, - "_fontSize": 500, - "_fontFamily": "Arial", - "_lineHeight": 500, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_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": "95h6lEtZtJ6YjAru8KMb8+" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c7wdX+40REZIMb20uLxuKj", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 377 - }, - "_enabled": true, - "__prefab": { - "__id__": 401 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0dlICSPSVJLaL9rz5pXjpW" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 377 - }, - "_enabled": true, - "__prefab": { - "__id__": 403 - }, - "_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": "e3nDjuozFLE7/IDxHBAI9r" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 377 - }, - "_enabled": true, - "__prefab": { - "__id__": 405 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "00iB3O1wFF1Yjq+5D0Orrs" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 377 - }, - "_enabled": true, - "__prefab": { - "__id__": 407 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "161b7QWoNN4Za3KTKookFc" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aYucVMhxJEJ+PnWquWar7", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 376 - }, - "_enabled": true, - "__prefab": { - "__id__": 410 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0ep8Juq+FChIWkvSYHKK/s" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 376 - }, - "_enabled": true, - "__prefab": { - "__id__": 412 - }, - "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": "9elcKzUlJMX4QHiZPqCmmk" - }, - { - "__type__": "4ce70ScWKpFGalZ/RcxTbmk", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 376 - }, - "_enabled": true, - "__prefab": { - "__id__": 414 - }, - "img": { - "__id__": 381 - }, - "lock": { - "__id__": 384 - }, - "question": { - "__id__": 394 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "60sdso5nFN7p7R4pbSp9db" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "da0K38uJtEmqbZ8WFVN8QH", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImageItem-005", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 417 - } - ], - "_active": true, - "_components": [ - { - "__id__": 449 - }, - { - "__id__": 451 - }, - { - "__id__": 453 - } - ], - "_prefab": { - "__id__": 455 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 837.9, - "y": -5, - "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": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 416 - }, - "_children": [ - { - "__id__": 418 - }, - { - "__id__": 424 - }, - { - "__id__": 430 - }, - { - "__id__": 434 - } - ], - "_active": true, - "_components": [ - { - "__id__": 440 - }, - { - "__id__": 442 - }, - { - "__id__": 444 - }, - { - "__id__": 446 - } - ], - "_prefab": { - "__id__": 448 - }, - "_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": "Img", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 417 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 419 - }, - { - "__id__": 421 - } - ], - "_prefab": { - "__id__": 423 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 418 - }, - "_enabled": true, - "__prefab": { - "__id__": 420 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "25OsUncdNMfbXCl/Tq9pdx" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 418 - }, - "_enabled": true, - "__prefab": { - "__id__": 422 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4dccv41QBD0qSAcCNBB2PY" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8cCwrOlPxPNKqlcXUvZ13w", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lock", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 417 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 425 - }, - { - "__id__": 427 - } - ], - "_prefab": { - "__id__": 429 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 424 - }, - "_enabled": true, - "__prefab": { - "__id__": 426 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 384, - "height": 448 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aedS+b8ehGEYg6YU29n9xg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 424 - }, - "_enabled": true, - "__prefab": { - "__id__": 428 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_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": "6drafj0KlAt6x2+djxwJ4D" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5efjftaPhLaJDbREMs3lV4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "video", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 417 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 431 - } - ], - "_prefab": { - "__id__": 433 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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__": 430 - }, - "_enabled": true, - "__prefab": { - "__id__": 432 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9fz1a4++1Nd4ndyhzxl+rQ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c8vOHWEOhCHaCmcEnBDQ9C", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "question", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 417 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 435 - }, - { - "__id__": 437 - } - ], - "_prefab": { - "__id__": 439 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 434 - }, - "_enabled": true, - "__prefab": { - "__id__": 436 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 305.419921875, - "height": 630 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2b7I0KPLZMM73IFRsU0uqj" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 434 - }, - "_enabled": true, - "__prefab": { - "__id__": 438 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "?", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 500, - "_fontSize": 500, - "_fontFamily": "Arial", - "_lineHeight": 500, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_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": "238anUlqdLqoM6rG147vT1" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "36j7sz5IxPeLmmO/s7z5xm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 417 - }, - "_enabled": true, - "__prefab": { - "__id__": 441 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2bi409XPJGCox1koTqDFyr" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 417 - }, - "_enabled": true, - "__prefab": { - "__id__": 443 - }, - "_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": "98y4OXBdtIoJ/yMZN4zZ7b" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 417 - }, - "_enabled": true, - "__prefab": { - "__id__": 445 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8e57zFsodPe6lJzzHIWa24" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 417 - }, - "_enabled": true, - "__prefab": { - "__id__": 447 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "79I0eMP85Gw4KSJL2MR+uG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "60gkiknOtMzIKLIfyTUvRV", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 416 - }, - "_enabled": true, - "__prefab": { - "__id__": 450 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cdNQJGiyZAd6mOkf+puWKN" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 416 - }, - "_enabled": true, - "__prefab": { - "__id__": 452 - }, - "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": "f5V8PSEG1LdYPrR74YmBIC" - }, - { - "__type__": "4ce70ScWKpFGalZ/RcxTbmk", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 416 - }, - "_enabled": true, - "__prefab": { - "__id__": 454 - }, - "img": { - "__id__": 421 - }, - "lock": { - "__id__": 424 - }, - "question": { - "__id__": 434 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c30bhzT69Pi4/ThqgCINkk" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "803lSqEsVO6J+pglEoCaY/", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 457 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1167, - "height": 493 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3cuCjYuv5LOLAQ9dEgyYe5" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 459 - }, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 487, - "_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": 45, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6b1ZNf7lpPLrxsUj1i7Pxj" - }, - { - "__type__": "cc.Layout", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 461 - }, - "_resizeMode": 0, - "_layoutType": 1, - "_cellSize": { - "__type__": "cc.Size", - "width": 40, - "height": 40 - }, - "_startAxis": 0, - "_paddingLeft": 27.8, - "_paddingRight": 0, - "_paddingTop": 0, - "_paddingBottom": 0, - "_spacingX": 10.9, - "_spacingY": 0, - "_verticalDirection": 1, - "_horizontalDirection": 0, - "_constraint": 0, - "_constraintNum": 2, - "_affectedByScale": false, - "_isAlign": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "27rUXgNVZDgqhnQfCr/tla" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 463 - }, - "_type": 0, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "95wcJ8VrNKuppCKao4hfZT" - }, - { - "__type__": "cc.Graphics", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 465 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_lineWidth": 1, - "_strokeColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_lineJoin": 2, - "_lineCap": 0, - "_fillColor": { - "__type__": "cc.Color", - "r": 100, - "g": 37, - "b": 37, - "a": 0 - }, - "_miterLimit": 10, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "332m7exLNBIaE/ymFvf4DO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "0d3VtnfT9MDr3U9UVqehoK", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "bg-001", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 238 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 468 - }, - { - "__id__": 470 - }, - { - "__id__": 472 - } - ], - "_prefab": { - "__id__": 474 - }, - "_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__": 467 - }, - "_enabled": true, - "__prefab": { - "__id__": 469 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1070, - "height": 383 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "50GxdNXpBA2JHX6LpCWwZh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 467 - }, - "_enabled": true, - "__prefab": { - "__id__": 471 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 104 - }, - "_spriteFrame": { - "__uuid__": "8e27fcb5-755f-42a3-8804-deac5f7982c5@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "eaIUfrj2pEsrmQgEwoVxc2" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 467 - }, - "_enabled": true, - "__prefab": { - "__id__": 473 - }, - "_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": 40, - "_originalHeight": 36, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6cxmueXL9DEbCmA/010FWD" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c02RcIZbBFUJbj3hydlTUz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 238 - }, - "_enabled": true, - "__prefab": { - "__id__": 476 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1070, - "height": 383 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f2bhMqDDFJA4+FDtly2u+L" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 238 - }, - "_enabled": false, - "__prefab": { - "__id__": 478 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5fDqVeLH5Ei4utF/nJOnit" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 238 - }, - "_enabled": true, - "__prefab": { - "__id__": 480 - }, - "_alignFlags": 40, - "_target": null, - "_left": 5, - "_right": 5, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 1080, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f6GkfDCxZEdqv54NsfwpRs" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "435aOUdZhJFrd2X4YG9N3c", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImgVidSelect", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 69 - }, - "_children": [ - { - "__id__": 483 - }, - { - "__id__": 505 - }, - { - "__id__": 527 - } - ], - "_active": true, - "_components": [ - { - "__id__": 533 - }, - { - "__id__": 535 - }, - { - "__id__": 537 - } - ], - "_prefab": { - "__id__": 539 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -1857.9500000000003, + "y": -1541.15, "z": 0 }, "_lrot": { @@ -11297,33 +5948,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 482 + "__id__": 246 }, "_children": [ { - "__id__": 484 + "__id__": 248 }, { - "__id__": 490 + "__id__": 254 } ], "_active": true, "_components": [ { - "__id__": 496 + "__id__": 260 }, { - "__id__": 498 + "__id__": 262 }, { - "__id__": 500 + "__id__": 264 }, { - "__id__": 502 + "__id__": 266 } ], "_prefab": { - "__id__": 504 + "__id__": 268 }, "_lpos": { "__type__": "cc.Vec3", @@ -11360,20 +6011,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 483 + "__id__": 247 }, "_children": [], "_active": true, "_components": [ { - "__id__": 485 + "__id__": 249 }, { - "__id__": 487 + "__id__": 251 } ], "_prefab": { - "__id__": 489 + "__id__": 253 }, "_lpos": { "__type__": "cc.Vec3", @@ -11410,11 +6061,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 484 + "__id__": 248 }, "_enabled": true, "__prefab": { - "__id__": 486 + "__id__": 250 }, "_contentSize": { "__type__": "cc.Size", @@ -11438,11 +6089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 484 + "__id__": 248 }, "_enabled": false, "__prefab": { - "__id__": 488 + "__id__": 252 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11496,20 +6147,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 483 + "__id__": 247 }, "_children": [], "_active": true, "_components": [ { - "__id__": 491 + "__id__": 255 }, { - "__id__": 493 + "__id__": 257 } ], "_prefab": { - "__id__": 495 + "__id__": 259 }, "_lpos": { "__type__": "cc.Vec3", @@ -11546,11 +6197,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 254 }, "_enabled": true, "__prefab": { - "__id__": 492 + "__id__": 256 }, "_contentSize": { "__type__": "cc.Size", @@ -11574,11 +6225,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 254 }, "_enabled": true, "__prefab": { - "__id__": 494 + "__id__": 258 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11632,11 +6283,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 483 + "__id__": 247 }, "_enabled": true, "__prefab": { - "__id__": 497 + "__id__": 261 }, "_contentSize": { "__type__": "cc.Size", @@ -11660,11 +6311,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 483 + "__id__": 247 }, "_enabled": true, "__prefab": { - "__id__": 499 + "__id__": 263 }, "_alignFlags": 5, "_target": null, @@ -11696,17 +6347,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 483 + "__id__": 247 }, "_enabled": true, "__prefab": { - "__id__": 501 + "__id__": 265 }, "selectedSprite": { - "__id__": 493 + "__id__": 257 }, "unSelectedSprite": { - "__id__": 487 + "__id__": 251 }, "_id": "" }, @@ -11720,11 +6371,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 483 + "__id__": 247 }, "_enabled": true, "__prefab": { - "__id__": 503 + "__id__": 267 }, "clickEvents": [], "_interactable": true, @@ -11789,33 +6440,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 482 + "__id__": 246 }, "_children": [ { - "__id__": 506 + "__id__": 270 }, { - "__id__": 512 + "__id__": 276 } ], "_active": true, "_components": [ { - "__id__": 518 + "__id__": 282 }, { - "__id__": 520 + "__id__": 284 }, { - "__id__": 522 + "__id__": 286 }, { - "__id__": 524 + "__id__": 288 } ], "_prefab": { - "__id__": 526 + "__id__": 290 }, "_lpos": { "__type__": "cc.Vec3", @@ -11852,20 +6503,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 505 + "__id__": 269 }, "_children": [], "_active": true, "_components": [ { - "__id__": 507 + "__id__": 271 }, { - "__id__": 509 + "__id__": 273 } ], "_prefab": { - "__id__": 511 + "__id__": 275 }, "_lpos": { "__type__": "cc.Vec3", @@ -11902,11 +6553,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 506 + "__id__": 270 }, "_enabled": true, "__prefab": { - "__id__": 508 + "__id__": 272 }, "_contentSize": { "__type__": "cc.Size", @@ -11930,11 +6581,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 506 + "__id__": 270 }, "_enabled": true, "__prefab": { - "__id__": 510 + "__id__": 274 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11988,20 +6639,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 505 + "__id__": 269 }, "_children": [], "_active": true, "_components": [ { - "__id__": 513 + "__id__": 277 }, { - "__id__": 515 + "__id__": 279 } ], "_prefab": { - "__id__": 517 + "__id__": 281 }, "_lpos": { "__type__": "cc.Vec3", @@ -12038,11 +6689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 512 + "__id__": 276 }, "_enabled": true, "__prefab": { - "__id__": 514 + "__id__": 278 }, "_contentSize": { "__type__": "cc.Size", @@ -12066,11 +6717,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 512 + "__id__": 276 }, "_enabled": false, "__prefab": { - "__id__": 516 + "__id__": 280 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12124,11 +6775,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 519 + "__id__": 283 }, "_contentSize": { "__type__": "cc.Size", @@ -12152,11 +6803,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 521 + "__id__": 285 }, "_alignFlags": 5, "_target": null, @@ -12188,17 +6839,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 523 + "__id__": 287 }, "selectedSprite": { - "__id__": 515 + "__id__": 279 }, "unSelectedSprite": { - "__id__": 509 + "__id__": 273 }, "_id": "" }, @@ -12212,11 +6863,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 525 + "__id__": 289 }, "clickEvents": [], "_interactable": true, @@ -12281,20 +6932,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 482 + "__id__": 246 }, "_children": [], "_active": true, "_components": [ { - "__id__": 528 + "__id__": 292 }, { - "__id__": 530 + "__id__": 294 } ], "_prefab": { - "__id__": 532 + "__id__": 296 }, "_lpos": { "__type__": "cc.Vec3", @@ -12331,11 +6982,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 527 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 529 + "__id__": 293 }, "_contentSize": { "__type__": "cc.Size", @@ -12359,11 +7010,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 527 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 531 + "__id__": 295 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12417,11 +7068,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 482 + "__id__": 246 }, "_enabled": true, "__prefab": { - "__id__": 534 + "__id__": 298 }, "_contentSize": { "__type__": "cc.Size", @@ -12445,11 +7096,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 482 + "__id__": 246 }, "_enabled": true, "__prefab": { - "__id__": 536 + "__id__": 300 }, "_alignFlags": 40, "_target": null, @@ -12481,14 +7132,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 482 + "__id__": 246 }, "_enabled": true, "__prefab": { - "__id__": 538 + "__id__": 302 }, "slider": { - "__id__": 527 + "__id__": 291 }, "_id": "" }, @@ -12521,22 +7172,22 @@ "_active": true, "_components": [ { - "__id__": 541 + "__id__": 305 }, { - "__id__": 543 + "__id__": 307 }, { - "__id__": 545 + "__id__": 309 } ], "_prefab": { - "__id__": 547 + "__id__": 311 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -1922.6000000000004, + "y": -1605.8000000000002, "z": 0 }, "_lrot": { @@ -12568,11 +7219,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 542 + "__id__": 306 }, "_contentSize": { "__type__": "cc.Size", @@ -12596,11 +7247,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 544 + "__id__": 308 }, "_resizeMode": 1, "_layoutType": 3, @@ -12634,11 +7285,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 546 + "__id__": 310 }, "_alignFlags": 40, "_target": null, @@ -12687,12 +7338,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 549 + "__id__": 313 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1922.6000000000001 + "height": 1605.8 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12715,7 +7366,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 551 + "__id__": 315 }, "_alignFlags": 41, "_target": null, @@ -12751,7 +7402,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 553 + "__id__": 317 }, "_resizeMode": 1, "_layoutType": 2, @@ -12802,12 +7453,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 556 + "__id__": 320 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2210 + "height": 2175 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12830,7 +7481,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 558 + "__id__": 322 }, "_type": 0, "_inverted": false, @@ -12852,7 +7503,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 560 + "__id__": 324 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12898,7 +7549,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 562 + "__id__": 326 }, "_alignFlags": 45, "_target": null, @@ -12947,12 +7598,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 565 + "__id__": 329 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2210 + "height": 2175 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12975,7 +7626,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 567 + "__id__": 331 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13020,7 +7671,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 569 + "__id__": 333 }, "bounceDuration": 0.23, "brake": 0.75, @@ -13051,7 +7702,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 571 + "__id__": 335 }, "_alignFlags": 45, "_target": null, @@ -13100,12 +7751,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 574 + "__id__": 338 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2210 + "height": 2175 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -13128,7 +7779,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 576 + "__id__": 340 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13173,13 +7824,13 @@ }, "_enabled": true, "__prefab": { - "__id__": 578 + "__id__": 342 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 130, + "_top": 165, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -13222,7 +7873,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 581 + "__id__": 345 }, "_contentSize": { "__type__": "cc.Size", @@ -13250,7 +7901,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 583 + "__id__": 347 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13295,7 +7946,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 585 + "__id__": 349 }, "_alignFlags": 45, "_target": null, @@ -13344,7 +7995,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 588 + "__id__": 352 }, "_contentSize": { "__type__": "cc.Size", @@ -13372,7 +8023,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 590 + "__id__": 354 }, "_alignFlags": 45, "_target": null, @@ -13408,7 +8059,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 592 + "__id__": 356 }, "_id": "" }, @@ -13426,44 +8077,44 @@ }, "_enabled": true, "__prefab": { - "__id__": 594 + "__id__": 358 }, "m_rootNode": null, "avatar": { - "__id__": 125 + "__id__": 123 }, "avatarVideo": { - "__id__": 117 + "__id__": 115 }, "girlName": { "__id__": 18 }, "imgToggle": { - "__id__": 500 + "__id__": 264 }, "videoToggle": { - "__id__": 522 + "__id__": 286 }, "starParent": { "__id__": 71 }, "tags": { - "__id__": 185 + "__id__": 173 }, "descAge": { - "__id__": 193 + "__id__": 181 }, "desc": { - "__id__": 250 + "__id__": 197 }, "chatBtn": { - "__id__": 153 + "__id__": 151 }, "imgItemInst": { "__id__": 60 }, "imgsLayout": { - "__id__": 540 + "__id__": 304 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlListPanel.prefab b/assets/bundles/Chat18x/GirlListPanel.prefab index f6d595c9..58fad3b5 100644 --- a/assets/bundles/Chat18x/GirlListPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPanel.prefab @@ -163,7 +163,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1094.75, + "y": 1087.5, "z": 0 }, "_lrot": { @@ -218,8 +218,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -520, - "y": -28.75, + "x": -510, + "y": -83.42099999999982, "z": 0 }, "_lrot": { @@ -259,8 +259,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 36, - "height": 64 + "width": 89, + "height": 90 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -404,9 +404,9 @@ }, "_alignFlags": 9, "_target": null, - "_left": 20, + "_left": 30, "_right": 0, - "_top": 40, + "_top": 75.92099999999982, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -419,7 +419,7 @@ "_originalWidth": 0, "_originalHeight": 64, "_alignMode": 2, - "_lockFlags": 12, + "_lockFlags": 4, "_id": "" }, { @@ -469,7 +469,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -0.9460000000000051, + "y": -56.11999999999989, "z": 0 }, "_lrot": { @@ -607,7 +607,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 20, + "_top": 82.4239999999999, "_bottom": 17.180999999999948, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -676,7 +676,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 150.5 + "height": 165 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -817,7 +817,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -69.10000000000002, + "y": -87.5, "z": 0 }, "_lrot": { @@ -4942,7 +4942,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2201.8 + "height": 2165 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5087,7 +5087,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2201.8 + "height": 2165 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5240,7 +5240,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2201.8 + "height": 2165 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5269,7 +5269,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 138.2, + "_top": 175, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, diff --git a/assets/bundles/Chat18x/ThemePanel.prefab b/assets/bundles/Chat18x/ThemePanel.prefab index 05bc0177..727f4009 100644 --- a/assets/bundles/Chat18x/ThemePanel.prefab +++ b/assets/bundles/Chat18x/ThemePanel.prefab @@ -175,7 +175,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1059, + "y": 1060, "z": 0 }, "_lrot": { @@ -231,7 +231,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": -501.7, - "y": -52.75199999999995, + "y": -53.75199999999995, "z": 0 }, "_lrot": { @@ -467,7 +467,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 54.803999999999995, + "y": -22.478999999999814, "z": 0 }, "_lrot": { @@ -508,7 +508,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 410.224609375, - "height": 112.39200000000001 + "height": 93.87 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -549,7 +549,7 @@ "_actualFontSize": 70, "_fontSize": 70, "_fontFamily": "NotoSans-Regular", - "_lineHeight": 89.2, + "_lineHeight": 74.5, "_overflow": 0, "_enableWrapText": true, "_font": null, @@ -605,7 +605,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 85.54399999999981, "_bottom": 108.25899999999993, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -926,7 +926,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 207.47199999999998, - "y": -57.613000000000056, + "y": -105.53999999999996, "z": 0 }, "_lrot": { @@ -1240,7 +1240,7 @@ "_left": 194.1, "_right": 282.528, "_top": 0, - "_bottom": 53.386999999999944, + "_bottom": 4.460000000000036, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1306,7 +1306,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 365.847, - "y": -58.52800000000002, + "y": -106.45499999999993, "z": 0 }, "_lrot": { @@ -1818,7 +1818,7 @@ "_left": 194.1, "_right": 124.15300000000002, "_top": 0, - "_bottom": 52.47199999999998, + "_bottom": 3.5450000000000728, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1871,7 +1871,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 29.928999999999974, - "y": -54.12300000000005, + "y": -103.05000000000018, "z": 0 }, "_lrot": { @@ -1968,8 +1968,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -195.44499999999994, - "y": -57.613000000000056, + "x": -400.672, + "y": -105.53999999999996, "z": 0 }, "_lrot": { @@ -2281,9 +2281,9 @@ "_alignFlags": 36, "_target": null, "_left": 194.1, - "_right": 685.4449999999999, + "_right": 890.672, "_top": 0, - "_bottom": 53.386999999999944, + "_bottom": 4.460000000000036, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -2330,7 +2330,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 222 + "height": 220 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2433,8 +2433,6 @@ "__id__": 0 }, "fileId": "43dBOZjJBF/btIjHVb4m2d", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -2474,7 +2472,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -86.60000000000002, + "y": -110, "z": 0 }, "_lrot": { @@ -2534,7 +2532,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 902.3710000000001, + "y": 878.971, "z": 0 }, "_lrot": { @@ -3811,6 +3809,8 @@ "__id__": 0 }, "fileId": "40sHQFKzNMq51+Dtkb1mcc", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -5590,7 +5590,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1060, - "height": 1750.8195000000003 + "height": 1704.0195 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5735,7 +5735,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1060, - "height": 1750.8195000000003 + "height": 1704.0195 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5888,7 +5888,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 2166.8 + "height": 2120 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5962,7 +5962,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 173.2, + "_top": 220, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, diff --git a/assets/bundles/DataTable/tbaicharacters.bin b/assets/bundles/DataTable/tbaicharacters.bin index b72a8d9d..a7736756 100644 Binary files a/assets/bundles/DataTable/tbaicharacters.bin and b/assets/bundles/DataTable/tbaicharacters.bin differ diff --git a/assets/bundles/DataTable/tbgirls.bin b/assets/bundles/DataTable/tbgirls.bin index 9d982bb6..9bf2e799 100644 Binary files a/assets/bundles/DataTable/tbgirls.bin and b/assets/bundles/DataTable/tbgirls.bin differ diff --git a/assets/bundles/DataTable/tbgirlsdetail.bin b/assets/bundles/DataTable/tbgirlsdetail.bin index 4636db41..59e52466 100644 Binary files a/assets/bundles/DataTable/tbgirlsdetail.bin and b/assets/bundles/DataTable/tbgirlsdetail.bin differ diff --git a/assets/bundles/DataTable/tbglobalconfig.bin b/assets/bundles/DataTable/tbglobalconfig.bin index 74a319e7..a875f479 100644 Binary files a/assets/bundles/DataTable/tbglobalconfig.bin and b/assets/bundles/DataTable/tbglobalconfig.bin differ diff --git a/assets/bundles/DataTable/tblanguage.bin b/assets/bundles/DataTable/tblanguage.bin index bdfc8219..d2ab318d 100644 --- a/assets/bundles/DataTable/tblanguage.bin +++ b/assets/bundles/DataTable/tblanguage.bin @@ -6,4 +6,4 @@ Maman sexy Heiße Mama category_1004Binding捆绑 बंधनBondageFesseln Sana Reddy萨娜साना रेड्डी Sana Reddy Sana Reddygirl_10004_nameScarlettScarlettस्कारलेटScarlettScarlettgirl_10001_tag Hot|Horny 火辣|饥渴"सेक्सी|कामुकChaude|Excitée -Heiß|Geilgirl_10002_tag%Earth-tone linens,handcrafted jewelry土色亚麻制品|手工珠宝Yभूरे रंग के लिनन|हस्तनिर्मित गहनेLinge terreux,Bijoux artisanaux'Erdfarbene Leinen,Handgemachter Schmuckgirl_10003_tagSinger-Songwriter,Dancer 舞者|歌手2गायक-गीतकार|नर्तकीChanteuse-compositrice,Danseuse Sängerin-Songwriterin,Tänzeringirl_10004_tag!RadiantOldSoul,BlueprintsAndBeats!RadiantOldSoul,BlueprintsAndBeats!RadiantOldSoul,BlueprintsAndBeats!RadiantOldSoul,BlueprintsAndBeats!RadiantOldSoul,BlueprintsAndBeats \ No newline at end of file +Heiß|Geilgirl_10002_tag%Earth-tone linens,handcrafted jewelry土色亚麻制品|手工珠宝Yभूरे रंग के लिनन|हस्तनिर्मित गहनेLinge terreux,Bijoux artisanaux'Erdfarbene Leinen,Handgemachter Schmuckgirl_10003_tagSinger-Songwriter,Dancer 舞者|歌手2गायक-गीतकार|नर्तकीChanteuse-compositrice,Danseuse Sängerin-Songwriterin,Tänzeringirl_10004_tagGoldenDreamer,BlueEyesAndPearlsGoldenDreamer,BlueEyesAndPearlsGoldenDreamer,BlueEyesAndPearlsGoldenDreamer,BlueEyesAndPearlsGoldenDreamer,BlueEyesAndPearls \ No newline at end of file diff --git a/assets/resources/chat_ui/return_btn.png b/assets/resources/chat_ui/return_btn.png index b19fafec..1bc5d349 100644 Binary files a/assets/resources/chat_ui/return_btn.png and b/assets/resources/chat_ui/return_btn.png differ diff --git a/assets/resources/chat_ui/return_btn.png.meta b/assets/resources/chat_ui/return_btn.png.meta index 5dc2c99a..567676a5 100644 --- a/assets/resources/chat_ui/return_btn.png.meta +++ b/assets/resources/chat_ui/return_btn.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 36, - "height": 64, - "rawWidth": 36, - "rawHeight": 64, + "width": 89, + "height": 90, + "rawWidth": 89, + "rawHeight": 90, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -18, - -32, + -44.5, + -45, 0, - 18, - -32, + 44.5, + -45, 0, - -18, - 32, + -44.5, + 45, 0, - 18, - 32, + 44.5, + 45, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 64, - 36, - 64, + 90, + 89, + 90, 0, 0, - 36, + 89, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -18, - -32, + -44.5, + -45, 0 ], "maxPos": [ - 18, - 32, + 44.5, + 45, 0 ] }, diff --git a/xchat_cfg b/xchat_cfg index c9f321db..d4dd6a5b 160000 --- a/xchat_cfg +++ b/xchat_cfg @@ -1 +1 @@ -Subproject commit c9f321db064d689ba84d1d3df1735c5fc7eb53f8 +Subproject commit d4dd6a5bdfb39fa635704edeb5d4039975a8dbc4